Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
f42cc807521cd55832d68fd935ecd152f2f9252f
[simgrid.git] / buildtools / Cmake / Flags.cmake
1 ##
2 ## This file is in charge of setting our paranoid flags with regard to warnings and optimization.
3 ##
4 ##   These flags do break some classical CMake tests, so you don't
5 ##   want to do so before the very end of the configuration.
6 ## 
7 ##   Other compiler flags (C/C++ standard version) are tested and set
8 ##   by the beginning of the configuration, directly in ~/CMakeList.txt
9
10 set(warnCFLAGS "")
11 set(optCFLAGS "")
12
13
14
15 if(enable_compile_warnings)
16   set(warnCFLAGS "-fno-common -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wcomment -Wformat -Wwrite-strings -Wno-unused-function -Wno-unused-parameter -Wno-strict-aliasing -Wno-format-nonliteral -Werror ")
17   if(CMAKE_COMPILER_IS_GNUCC)
18     set(warnCFLAGS "${warnCFLAGS}-Wclobbered -Wno-error=clobbered ")
19   endif()
20
21   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra  -Wunused -Wpointer-arith -Wchar-subscripts -Wcomment  -Wformat -Wwrite-strings -Wno-unused-function -Wno-unused-parameter -Wno-strict-aliasing -Wno-format-nonliteral -Werror")
22   if(CMAKE_COMPILER_IS_GNUCXX)
23     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wclobbered -Wno-error=clobbered")
24   endif()
25   if (CMAKE_CXX_COMPILER_ID MATCHES "Clang") # don't care about class that become struct
26     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-mismatched-tags")
27   endif()
28
29   set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -Wall") # FIXME: Q&D hack
30
31   set(CMAKE_JAVA_COMPILE_FLAGS "-Xlint")
32 endif()
33
34 if(enable_compile_optimizations)
35   set(optCFLAGS "-O3 -funroll-loops -fno-strict-aliasing ")
36   if(CMAKE_COMPILER_IS_GNUCC AND (NOT enable_model-checking))
37     set(optCFLAGS "${optCFLAGS} -finline-functions ")
38     if(WIN32)
39       if (COMPILER_C_VERSION_MAJOR_MINOR STRGREATER "4.7")
40       # On windows, we need 4.8 or higher to enable lto because of http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50293
41         set(optCFLAGS "${optCFLAGS} -flto ")
42       endif()
43     else()    
44       # On non-windows, 4.6 is enough for that
45       if(LINKER_VERSION STRGREATER "2.22")
46         set(optCFLAGS "${optCFLAGS} -flto ")
47       endif()
48     endif()
49   endif()
50 else()
51   set(optCFLAGS "-O0 ")
52 endif()
53
54 if(enable_sdt)
55   add_definitions(-DUSE_SDT)
56 endif()
57
58 if(enable_ust)
59   add_definitions(-DUSE_UST)
60 endif()
61
62 if(enable_model-checking AND enable_compile_optimizations)
63   # Forget it, do not optimize the code (because it confuses the MC):
64   set(optCFLAGS "-O0 ")
65   # But you can still optimize this:
66   foreach(s
67       src/xbt/mmalloc/mm.c
68       src/xbt/log.c src/xbt/xbt_log_appender_file.c
69       src/xbt/xbt_log_layout_format.c src/xbt/xbt_log_layout_simple.c
70       src/xbt/dict.c src/xbt/dict_elm.c src/xbt/dict_multi.c src/xbt/dict_cursor.c
71       src/xbt/set.c src/xbt/setset.c
72       src/xbt/dynar.c src/xbt/fifo.c src/xbt/heap.c src/xbt/swag.c
73       src/xbt/str.c src/xbt/strbuff.c src/xbt/snprintf.c
74       src/xbt/queue.c
75       src/xbt/xbt_os_time.c src/xbt/xbt_os_thread.c
76       src/xbt/sha.c
77       src/xbt/matrix.c
78       src/xbt/backtrace_linux.c
79       ${MC_SRC_BASE} ${MC_SRC})
80       set (mcCFLAGS "-O3  -funroll-loops -fno-strict-aliasing")
81        if(CMAKE_COMPILER_IS_GNUCC)
82          set (mcCFLAGS "${mcCFLAGS} -finline-functions")
83       endif()
84       set_source_files_properties(${s} PROPERTIES COMPILE_FLAGS ${mcCFLAGS})
85   endforeach()
86 endif()
87
88 if(APPLE AND COMPILER_C_VERSION_MAJOR_MINOR MATCHES "4.6")
89   set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-deprecated-declarations")
90   set(optCFLAGS "-O0 ")
91 endif()
92
93 if(NOT enable_debug)
94   set(CMAKE_C_FLAGS "-DNDEBUG ${CMAKE_C_FLAGS}")
95   set(CMAKE_CXX_FLAGS "-DNDEBUG ${CMAKE_CXX_FLAGS}")
96 endif()
97
98 if(enable_msg_deprecated)
99   set(CMAKE_C_FLAGS "-DMSG_USE_DEPRECATED ${CMAKE_C_FLAGS}")
100 endif()
101
102 set(CMAKE_C_FLAGS   "${CMAKE_C_FLAGS}   ${optCFLAGS} ${warnCFLAGS}")
103 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${optCFLAGS}")
104
105 # Try to make Mac a bit more complient to open source standards
106 if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
107   set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_XOPEN_SOURCE=700 -D_DARWIN_C_SOURCE")
108 endif()
109
110 set(TESH_OPTION "")
111 if(enable_coverage)
112   find_program(GCOV_PATH gcov)
113   if(GCOV_PATH)
114     set(COVERAGE_COMMAND "${GCOV_PATH}" CACHE TYPE FILEPATH FORCE)
115     set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DCOVERAGE")
116     set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fprofile-arcs -ftest-coverage")
117     set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fprofile-arcs -ftest-coverage")
118     set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fprofile-arcs -ftest-coverage")
119     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fprofile-arcs -ftest-coverage")
120     set(TESH_OPTION --enable-coverage)
121     add_definitions(-fprofile-arcs -ftest-coverage)
122   endif()
123 endif()
124
125 if(NOT $ENV{CFLAGS} STREQUAL "")
126   message(STATUS "Add CFLAGS: \"$ENV{CFLAGS}\" to CMAKE_C_FLAGS")
127   set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} $ENV{CFLAGS}")
128 endif()
129
130 if(NOT $ENV{CXXFLAGS} STREQUAL "")
131   message(STATUS "Add CXXFLAGS: \"$ENV{CXXFLAGS}\" to CMAKE_CXX_FLAGS")
132   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} $ENV{CXXFLAGS}")
133 endif()
134
135 if(NOT $ENV{LDFLAGS} STREQUAL "")
136   message(STATUS "Add LDFLAGS: \"$ENV{LDFLAGS}\" to CMAKE_C_LINK_FLAGS")
137   set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} $ENV{LDFLAGS}")
138 endif()