Skip to content

Commit

Permalink
remove -m64 (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
GIC-de committed Nov 19, 2023
1 parent 6934bb5 commit 644cc32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/bngblaster/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion code/lspgen/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 644cc32

Please sign in to comment.