aboutsummaryrefslogtreecommitdiff
path: root/tools/build
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2024-01-01 06:12:54 +0000
committerWarner Losh <imp@FreeBSD.org>2024-01-01 06:14:08 +0000
commit259e6fefc0adc5f253920922653e868ab2cbe373 (patch)
tree27d1dc0345e4585652ea5b1ef8a831eedec39013 /tools/build
parent39e39ba0567215e7836b93ee33f08b5f154858bd (diff)
downloadsrc-259e6fefc0adc5f253920922653e868ab2cbe373.tar.gz
src-259e6fefc0adc5f253920922653e868ab2cbe373.zip
test-includes: Add -ansi to the compile line to catch problems
We support C89 files, but compile everything in the tree with C99 or newer. By compiling these -ansi, that will force C89 which doesn't understand inline. All our header files must use __inline instead of inline when they define inline functions. Sponsored by: Netflix Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D43235
Diffstat (limited to 'tools/build')
-rw-r--r--tools/build/test-includes/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/build/test-includes/Makefile b/tools/build/test-includes/Makefile
index 174c4341331c..2c25e0fb32ce 100644
--- a/tools/build/test-includes/Makefile
+++ b/tools/build/test-includes/Makefile
@@ -22,6 +22,10 @@ NO_PIC= yes
# Some files have to be clean for extra defines too...
CFLAGS.event.c= -D_WANT_KEVENT32 -D_WANT_FREEBSD11_KEVENT
+# We currently support C89 and newer compilers. Catch the odd little fussy
+# details like __inline that the header files must follow to support C89.
+CFLAGS+=-ansi
+
.include "badfiles.inc"
.for h c in ${HDRS:@x@$x ${x:S,/,_,g:R}.c@}