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 NO_WARNS. 8 9# for GCC: http://gcc.gnu.org/onlinedocs/gcc-3.0.4/gcc_3.html#IDX143 10 11# the default is gnu99 for now 12CSTD ?= gnu99 13 14.if ${CC} != "icc" 15. if ${CSTD} == "k&r" 16CFLAGS += -traditional 17. elif ${CSTD} == "c89" || ${CSTD} == "c90" 18CFLAGS += -std=iso9899:1990 19. elif ${CSTD} == "c94" || ${CSTD} == "c95" 20CFLAGS += -std=iso9899:199409 21. elif ${CSTD} == "c99" 22CFLAGS += -std=iso9899:1999 23. else 24CFLAGS += -std=${CSTD} 25. endif 26.endif 27.if !defined(NO_WARNS) && ${CC} != "icc" 28# -pedantic is problematic because it also imposes namespace restrictions 29#CFLAGS += -pedantic 30. if defined(WARNS) 31. if ${WARNS} >= 1 32CWARNFLAGS += -Wsystem-headers 33. if !defined(NO_WERROR) 34CWARNFLAGS += -Werror 35. endif 36. endif 37. if ${WARNS} >= 2 38CWARNFLAGS += -Wall -Wno-format-y2k 39. endif 40. if ${WARNS} >= 3 41CWARNFLAGS += -W -Wno-unused-parameter -Wstrict-prototypes\ 42 -Wmissing-prototypes -Wpointer-arith 43. endif 44. if ${WARNS} >= 4 45CWARNFLAGS += -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch\ 46 -Wshadow -Wcast-align -Wunused-parameter 47. endif 48# BDECFLAGS 49. if ${WARNS} >= 6 50CWARNFLAGS += -Wchar-subscripts -Winline -Wnested-externs\ 51 -Wredundant-decls -Wold-style-definition 52. endif 53. if ${WARNS} >= 2 && ${WARNS} <= 4 54# XXX Delete -Wuninitialized by default for now -- the compiler doesn't 55# XXX always get it right. 56CWARNFLAGS += -Wno-uninitialized 57. endif 58. if !defined(WITH_GCC3) 59CWARNFLAGS += -Wno-pointer-sign 60. endif 61. endif 62 63. if defined(FORMAT_AUDIT) 64WFORMAT = 1 65. endif 66. if defined(WFORMAT) 67. if ${WFORMAT} > 0 68#CWARNFLAGS += -Wformat-nonliteral -Wformat-security -Wno-format-extra-args 69CWARNFLAGS += -Wformat=2 -Wno-format-extra-args 70. if !defined(NO_WERROR) 71CWARNFLAGS += -Werror 72. endif 73. endif 74. endif 75.endif 76 77.if defined(IGNORE_PRAGMA) 78CWARNFLAGS += -Wno-unknown-pragmas 79.endif 80 81.if ${MK_SSP} != "no" && ${CC} != "icc" && ${MACHINE_ARCH} != "ia64" && \ 82 ${MACHINE_ARCH} != "arm" && ${MACHINE_ARCH} != "mips" 83# Don't use -Wstack-protector as it breaks world with -Werror. 84SSP_CFLAGS ?= -fstack-protector 85CFLAGS += ${SSP_CFLAGS} 86.endif 87 88# Allow user-specified additional warning flags 89CFLAGS += ${CWARNFLAGS} 90