Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/resource2/cmake/CompilerConfigGCC.cmake @ 5664

Last change on this file since 5664 was 5664, checked in by rgrieder, 15 years ago
  • Moved all (as far as possible) build related CMake options and switches to src/OrxonoxConfig.cmake (new file). This should my constant problems of finding options I've created some time ago…
  • Renamed BuildConfig to CompilerConfig (since that's what it has become now).
  • Moved all installation related options and paths to cmake/InstallConfig.cmake (new file)
  • Note: I moved the very basic options to the root CMLs like default paths (bin, lib, doc, etc.), output directories and configuration type.

Actual code changes are absolutely minimal, maybe a few lines or so.

  • Property svn:eol-style set to native
File size: 3.5 KB
Line 
1 #
2 #             ORXONOX - the hottest 3D action shooter ever to exist
3 #                             > www.orxonox.net <
4 #
5 #        This program is free software; you can redistribute it and/or
6 #         modify it under the terms of the GNU General Public License
7 #        as published by the Free Software Foundation; either version 2
8 #            of the License, or (at your option) any later version.
9 #
10 #       This program is distributed in the hope that it will be useful,
11 #        but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #                 GNU General Public License for more details.
14 #
15 #   You should have received a copy of the GNU General Public License along
16 #      with this program; if not, write to the Free Software Foundation,
17 #     Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 #
19 #
20 #  Author:
21 #    Reto Grieder, Adrian Friedli
22 #  Description:
23 #    Sets the right compiler and linker flags for GCC.
24 #
25
26INCLUDE(FlagUtilities)
27
28# Shortcut for CMAKE_COMPILER_IS_GNUCXX and ..._GNUC
29SET(CMAKE_COMPILER_IS_GNU TRUE)
30
31# Determine compiler version
32EXEC_PROGRAM(
33  ${CMAKE_CXX_COMPILER}
34  ARGS ${CMAKE_CXX_COMPILER_ARG1} -dumpversion
35  OUTPUT_VARIABLE GCC_VERSION
36)
37
38# GCC may not support #pragma GCC system_header correctly when using
39# templates. According to Bugzilla, it was fixed March 07 but tests
40# have confirmed that GCC 4.0.0 does not pose a problem for our cases.
41INCLUDE(CompareVersionStrings)
42COMPARE_VERSION_STRINGS("${GCC_VERSION}" "4.0.0" _compare_result)
43IF(_compare_result LESS 0)
44  SET(GCC_NO_SYSTEM_HEADER_SUPPORT TRUE)
45ENDIF()
46
47# GCC only supports PCH in versions 3.4 and above
48INCLUDE(CompareVersionStrings)
49COMPARE_VERSION_STRINGS("${GCC_VERSION}" "3.4.0" _compare_result)
50IF(_compare_result GREATER -1)
51  SET(PCH_COMPILER_SUPPORT TRUE)
52ENDIF()
53
54# Also include environment flags. Could cause conflicts though
55SET_COMPILER_FLAGS("$ENV{CXXFLAGS}" CXX CACHE)
56SET_COMPILER_FLAGS("$ENV{CFLAGS}"   C   CACHE)
57
58# These flags get added to the flags above
59SET_COMPILER_FLAGS("    -g -ggdb -D_DEBUG" Debug          CACHE)
60SET_COMPILER_FLAGS("             -DNDEBUG" ReleaseAll     CACHE)
61ADD_COMPILER_FLAGS("-O3"                   Release        CACHE)
62ADD_COMPILER_FLAGS("-O2 -g -ggdb"          RelWithDebInfo CACHE)
63ADD_COMPILER_FLAGS("-Os"                   MinSizeRel     CACHE)
64
65# CMake doesn't seem to set the PIC flags right on certain 64 bit systems
66IF(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64")
67  ADD_COMPILER_FLAGS("-fPIC" CACHE)
68ENDIF()
69
70# We have some uncoformant code, disable an optimisation feature
71ADD_COMPILER_FLAGS("-fno-strict-aliasing" CACHE)
72
73# For GCC older than version 4, do not display sign compare warings
74# because of boost::filesystem (which creates about a hundred per include)
75ADD_COMPILER_FLAGS("-Wno-sign-compare" GCC_NO_SYSTEM_HEADER_SUPPORT CACHE)
76
77# For newer GCC (4.3 and above), don't display hundreds of annoying deprecated
78# messages. Other versions don't seem to show any such warnings at all.
79ADD_COMPILER_FLAGS("-Wno-deprecated" CXX CACHE)
80
81# Always show why a precompiled header file could not be used
82ADD_COMPILER_FLAGS("-Winvalid-pch" CXX CACHE)
83
84# Increase warning level if requested
85IF(EXTRA_COMPILER_WARNINGS)
86  ADD_COMPILER_FLAGS("-Wall -Wextra -Wno-unused-parameter" CACHE)
87ELSE()
88  REMOVE_COMPILER_FLAGS("-Wextra -Wno-unused-parameter" CACHE)
89  ADD_COMPILER_FLAGS("-Wall" CACHE)
90ENDIF()
91
92# General linker flags
93SET_LINKER_FLAGS("--no-undefined" CACHE)
Note: See TracBrowser for help on using the repository browser.