From 58af31be5ebaa67b7fb4aaa4cfbaae1a756cc5a7 Mon Sep 17 00:00:00 2001 From: Pcornat Date: Fri, 8 Apr 2022 22:59:44 +0200 Subject: [PATCH] My new CPU architecture (yes went to red team). --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b007d5d..4a49d57 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -105,8 +105,8 @@ add_subdirectory(external/catch2) set(COMPILE_FLAGS -pipe - -march=skylake # change to native or your architecture. - -mtune=skylake # same as above + -march=znver3 # change to native or your architecture. + -mtune=znver3 # same as above -mrdseed # be careful about this, this is linked to the x86 architecture. -mrdrnd # same as above -Wall