diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 0af9b49..da1728a 100644 --- a/configure.ac +++ b/configure.ac @@ -91,6 +91,11 @@ case "${target_cpu}" in RPMALLARCH="arml armv4tl armv5tl armv5tel armv7l" CANONTARGETCPU=armv7l CANONTARGETGNU=-gnueabi + ;; + armv7hl) + RPMALLARCH="armv7hl" + CANONTARGETCPU=armv7hl + CANONTARGETGNU=-gnueabihf esac RPMALLARCH="${RPMALLARCH} noarch" AC_SUBST(RPMALLARCH) @@ -107,6 +112,12 @@ fi if echo "$build_os" | grep '.*-gnu' > /dev/null ; then build_os=`echo "${build_os}" | sed 's/-gnu$//'` fi +if echo "$build_os" | grep '.*-gnueabi' > /dev/null ; then + build_os=`echo "${build_os}" | sed 's/-gnueabi$//'` +fi +if echo "$build_os" | grep '.*-gnueabihf' > /dev/null ; then + build_os=`echo "${build_os}" | sed 's/-gnueabihf$//'` +fi changequote(<, >) build_os_exact="${build_os}" |