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