From 4ec78b35f8bba7edb6eb5bbcf473850c18fe44d1 Mon Sep 17 00:00:00 2001 From: selsta Date: Mon, 13 Sep 2021 02:33:34 +0200 Subject: [PATCH] cmake: don't force -march=x86-64 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 93782659..4ed7ee3b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -380,7 +380,7 @@ if(APPLE) endif() if (APPLE AND NOT IOS) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=x86-64 -fvisibility=default -std=c++11") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=default -std=c++11") endif() if(APPLE)