2016-09-27 22:01:08 +03:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
2009-12-02 17:52:00 +03:00
|
|
|
|
|
|
|
|
|
|
|
# This module is shared by multiple languages; use include blocker.
|
|
|
|
if(__COMPILER_GNU)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
set(__COMPILER_GNU 1)
|
|
|
|
|
|
|
|
macro(__compiler_gnu lang)
|
|
|
|
# Feature flags.
|
|
|
|
set(CMAKE_${lang}_VERBOSE_FLAG "-v")
|
2012-05-05 23:11:35 +04:00
|
|
|
set(CMAKE_${lang}_COMPILE_OPTIONS_PIC "-fPIC")
|
|
|
|
if(NOT CMAKE_${lang}_COMPILER_VERSION VERSION_LESS 3.4)
|
|
|
|
set(CMAKE_${lang}_COMPILE_OPTIONS_PIE "-fPIE")
|
|
|
|
endif()
|
2016-08-02 16:24:54 +03:00
|
|
|
if(NOT CMAKE_${lang}_COMPILER_VERSION VERSION_LESS 4.0)
|
2013-05-18 14:12:18 +04:00
|
|
|
set(CMAKE_${lang}_COMPILE_OPTIONS_VISIBILITY "-fvisibility=")
|
|
|
|
endif()
|
2009-12-02 17:52:00 +03:00
|
|
|
set(CMAKE_SHARED_LIBRARY_${lang}_FLAGS "-fPIC")
|
|
|
|
set(CMAKE_SHARED_LIBRARY_CREATE_${lang}_FLAGS "-shared")
|
2013-04-13 16:46:57 +04:00
|
|
|
set(CMAKE_${lang}_COMPILE_OPTIONS_SYSROOT "--sysroot=")
|
2009-12-02 17:52:00 +03:00
|
|
|
|
2011-11-15 08:39:52 +04:00
|
|
|
# Older versions of gcc (< 4.5) contain a bug causing them to report a missing
|
|
|
|
# header file as a warning if depfiles are enabled, causing check_header_file
|
|
|
|
# tests to always succeed. Work around this by disabling dependency tracking
|
|
|
|
# in try_compile mode.
|
2012-08-13 21:47:32 +04:00
|
|
|
get_property(_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE)
|
2011-11-15 08:39:52 +04:00
|
|
|
if(NOT _IN_TC OR CMAKE_FORCE_DEPFILES)
|
2012-03-26 07:16:15 +04:00
|
|
|
# distcc does not transform -o to -MT when invoking the preprocessor
|
|
|
|
# internally, as it ought to. Work around this bug by setting -MT here
|
|
|
|
# even though it isn't strictly necessary.
|
2016-03-15 17:15:53 +03:00
|
|
|
set(CMAKE_DEPFILE_FLAGS_${lang} "-MD -MT <OBJECT> -MF <DEPFILE>")
|
2011-11-15 08:39:52 +04:00
|
|
|
endif()
|
|
|
|
|
2009-12-02 17:52:00 +03:00
|
|
|
# Initial configuration flags.
|
2016-07-05 20:35:13 +03:00
|
|
|
string(APPEND CMAKE_${lang}_FLAGS_INIT " ")
|
|
|
|
string(APPEND CMAKE_${lang}_FLAGS_DEBUG_INIT " -g")
|
|
|
|
string(APPEND CMAKE_${lang}_FLAGS_MINSIZEREL_INIT " -Os -DNDEBUG")
|
|
|
|
string(APPEND CMAKE_${lang}_FLAGS_RELEASE_INIT " -O3 -DNDEBUG")
|
|
|
|
string(APPEND CMAKE_${lang}_FLAGS_RELWITHDEBINFO_INIT " -O2 -g -DNDEBUG")
|
2015-07-13 17:35:04 +03:00
|
|
|
set(CMAKE_${lang}_CREATE_PREPROCESSED_SOURCE "<CMAKE_${lang}_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE>")
|
|
|
|
set(CMAKE_${lang}_CREATE_ASSEMBLY_SOURCE "<CMAKE_${lang}_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE>")
|
2016-02-07 22:20:02 +03:00
|
|
|
if(NOT APPLE OR NOT CMAKE_${lang}_COMPILER_VERSION VERSION_LESS 4) # work around #4462
|
2011-06-14 01:48:20 +04:00
|
|
|
set(CMAKE_INCLUDE_SYSTEM_FLAG_${lang} "-isystem ")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2009-12-02 17:52:00 +03:00
|
|
|
endmacro()
|