X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=configure.ac;h=06b586850f3fe675de33be4b35dd947f4aab3474;hb=f06959bd6b25ca976e50abd739c3ecdfe5ea506d;hp=78c412ea7a22d1f7162aa787e9636ac98b84294c;hpb=7285135d5fa16b631395da282276b4861a714c35;p=stressapptest diff --git a/configure.ac b/configure.ac index 78c412e..06b5868 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,9 @@ AC_PREREQ(2.61) -AC_INIT([stressapptest], [1.0.7_autoconf], [opensource@google.com]) +AC_INIT([stressapptest], [1.0.8_autoconf], [opensource@google.com]) AC_ARG_WITH(static, [ --with-static enable static linking]) -if test "$with_static" == "yes" +if test "$with_static" = "yes" then AC_MSG_NOTICE([Compiling with staticaly linked libraries.]) LIBS="$LIBS -static" @@ -31,7 +31,11 @@ AS_CASE(["$host_cpu"], AC_DEFINE([STRESSAPPTEST_CPU_ARMV7A],[], [Defined if the target CPU is armv7a]) ], - [AC_MSG_WARN([Unsupported CPU: $host_cpu! Try x86_64, i686, powerpc, or armv7a])] + [*aarch64*], [ + AC_DEFINE([STRESSAPPTEST_CPU_AARCH64],[], + [Defined if the target CPU is aarch64]) + ], +[AC_MSG_WARN([Unsupported CPU: $host_cpu! Try x86_64, i686, powerpc, armv7a, or aarch64])] ) ## The following allows like systems to share settings. This is not meant to