mirror of
https://github.com/Z3Prover/z3
synced 2025-04-04 16:44:07 +00:00
`contrib/cmake/bootstrap.py` script no longer needs to be executed. The previous location of the CMake files was a compromise proposed by @agurfinkel in #461. While this has served us well (allowing progress to be made) over time limitations of this approach have appeared. The main problem is that doing many git operations (e.g. pull, rebase) means the CMake files don't get updated unless the user remembers to run the script. This can lead to broken and confusing build system behaviour. This commit only does the file moving and necessary changes to `.gitignore`. Other changes will be done in subsequent commits.
15 lines
771 B
CMake
15 lines
771 B
CMake
# This file overrides the default compiler flags for CMake's built-in
|
|
# configurations (CMAKE_BUILD_TYPE). Most compiler flags should not be set here.
|
|
# The main purpose is to have very fine grained control of the compiler flags.
|
|
|
|
# We only override the defaults for Clang and GCC right now.
|
|
# CMake's MSVC logic is complicated so for now it's better to just inherit CMake's defaults.
|
|
if (("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang") OR ("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU"))
|
|
# Taken from Modules/Compiler/GNU.cmake
|
|
set(CMAKE_CXX_FLAGS_INIT "")
|
|
set(CMAKE_CXX_FLAGS_DEBUG_INIT "-g -O0")
|
|
set(CMAKE_CXX_FLAGS_MINSIZEREL_INIT "-Os -DNDEBUG")
|
|
set(CMAKE_CXX_FLAGS_RELEASE_INIT "-O3 -DNDEBUG")
|
|
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT "-O2 -g -DNDEBUG")
|
|
endif()
|