diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-11-29 17:39:20 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-11-29 17:39:20 -0300 |
commit | 62afbc6bfce222ebe745863131f952f6fce5eafb (patch) | |
tree | 92e8f068a9e1415f6846769c653b910660de0ad4 /makefile | |
parent | 002beeebe79065e03dd9f531bee367e8459e3f64 (diff) | |
download | lua-62afbc6bfce222ebe745863131f952f6fce5eafb.tar.gz lua-62afbc6bfce222ebe745863131f952f6fce5eafb.tar.bz2 lua-62afbc6bfce222ebe745863131f952f6fce5eafb.zip |
Details
Added two warnings to the makefile.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,12 +15,12 @@ CWARNSCPP= \ | |||
15 | -Wdouble-promotion \ | 15 | -Wdouble-promotion \ |
16 | -Wmissing-declarations \ | 16 | -Wmissing-declarations \ |
17 | -Wconversion \ | 17 | -Wconversion \ |
18 | -Wuninitialized \ | ||
19 | -Wstrict-overflow=2 \ | ||
18 | # the next warnings might be useful sometimes, | 20 | # the next warnings might be useful sometimes, |
19 | # but usually they generate too much noise | 21 | # but usually they generate too much noise |
20 | # -Werror \ | 22 | # -Werror \ |
21 | # -pedantic # warns if we use jump tables \ | 23 | # -pedantic # warns if we use jump tables \ |
22 | # -Wsign-conversion \ | ||
23 | # -Wstrict-overflow=2 \ | ||
24 | # -Wformat=2 \ | 24 | # -Wformat=2 \ |
25 | # -Wcast-qual \ | 25 | # -Wcast-qual \ |
26 | 26 | ||