Browse Source

general: make -fwrapv generic to all architectures (#11379)

pull/15/merge
liamwhite 2 years ago
committed by GitHub
parent
commit
32b2436f80
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/CMakeLists.txt

3
src/CMakeLists.txt

@ -105,6 +105,8 @@ if (MSVC)
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "/DEBUG /MANIFEST:NO /INCREMENTAL:NO /OPT:REF,ICF" CACHE STRING "" FORCE)
else()
add_compile_options(
-fwrapv
-Werror=all
-Werror=extra
-Werror=missing-declarations
@ -129,7 +131,6 @@ else()
if (ARCHITECTURE_x86_64)
add_compile_options("-mcx16")
add_compile_options("-fwrapv")
endif()
if (APPLE AND CMAKE_CXX_COMPILER_ID STREQUAL Clang)

Loading…
Cancel
Save