diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-07-18 07:31:50 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-07-18 07:31:50 +0000 |
commit | 10d40448932ff8ee8bf3283266e2d2dd1754c83f (patch) | |
tree | d2dc66393ed3eafb419fd6c77913feab85c50772 /testing/libcoro | |
parent | 6942bcc91d7953e03d8b3682083b4b7fe2a0d207 (diff) | |
download | aports-10d40448932ff8ee8bf3283266e2d2dd1754c83f.tar.bz2 aports-10d40448932ff8ee8bf3283266e2d2dd1754c83f.tar.xz |
testing/libcoro: armhf build fix
arm assembly requires armv7 and we build for armv6, so we need to
disable assembly for our armhf.
Diffstat (limited to 'testing/libcoro')
-rw-r--r-- | testing/libcoro/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/libcoro/APKBUILD b/testing/libcoro/APKBUILD index 5a70d82734..1370449f6a 100644 --- a/testing/libcoro/APKBUILD +++ b/testing/libcoro/APKBUILD @@ -44,7 +44,7 @@ build() { CFLAGS="-fPIC -pedantic -Wall" case "$CARCH" in - x86* | arm*) CFLAGS="$CFLAGS -DCORO_ASM";; + x86* | armv7*) CFLAGS="$CFLAGS -DCORO_ASM";; *) CFLAGS="$CFLAGS -DCORO_SJLJ";; esac |