mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Allow client Makefiles control over whether they want -pedantic by
defining NO_PEDANTIC. - Pedantic C89 is a painful language... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71545 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
429185787a
commit
e36b6d425f
@ -515,7 +515,10 @@ endif
|
||||
# Options To Invoke Tools
|
||||
#----------------------------------------------------------
|
||||
|
||||
CompileCommonOpts += -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
|
||||
ifndef NO_PEDANTIC
|
||||
CompileCommonOpts += -pedantic
|
||||
endif
|
||||
CompileCommonOpts += -Wall -W -Wwrite-strings -Wno-long-long \
|
||||
-Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
|
||||
|
||||
ifeq ($(OS),HP-UX)
|
||||
|
Loading…
Reference in New Issue
Block a user