mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[CMAKE] Disable --compress-debug-sections on GCC >= 7.0
This leads to 'bad reloc address in section .zdebug_info'
This commit is contained in:
parent
86046a9bf4
commit
5fe74532af
1 changed files with 3 additions and 1 deletions
|
@ -253,7 +253,9 @@ set(CMAKE_EXE_LINKER_FLAGS "-nostdlib -Wl,--enable-auto-image-base,--disable-aut
|
|||
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS_INIT} -Wl,--disable-stdcall-fixup")
|
||||
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS_INIT} -Wl,--disable-stdcall-fixup")
|
||||
|
||||
if((NOT CMAKE_C_COMPILER_ID STREQUAL "Clang") AND (NOT CMAKE_BUILD_TYPE STREQUAL "Release"))
|
||||
if((CMAKE_C_COMPILER_ID STREQUAL "GNU") AND
|
||||
(NOT CMAKE_BUILD_TYPE STREQUAL "Release") AND
|
||||
(NOT CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 7.0))
|
||||
# FIXME: Set this once Clang toolchain works with it
|
||||
set(_compress_debug_sections_flag "-Wa,--compress-debug-sections")
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue