From a5b1379b886e41ed972f24de47d6127dadd551e8 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Tue, 5 Nov 2019 07:24:05 -0500 Subject: [PATCH] exclude debian from setting CRYPTO_FLAGS --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6f3b57bc5..8f1a79f63 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -177,7 +177,7 @@ if(AMD_RYZEN_HACK AND USE_AVX2) message(WARNING "This option may be removed in a future release. Contact your computer manufacturer for updated ROMs or microcode patches.") endif(AMD_RYZEN_HACK AND USE_AVX2) -if(NATIVE_BUILD) +if(NATIVE_BUILD AND NOT DEBIAN) set(CRYPTO_FLAGS -march=native -mtune=native) endif()