diff options
author | Damjan Marion <damarion@cisco.com> | 2017-11-10 20:26:50 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2017-11-11 00:18:25 +0000 |
commit | ba3c77364cc8b7dfb136e955458177e1a9a14c98 (patch) | |
tree | 8fa0a15956f5d4753f93184469fd5bc81231c047 /src/configure.ac | |
parent | 60caa064e5109f21a9ccc170cb3f90ff1f82ecde (diff) |
Handle CPU flags from autotools project
Change-Id: Id085c1e3cbc7bf03df02755f9e35896cdb57e9e3
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/configure.ac')
-rw-r--r-- | src/configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/configure.ac b/src/configure.ac index 8b79cff224f..ee4985b5471 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -161,6 +161,17 @@ AC_ARG_WITH(pre-data, esac], [with_pre_data=128]) ############################################################################### +# Target CPU flags +############################################################################### + +AS_CASE([$build_cpu], + [x86_64], [CPU_FLAGS="-march=corei7 -mtune=corei7-avx"], + [aarch64], [CPU_FLAGS="-march=armv8-a+crc"], + [CPU_FLAGS=""], +) +AC_SUBST([CPU_FLAGS]) + +############################################################################### # Substitutions and defines ############################################################################### |