diff options
author | Damjan Marion <dmarion@me.com> | 2020-02-11 14:28:04 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-02-11 23:09:56 +0000 |
commit | bdfa4d37812dbd2c1037cc0d55d5900d17aeb10c (patch) | |
tree | c1bab0ea56f39c282782836aacc9b92ea94ae849 /src/plugins | |
parent | 448890e2a658103da75a9fee252bb60c7c008a83 (diff) |
crypto-native: fix ARM compilatiion flags
Type: fix
Change-Id: I3b39c17d9cfadc1d383d9c4dba9029ea279d09d7
Signed-off-by: Damjan Marion <dmarion@me.com>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/crypto_native/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/crypto_native/CMakeLists.txt b/src/plugins/crypto_native/CMakeLists.txt index 9fc3e7d4090..9ac29462815 100644 --- a/src/plugins/crypto_native/CMakeLists.txt +++ b/src/plugins/crypto_native/CMakeLists.txt @@ -25,7 +25,7 @@ if(CMAKE_SYSTEM_PROCESSOR MATCHES "amd64.*|x86_64.*|AMD64.*") endif() if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(aarch64.*|AARCH64.*)") - list(APPEND VARIANTS "armv8\;-march=native") + list(APPEND VARIANTS "armv8\;-march=armv8.1-a+crc+crypto") set (COMPILE_FILES aes_cbc.c) set (COMPILE_OPTS -Wall -fno-common) endif() |