Commit 09085c42 authored by Felix Paul Kühne's avatar Felix Paul Kühne

configure.ac: enforce -arch armv7 when cross-compiling for Darwin running on ARM platforms

additionally, set the correct endianness value, since the check will fail
parent f3899ba6
...@@ -142,6 +142,10 @@ case "${host_os}" in ...@@ -142,6 +142,10 @@ case "${host_os}" in
x86_64*) x86_64*)
ARCH_flag="-arch x86_64" ARCH_flag="-arch x86_64"
;; ;;
arm*)
ARCH_flag="-arch armv7"
ac_cv_c_bigendian="no"
;;
esac esac
SYS=darwin SYS=darwin
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment