remove -m64 (#216)

This commit is contained in:
Christian Giese
2023-11-19 08:06:16 +00:00
parent 6934bb51b7
commit 644cc32aaf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ endif()
if(BNGBLASTER_CPU_NATIVE)
target_compile_options(bngblaster PRIVATE -Werror -Wall -Wextra -Wno-deprecated-declarations -pedantic -march=native -mtune=native)
ELSE()
target_compile_options(bngblaster PRIVATE -Werror -Wall -Wextra -Wno-deprecated-declarations -pedantic -m64 -mtune=generic)
target_compile_options(bngblaster PRIVATE -Werror -Wall -Wextra -Wno-deprecated-declarations -pedantic -mtune=generic)
ENDIF()
# Optional IPO. Do not use IPO if it's not supported by compiler.
+1 -1
View File
@@ -19,7 +19,7 @@ endif()
if(BNGBLASTER_CPU_NATIVE)
target_compile_options(lspgen PRIVATE -Werror -Wall -Wextra -Wno-deprecated-declarations -pedantic -march=native -mtune=native)
else()
target_compile_options(lspgen PRIVATE -Werror -Wall -Wextra -Wno-deprecated-declarations -pedantic -m64 -mtune=generic)
target_compile_options(lspgen PRIVATE -Werror -Wall -Wextra -Wno-deprecated-declarations -pedantic -mtune=generic)
endif()
# Optional IPO. Do not use IPO if it's not supported by compiler.