]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/bsd.sys.mk
owc.4: document how to set up the 1-wire bus on a device.hints system
[FreeBSD/FreeBSD.git] / share / mk / bsd.sys.mk
1 # $FreeBSD$
2 #
3 # This file contains common settings used for building FreeBSD
4 # sources.
5
6 # Enable various levels of compiler warning checks.  These may be
7 # overridden (e.g. if using a non-gcc compiler) by defining MK_WARNS=no.
8
9 # for 4.2.1 GCC:   http://gcc.gnu.org/onlinedocs/gcc-4.2.1/gcc/Warning-Options.html
10 # for current GCC: https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
11 # for clang: https://clang.llvm.org/docs/DiagnosticsReference.html
12
13 .include <bsd.compiler.mk>
14
15 # the default is gnu99 for now
16 CSTD?=          gnu99
17
18 .if ${CSTD} == "c89" || ${CSTD} == "c90"
19 CFLAGS+=        -std=iso9899:1990
20 .elif ${CSTD} == "c94" || ${CSTD} == "c95"
21 CFLAGS+=        -std=iso9899:199409
22 .elif ${CSTD} == "c99"
23 CFLAGS+=        -std=iso9899:1999
24 .else # CSTD
25 CFLAGS+=        -std=${CSTD}
26 .endif # CSTD
27
28 .if !empty(CXXSTD)
29 CXXFLAGS+=      -std=${CXXSTD}
30 .endif
31
32 # -pedantic is problematic because it also imposes namespace restrictions
33 #CFLAGS+=       -pedantic
34 .if defined(WARNS)
35 .if ${WARNS} >= 1
36 CWARNFLAGS+=    -Wsystem-headers
37 .if !defined(NO_WERROR) && !defined(NO_WERROR.${COMPILER_TYPE})
38 CWARNFLAGS+=    -Werror
39 .endif # !NO_WERROR && !NO_WERROR.${COMPILER_TYPE}
40 .endif # WARNS >= 1
41 .if ${WARNS} >= 2
42 CWARNFLAGS+=    -Wall -Wno-format-y2k
43 .endif # WARNS >= 2
44 .if ${WARNS} >= 3
45 CWARNFLAGS+=    -W -Wno-unused-parameter -Wstrict-prototypes\
46                 -Wmissing-prototypes -Wpointer-arith
47 .endif # WARNS >= 3
48 .if ${WARNS} >= 4
49 CWARNFLAGS+=    -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow\
50                 -Wunused-parameter
51 .if !defined(NO_WCAST_ALIGN) && !defined(NO_WCAST_ALIGN.${COMPILER_TYPE})
52 CWARNFLAGS+=    -Wcast-align
53 .endif # !NO_WCAST_ALIGN !NO_WCAST_ALIGN.${COMPILER_TYPE}
54 .endif # WARNS >= 4
55 .if ${WARNS} >= 6
56 CWARNFLAGS+=    -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls\
57                 -Wold-style-definition
58 .if !defined(NO_WMISSING_VARIABLE_DECLARATIONS)
59 CWARNFLAGS.clang+=      -Wmissing-variable-declarations
60 .endif
61 .if !defined(NO_WTHREAD_SAFETY)
62 CWARNFLAGS.clang+=      -Wthread-safety
63 .endif
64 .endif # WARNS >= 6
65 .if ${WARNS} >= 2 && ${WARNS} <= 4
66 # XXX Delete -Wuninitialized by default for now -- the compiler doesn't
67 # XXX always get it right.
68 CWARNFLAGS+=    -Wno-uninitialized
69 .endif # WARNS >=2 && WARNS <= 4
70 CWARNFLAGS+=    -Wno-pointer-sign
71 # Clang has more warnings enabled by default, and when using -Wall, so if WARNS
72 # is set to low values, these have to be disabled explicitly.
73 .if ${WARNS} <= 6
74 CWARNFLAGS.clang+=      -Wno-empty-body -Wno-string-plus-int
75 .if ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 30400
76 CWARNFLAGS.clang+=      -Wno-unused-const-variable
77 .endif
78 .endif # WARNS <= 6
79 .if ${WARNS} <= 3
80 CWARNFLAGS.clang+=      -Wno-tautological-compare -Wno-unused-value\
81                 -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion
82 .if ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 30600
83 CWARNFLAGS.clang+=      -Wno-unused-local-typedef
84 .endif
85 .if ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 40000
86 CWARNFLAGS.clang+=      -Wno-address-of-packed-member
87 .endif
88 .if ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 70000 && \
89     ${MACHINE_CPUARCH} == "arm" && !${MACHINE_ARCH:Marmv[67]*}
90 CWARNFLAGS.clang+=      -Wno-atomic-alignment
91 .endif
92 .endif # WARNS <= 3
93 .if ${WARNS} <= 2
94 CWARNFLAGS.clang+=      -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter
95 .endif # WARNS <= 2
96 .if ${WARNS} <= 1
97 CWARNFLAGS.clang+=      -Wno-parentheses
98 .endif # WARNS <= 1
99 .if defined(NO_WARRAY_BOUNDS)
100 CWARNFLAGS.clang+=      -Wno-array-bounds
101 .endif # NO_WARRAY_BOUNDS
102 .endif # WARNS
103
104 .if defined(FORMAT_AUDIT)
105 WFORMAT=        1
106 .endif # FORMAT_AUDIT
107 .if defined(WFORMAT)
108 .if ${WFORMAT} > 0
109 #CWARNFLAGS+=   -Wformat-nonliteral -Wformat-security -Wno-format-extra-args
110 CWARNFLAGS+=    -Wformat=2 -Wno-format-extra-args
111 .if ${WARNS} <= 3
112 CWARNFLAGS.clang+=      -Wno-format-nonliteral
113 .endif # WARNS <= 3
114 .if !defined(NO_WERROR) && !defined(NO_WERROR.${COMPILER_TYPE})
115 CWARNFLAGS+=    -Werror
116 .endif # !NO_WERROR && !NO_WERROR.${COMPILER_TYPE}
117 .endif # WFORMAT > 0
118 .endif # WFORMAT
119 .if defined(NO_WFORMAT) || defined(NO_WFORMAT.${COMPILER_TYPE})
120 CWARNFLAGS+=    -Wno-format
121 .endif # NO_WFORMAT || NO_WFORMAT.${COMPILER_TYPE}
122
123 # GCC 5.2.0
124 .if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 50200
125 CWARNFLAGS+=    -Wno-error=address                      \
126                 -Wno-error=array-bounds                 \
127                 -Wno-error=attributes                   \
128                 -Wno-error=bool-compare                 \
129                 -Wno-error=cast-align                   \
130                 -Wno-error=clobbered                    \
131                 -Wno-error=enum-compare                 \
132                 -Wno-error=extra                        \
133                 -Wno-error=inline                       \
134                 -Wno-error=logical-not-parentheses      \
135                 -Wno-error=strict-aliasing              \
136                 -Wno-error=uninitialized                \
137                 -Wno-error=unused-but-set-variable      \
138                 -Wno-error=unused-function              \
139                 -Wno-error=unused-value
140 .endif
141
142 # GCC 6.1.0
143 .if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 60100
144 CWARNFLAGS+=    -Wno-error=misleading-indentation       \
145                 -Wno-error=nonnull-compare              \
146                 -Wno-error=shift-negative-value         \
147                 -Wno-error=tautological-compare         \
148                 -Wno-error=unused-const-variable
149 .endif
150
151 # GCC 7.1.0
152 .if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 70100
153 CWARNFLAGS+=    -Wno-error=bool-operation               \
154                 -Wno-error=deprecated                   \
155                 -Wno-error=expansion-to-defined         \
156                 -Wno-error=format-overflow              \
157                 -Wno-error=format-truncation            \
158                 -Wno-error=implicit-fallthrough         \
159                 -Wno-error=int-in-bool-context          \
160                 -Wno-error=memset-elt-size              \
161                 -Wno-error=noexcept-type                \
162                 -Wno-error=nonnull                      \
163                 -Wno-error=pointer-compare              \
164                 -Wno-error=stringop-overflow
165 .endif
166
167 # GCC 8.1.0
168 .if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 80100
169 CWARNFLAGS+=    -Wno-error=aggressive-loop-optimizations        \
170                 -Wno-error=cast-function-type                   \
171                 -Wno-error=catch-value                          \
172                 -Wno-error=multistatement-macros                \
173                 -Wno-error=restrict                             \
174                 -Wno-error=sizeof-pointer-memaccess             \
175                 -Wno-error=stringop-truncation
176 .endif
177
178 # How to handle FreeBSD custom printf format specifiers.
179 .if ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 30600
180 FORMAT_EXTENSIONS=      -D__printf__=__freebsd_kprintf__
181 .else
182 FORMAT_EXTENSIONS=      -fformat-extensions
183 .endif
184
185 .if defined(IGNORE_PRAGMA)
186 CWARNFLAGS+=    -Wno-unknown-pragmas
187 .endif # IGNORE_PRAGMA
188
189 # We need this conditional because many places that use it
190 # only enable it for some files with CLFAGS.$FILE+=${CLANG_NO_IAS}.
191 # unconditionally, and can't easily use the CFLAGS.clang=
192 # mechanism.
193 .if ${COMPILER_TYPE} == "clang"
194 CLANG_NO_IAS=    -no-integrated-as
195 .endif
196 CLANG_OPT_SMALL= -mstack-alignment=8 -mllvm -inline-threshold=3\
197                  -mllvm -simplifycfg-dup-ret
198 .if ${COMPILER_VERSION} >= 30500 && ${COMPILER_VERSION} < 30700
199 CLANG_OPT_SMALL+= -mllvm -enable-gvn=false
200 .else
201 CLANG_OPT_SMALL+= -mllvm -enable-load-pre=false
202 .endif
203 CFLAGS.clang+=   -Qunused-arguments
204 .if ${MACHINE_CPUARCH} == "sparc64"
205 # Don't emit .cfi directives, since we must use GNU as on sparc64, for now.
206 CFLAGS.clang+=   -fno-dwarf2-cfi-asm
207 .endif # SPARC64
208 # The libc++ headers use c++11 extensions.  These are normally silenced because
209 # they are treated as system headers, but we explicitly disable that warning
210 # suppression when building the base system to catch bugs in our headers.
211 # Eventually we'll want to start building the base system C++ code as C++11,
212 # but not yet.
213 CXXFLAGS.clang+=         -Wno-c++11-extensions
214
215 .if ${MK_SSP} != "no" && \
216     ${MACHINE_CPUARCH} != "arm" && ${MACHINE_CPUARCH} != "mips"
217 .if (${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 30500) || \
218     (${COMPILER_TYPE} == "gcc" && \
219      (${COMPILER_VERSION} == 40201 || ${COMPILER_VERSION} >= 40900))
220 # Don't use -Wstack-protector as it breaks world with -Werror.
221 SSP_CFLAGS?=    -fstack-protector-strong
222 .else
223 SSP_CFLAGS?=    -fstack-protector
224 .endif
225 CFLAGS+=        ${SSP_CFLAGS}
226 .endif # SSP && !ARM && !MIPS
227
228 # Additional flags passed in CFLAGS and CXXFLAGS when MK_DEBUG_FILES is
229 # enabled.
230 DEBUG_FILES_CFLAGS?= -g
231
232 # Allow user-specified additional warning flags, plus compiler and file
233 # specific flag overrides, unless we've overridden this...
234 .if ${MK_WARNS} != "no"
235 CFLAGS+=        ${CWARNFLAGS:M*} ${CWARNFLAGS.${COMPILER_TYPE}}
236 CFLAGS+=        ${CWARNFLAGS.${.IMPSRC:T}}
237 .endif
238
239 CFLAGS+=         ${CFLAGS.${COMPILER_TYPE}}
240 CXXFLAGS+=       ${CXXFLAGS.${COMPILER_TYPE}}
241
242 AFLAGS+=        ${AFLAGS.${.IMPSRC:T}}
243 AFLAGS+=        ${AFLAGS.${.TARGET:T}}
244 ACFLAGS+=       ${ACFLAGS.${.IMPSRC:T}}
245 ACFLAGS+=       ${ACFLAGS.${.TARGET:T}}
246 CFLAGS+=        ${CFLAGS.${.IMPSRC:T}}
247 CXXFLAGS+=      ${CXXFLAGS.${.IMPSRC:T}}
248
249 LDFLAGS+=       ${LDFLAGS.${LINKER_TYPE}}
250
251 # Only allow .TARGET when not using PROGS as it has the same syntax
252 # per PROG which is ambiguous with this syntax. This is only needed
253 # for PROG_VARS vars.
254 .if !defined(_RECURSING_PROGS)
255 .if ${MK_WARNS} != "no"
256 CFLAGS+=        ${CWARNFLAGS.${.TARGET:T}}
257 .endif
258 CFLAGS+=        ${CFLAGS.${.TARGET:T}}
259 CXXFLAGS+=      ${CXXFLAGS.${.TARGET:T}}
260 LDFLAGS+=       ${LDFLAGS.${.TARGET:T}}
261 LDADD+=         ${LDADD.${.TARGET:T}}
262 LIBADD+=        ${LIBADD.${.TARGET:T}}
263 .endif
264
265 .if defined(SRCTOP)
266 # Prevent rebuilding during install to support read-only objdirs.
267 .if ${.TARGETS:M*install*} == ${.TARGETS} && empty(.MAKE.MODE:Mmeta)
268 CFLAGS+=        ERROR-tried-to-rebuild-during-make-install
269 .endif
270 .endif
271
272 # Tell bmake not to mistake standard targets for things to be searched for
273 # or expect to ever be up-to-date.
274 PHONY_NOTMAIN = analyze afterdepend afterinstall all beforedepend beforeinstall \
275                 beforelinking build build-tools buildconfig buildfiles \
276                 buildincludes check checkdpadd clean cleandepend cleandir \
277                 cleanobj configure depend distclean distribute exe \
278                 files html includes install installconfig installdirs \
279                 installfiles installincludes lint obj objlink objs objwarn \
280                 realinstall tags whereobj
281
282 # we don't want ${PROG} to be PHONY
283 .PHONY: ${PHONY_NOTMAIN:N${PROG:U}}
284 .NOTMAIN: ${PHONY_NOTMAIN:Nall}
285
286 .if ${MK_STAGING} != "no"
287 .if defined(_SKIP_BUILD) || (!make(all) && !make(clean*))
288 _SKIP_STAGING?= yes
289 .endif
290 .if ${_SKIP_STAGING:Uno} == "yes"
291 staging stage_libs stage_files stage_as stage_links stage_symlinks:
292 .else
293 # allow targets like beforeinstall to be leveraged
294 DESTDIR= ${STAGE_OBJTOP}
295 .export DESTDIR
296
297 .if target(beforeinstall)
298 .if !empty(_LIBS) || (${MK_STAGING_PROG} != "no" && !defined(INTERNALPROG))
299 staging: beforeinstall
300 .endif
301 .endif
302
303 # normally only libs and includes are staged
304 .if ${MK_STAGING_PROG} != "no" && !defined(INTERNALPROG)
305 STAGE_DIR.prog= ${STAGE_OBJTOP}${BINDIR}
306
307 .if !empty(PROG)
308 .if defined(PROGNAME)
309 STAGE_AS_SETS+= prog
310 STAGE_AS_${PROG}= ${PROGNAME}
311 stage_as.prog: ${PROG}
312 .else
313 STAGE_SETS+= prog
314 stage_files.prog: ${PROG}
315 STAGE_TARGETS+= stage_files
316 .endif
317 .endif
318 .endif
319
320 .if !empty(_LIBS) && !defined(INTERNALLIB)
321 .if defined(SHLIBDIR) && ${SHLIBDIR} != ${LIBDIR} && ${_LIBS:Uno:M*.so.*} != ""
322 STAGE_SETS+= shlib
323 STAGE_DIR.shlib= ${STAGE_OBJTOP}${SHLIBDIR}
324 STAGE_FILES.shlib+= ${_LIBS:M*.so.*}
325 stage_files.shlib: ${_LIBS:M*.so.*}
326 .endif
327
328 .if defined(SHLIB_LINK) && commands(${SHLIB_LINK:R}.ld)
329 STAGE_AS_SETS+= ldscript
330 STAGE_AS.ldscript+= ${SHLIB_LINK:R}.ld
331 stage_as.ldscript: ${SHLIB_LINK:R}.ld
332 STAGE_DIR.ldscript = ${STAGE_LIBDIR}
333 STAGE_AS_${SHLIB_LINK:R}.ld:= ${SHLIB_LINK}
334 NO_SHLIB_LINKS=
335 .endif
336
337 .if target(stage_files.shlib)
338 stage_libs: ${_LIBS}
339 .if defined(DEBUG_FLAGS) && target(${SHLIB_NAME}.symbols)
340 stage_files.shlib: ${SHLIB_NAME}.symbols
341 .endif
342 .else
343 stage_libs: ${_LIBS}
344 .endif
345 .if defined(SHLIB_NAME) && defined(DEBUG_FLAGS) && target(${SHLIB_NAME}.symbols)
346 stage_libs: ${SHLIB_NAME}.symbols
347 .endif
348
349 .endif
350
351 .if !empty(INCS) || !empty(INCSGROUPS) && target(buildincludes)
352 .if !defined(NO_BEFOREBUILD_INCLUDES)
353 stage_includes: buildincludes
354 beforebuild: stage_includes
355 .endif
356 .endif
357
358 .for t in stage_libs stage_files stage_as
359 .if target($t)
360 STAGE_TARGETS+= $t
361 .endif
362 .endfor
363
364 .if !empty(STAGE_AS_SETS)
365 STAGE_TARGETS+= stage_as
366 .endif
367
368 .if !empty(STAGE_TARGETS) || (${MK_STAGING_PROG} != "no" && !defined(INTERNALPROG))
369
370 .if !empty(LINKS)
371 STAGE_TARGETS+= stage_links
372 .if ${MAKE_VERSION} < 20131001
373 stage_links.links: ${_LIBS} ${PROG}
374 .endif
375 STAGE_SETS+= links
376 STAGE_LINKS.links= ${LINKS}
377 .endif
378
379 .if !empty(SYMLINKS)
380 STAGE_TARGETS+= stage_symlinks
381 STAGE_SETS+= links
382 STAGE_SYMLINKS.links= ${SYMLINKS}
383 .endif
384
385 .endif
386
387 .include <meta.stage.mk>
388 .endif
389 .endif
390
391 .if defined(META_TARGETS)
392 .for _tgt in ${META_TARGETS}
393 .if target(${_tgt})
394 ${_tgt}: ${META_DEPS}
395 .endif
396 .endfor
397 .endif