testing/libcoro: armhf build fix

arm assembly requires armv7 and we build for armv6, so we need to
disable assembly for our armhf.
This commit is contained in:
Natanael Copa 2017-07-18 07:31:50 +00:00
parent 6942bcc91d
commit 10d4044893

View File

@ -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