From ad2167f2a7f430ee29e4910adc22fe2843a185b9 Mon Sep 17 00:00:00 2001 From: Gregory Heskett Date: Sun, 15 Jan 2023 21:10:50 -0500 Subject: [PATCH] Remove build flag that should hopefully improve compatibility --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ee28f7e..f2666b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10) project(STRM64) -add_compile_options(-Wall -g -O3 -march=native -DNDEBUG) +add_compile_options(-Wall -g -O3 -DNDEBUG) include_directories(${PROJECT_SOURCE_DIR}/include) include_directories(library/vgmstream/include)