aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2014-12-19 18:25:03 +0000
committerdcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2014-12-19 18:25:03 +0000
commit551c99f492c50793a258e725fbf077cbc98bca81 (patch)
treeb846c11eec6e995f6e409e0c9996d55ee1e080c4
parente9598a48c51cd7cdf8552a0a718c17f093e0cd77 (diff)
In the output of the configure script, indicate whether gas-preprocessor.pl is being used along with the assembler.
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1457 632fc199-4ca6-4c93-a231-07263d6284db
-rw-r--r--configure.ac12
1 files changed, 10 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 39a9c2b..cd23284 100644
--- a/configure.ac
+++ b/configure.ac
@@ -437,7 +437,11 @@ if test "x${with_simd}" != "xno"; then
AC_MSG_RESULT([yes (arm)])
AC_MSG_CHECKING([if the assembler is GNU-compatible and can be used])
AC_CHECK_COMPATIBLE_ARM_ASSEMBLER_IFELSE(
- [AC_MSG_RESULT([yes])
+ [if test "x$ac_use_gas_preprocessor" = "xyes"; then
+ AC_MSG_RESULT([yes (with gas-preprocessor)])
+ else
+ AC_MSG_RESULT([yes])
+ fi
simd_arch=arm],
[AC_MSG_RESULT([no])
with_simd=no])
@@ -453,7 +457,11 @@ if test "x${with_simd}" != "xno"; then
AC_MSG_RESULT([yes (arm64)])
AC_MSG_CHECKING([if the assembler is GNU-compatible and can be used])
AC_CHECK_COMPATIBLE_ARM64_ASSEMBLER_IFELSE(
- [AC_MSG_RESULT([yes])
+ [if test "x$ac_use_gas_preprocessor" = "xyes"; then
+ AC_MSG_RESULT([yes (with gas-preprocessor)])
+ else
+ AC_MSG_RESULT([yes])
+ fi
simd_arch=aarch64],
[AC_MSG_RESULT([no])
with_simd=no])