Changing clang settings to c11, not c99, for MacOS

This commit is contained in:
Graham Nelson 2022-04-10 23:01:43 +01:00
parent fac68c3d8c
commit a2f8669f9e

View file

@ -20,8 +20,8 @@ INWEB = inweb/Tangled/inweb
# "INDULGENTCC" is for code from older or externally written projects, which
# wouldn't stand up to the same scrutiny.
CC = clang -std=c99 -c $(MANYWARNINGS) $(CCOPTS) -g
INDULGENTCC = clang -std=c99 -c $(FEWERWARNINGS) $(CCOPTS) -g
CC = clang -std=c11 -c $(MANYWARNINGS) $(CCOPTS) -g
INDULGENTCC = clang -std=c11 -c $(FEWERWARNINGS) $(CCOPTS) -g
# On Mac OS X, we assume the user has the Developer Tools installed: