forked from mysql/mysql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaintainer.cmake
190 lines (173 loc) · 6.01 KB
/
maintainer.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2.0,
# as published by the Free Software Foundation.
#
# This program is also distributed with certain software (including
# but not limited to OpenSSL) that is licensed under separate terms,
# as designated in a particular file or component or in included license
# documentation. The authors of MySQL hereby grant you an additional
# permission to link the program and your derivative works with the
# separately licensed software that they have included with MySQL.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License, version 2.0, for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
MACRO(MY_ADD_C_WARNING_FLAG WARNING_FLAG)
MY_CHECK_C_COMPILER_FLAG("-${WARNING_FLAG}" HAVE_${WARNING_FLAG})
IF(HAVE_${WARNING_FLAG})
SET(MY_C_WARNING_FLAGS "${MY_C_WARNING_FLAGS} -${WARNING_FLAG}")
ENDIF()
ENDMACRO()
MACRO(MY_ADD_CXX_WARNING_FLAG WARNING_FLAG)
STRING(REPLACE "c++" "cpp" WARNING_VAR ${WARNING_FLAG})
MY_CHECK_CXX_COMPILER_FLAG("-${WARNING_FLAG}" HAVE_${WARNING_VAR})
IF(HAVE_${WARNING_VAR})
SET(MY_CXX_WARNING_FLAGS "${MY_CXX_WARNING_FLAGS} -${WARNING_FLAG}")
ENDIF()
ENDMACRO()
#
# Common flags for all versions/compilers
#
# Common warning flags for GCC, G++, Clang and Clang++
SET(MY_WARNING_FLAGS
"-Wall -Wextra -Wformat-security -Wvla -Wundef")
# Gives spurious warnings on 32-bit; see GCC bug 81890.
IF(SIZEOF_VOIDP EQUAL 8)
SET(MY_WARNING_FLAGS "${MY_WARNING_FLAGS} -Wmissing-format-attribute")
ENDIF()
# Common warning flags for GCC and Clang
SET(MY_C_WARNING_FLAGS
"${MY_WARNING_FLAGS} -Wwrite-strings")
# Common warning flags for G++ and Clang++
SET(MY_CXX_WARNING_FLAGS "${MY_WARNING_FLAGS} -Woverloaded-virtual")
# GCC bug #36750 (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36750)
# Remove when we require GCC >= 5.1 everywhere.
if(CMAKE_COMPILER_IS_GNUCXX)
MY_ADD_CXX_WARNING_FLAG("Wno-missing-field-initializers")
ENDIF()
# The default =3 given by -Wextra is a bit too strict for our code.
IF(CMAKE_COMPILER_IS_GNUCXX)
MY_ADD_CXX_WARNING_FLAG("Wimplicit-fallthrough=2")
ENDIF()
#
# Extra flags not supported on all versions/compilers
#
# Only for C++ as C code has some macro usage that is difficult to avoid
IF(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
MY_ADD_CXX_WARNING_FLAG("Wlogical-op")
ENDIF()
# Extra warning flags for Clang
IF(CMAKE_C_COMPILER_ID MATCHES "Clang")
SET(MY_C_WARNING_FLAGS
"${MY_C_WARNING_FLAGS} -Wconditional-uninitialized")
SET(MY_C_WARNING_FLAGS
"${MY_C_WARNING_FLAGS} -Wextra-semi")
SET(MY_C_WARNING_FLAGS
"${MY_C_WARNING_FLAGS} -Wmissing-noreturn")
MY_ADD_C_WARNING_FLAG("Wunreachable-code-break")
MY_ADD_C_WARNING_FLAG("Wunreachable-code-return")
# Other possible options that give warnings (Clang 3.8):
# -Wcast-align
# -Wcast-qual
# -Wconversion
# -Wcovered-switch-default
# -Wdisabled-macro-expansion
# -Wdocumentation-deprecated-sync
# -Wdocumentation-pedantic
# -Wdocumentation-unknown-command
# -Wdouble-promotion
# -Wempty-translation-unit
# -Wfloat-equal
# -Wformat-nonlitera
# -Wformat-pedantic
# -Wmissing-prototypes
# -Wmissing-variable-declarations
# -Wpadded
# -Wpedantic
# -Wreserved-id-macro
# -Wshadow
# -Wshorten-64-to-32
# -Wsign-conversion
# -Wswitch-enum
# -Wunreachable-code
# -Wunused-macros
# -Wused-but-marked-unused
ENDIF()
# Extra warning flags for Clang++
IF(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
# Disable a few default Clang++ warnings
SET(MY_CXX_WARNING_FLAGS
"${MY_CXX_WARNING_FLAGS} -Wno-null-conversion -Wno-unused-private-field")
SET(MY_CXX_WARNING_FLAGS
"${MY_CXX_WARNING_FLAGS} -Wconditional-uninitialized")
SET(MY_CXX_WARNING_FLAGS
"${MY_CXX_WARNING_FLAGS} -Wheader-hygiene")
SET(MY_CXX_WARNING_FLAGS
"${MY_CXX_WARNING_FLAGS} -Wnon-virtual-dtor")
SET(MY_CXX_WARNING_FLAGS
"${MY_CXX_WARNING_FLAGS} -Wundefined-reinterpret-cast")
# Other possible options that give warnings (Clang 3.8):
# -Wabstract-vbase-init
# -Wc++98-compat-pedantic
# -Wcast-align
# -Wconversion
# -Wcovered-switch-default
# -Wdeprecated
# -Wdisabled-macro-expansion
# -Wdocumentation
# -Wdocumentation-pedantic
# -Wdocumentation-unknown-command
# -Wdouble-promotion
# -Wexit-time-destructors
# -Wextended-offsetof
# -Wextra-semi
# -Wfloat-equal
# -Wformat-nonliteral
# -Wformat-pedantic
# -Wglobal-constructors
# -Wgnu-anonymous-struct
# -Wimplicit-fallthrough
# -Wkeyword-macro
# -Wmissing-noreturn
# -Wmissing-prototypes
# -Wmissing-variable-declarations
# -Wnested-anon-types
# -Wnewline-eof
# -Wold-style-cast
# -Wpadded
# -Wpedantic
# -Wreserved-id-macro
# -Wshadow
# -Wshift-sign-overflow
# -Wsign-conversion
# -Wswitch-enum
# -Wunreachable-code
# -Wunreachable-code-break
# -Wunreachable-code-return
# -Wunused-exception-parameter
# -Wunused-macros
# -Wunused-member-function
# -Wused-but-marked-unused
# -Wweak-template-vtables
# -Wweak-vtables
ENDIF()
# Turn on Werror (warning => error) when using maintainer mode.
IF(MYSQL_MAINTAINER_MODE)
SET(MY_C_WARNING_FLAGS "${MY_C_WARNING_FLAGS} -Werror")
SET(MY_CXX_WARNING_FLAGS "${MY_CXX_WARNING_FLAGS} -Werror")
ENDIF()
# Set warning flags for GCC/Clang
IF(CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID MATCHES "Clang")
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${MY_C_WARNING_FLAGS}")
ENDIF()
# Set warning flags for G++/Clang++
IF(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${MY_CXX_WARNING_FLAGS}")
ENDIF()