diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2018-07-07 22:09:23 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-07-07 22:09:23 +0200 |
commit | f420f9b85b5f5612f58a45ab49e8aba54f6f5527 (patch) | |
tree | 46d06c53297e78e587c6d88a75448beee3b989ab /testing/flow | |
parent | 2d8f2fb5851480bbc19afc3f0e9758171115208b (diff) | |
download | aports-f420f9b85b5f5612f58a45ab49e8aba54f6f5527.tar.bz2 aports-f420f9b85b5f5612f58a45ab49e8aba54f6f5527.tar.xz |
testing/flow: disable on ppc64le due to build failure
/usr/lib/ocaml/dtoa/libdtoa_stubs.a(bignum.o): In function `bignum_align':
/home/buildozer/aports/testing/ocaml-dtoa/src/ocaml-dtoa-0.3.1/_build/default/src/bignum.c:108:(.text+0x4b0): call to `bignum_align.part.4' lacks nop, can't restore toc; (-mcmodel=small toc adjust stub)
/usr/lib/gcc/powerpc64le-alpine-linux-musl/6.4.0/../../../../powerpc64le-alpine-linux-musl/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
dtoa is flow's dependency (ocaml-dtoa)
Diffstat (limited to 'testing/flow')
-rw-r--r-- | testing/flow/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/flow/APKBUILD b/testing/flow/APKBUILD index 55952ccbe3..d19f156da3 100644 --- a/testing/flow/APKBUILD +++ b/testing/flow/APKBUILD @@ -5,7 +5,9 @@ pkgver=0.76.0 pkgrel=0 pkgdesc="A static typechecker for JavaScript" url="https://flow.org" -arch="all !x86 !armhf !s390x" # limited by ocaml aport +# x86, armhf, s390x: limited by ocaml aport +# ppc64le: fails to build +arch="all !x86 !armhf !s390x !ppc64le" license="MIT" checkdepends="bash diffutils nodejs yarn" makedepends=" |