Make it possible to customize warnings
The code uses some constructs that cause compilers to spit out warnings. As they do no harm, one should be able to turn off such warnings and enable others if needed.
This commit is contained in:
parent
c89d60c79b
commit
0fbd9595a7
@ -225,7 +225,9 @@ customflags =
|
||||
|
||||
# ---------------------- END OF CUSTOMIZABLE OPTIONS -------------------------
|
||||
|
||||
CFLAGS = -g $(sysconfigflags) $(prereleaseflags)
|
||||
# Disable certain warnings as we don't care for them
|
||||
CWARNINGS = -Wno-parentheses -Wno-switch-enum
|
||||
CFLAGS = -g $(sysconfigflags) $(prereleaseflags) $(CWARNINGS)
|
||||
|
||||
# Don't worry about these -- for development purposes only.
|
||||
PURIFY = purify
|
||||
|
Loading…
Reference in New Issue
Block a user