mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 05:50:42 +00:00
a66004bee0
Document these variables. Change our convention for setting these variables from: set(CMAKE_C_FLAGS_INIT "...") to string(APPEND CMAKE_C_FLAGS_INIT " ...") so that any value previously set by a toolchain file will be used. Automate the conversion with: sed -i 's/set *(\(CMAKE_\(C\|CXX\|Fortran\|RC\|ASM\|${[^}]\+}\)_FLAGS\(_[^_]\+\)\?_INIT \+"\)/string(APPEND \1 /' \ Modules/Compiler/*.cmake Modules/Platform/*.cmake and follow up with some manual fixes (e.g. to cases that already meant to append). Also revert the automated changes to contexts that are not protected from running multiple times.
31 lines
1.4 KiB
CMake
31 lines
1.4 KiB
CMake
include(Compiler/GHS)
|
|
|
|
set(CMAKE_C_VERBOSE_FLAG "-v")
|
|
set(CMAKE_C_OUTPUT_EXTENSION ".o")
|
|
|
|
string(APPEND CMAKE_C_FLAGS_INIT " ")
|
|
string(APPEND CMAKE_C_FLAGS_DEBUG_INIT " -Odebug -g")
|
|
string(APPEND CMAKE_C_FLAGS_MINSIZEREL_INIT " -Ospace")
|
|
string(APPEND CMAKE_C_FLAGS_RELEASE_INIT " -O")
|
|
string(APPEND CMAKE_C_FLAGS_RELWITHDEBINFO_INIT " -O -g")
|
|
|
|
set(CMAKE_C_GHS_KERNEL_FLAGS_DEBUG_INIT "-ldebug ${CMAKE_C_FLAGS_DEBUG_INIT}")
|
|
set(CMAKE_C_GHS_KERNEL_FLAGS_MINSIZEREL_INIT "${CMAKE_C_FLAGS_MINSIZEREL_INIT}")
|
|
set(CMAKE_C_GHS_KERNEL_FLAGS_RELEASE_INIT "${CMAKE_C_FLAGS_RELEASE_INIT}")
|
|
set(CMAKE_C_GHS_KERNEL_FLAGS_RELWITHDEBINFO_INIT
|
|
"-ldebug ${CMAKE_C_FLAGS_RELWITHDEBINFO_INIT}")
|
|
|
|
if(NOT CMAKE_NOT_USING_CONFIG_FLAGS)
|
|
set (CMAKE_C_GHS_KERNEL_FLAGS_DEBUG "${CMAKE_C_GHS_KERNEL_FLAGS_DEBUG_INIT}"
|
|
CACHE STRING "Kernel flags used by the compiler during debug builds.")
|
|
set (CMAKE_C_GHS_KERNEL_FLAGS_MINSIZEREL
|
|
"${CMAKE_C_GHS_KERNEL_FLAGS_MINSIZEREL_INIT}" CACHE STRING
|
|
"Kernel flags used by the compiler during release builds for minimum size.")
|
|
set (CMAKE_C_GHS_KERNEL_FLAGS_RELEASE
|
|
"${CMAKE_C_GHS_KERNEL_FLAGS_RELEASE_INIT}"
|
|
CACHE STRING "Kernel flags used by the compiler during release builds.")
|
|
set (CMAKE_C_GHS_KERNEL_FLAGS_RELWITHDEBINFO
|
|
"${CMAKE_C_GHS_KERNEL_FLAGS_RELWITHDEBINFO_INIT}" CACHE STRING
|
|
"Kernel flags used by the compiler during release builds with debug info.")
|
|
endif()
|