diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-04-15 12:24:03 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-04-15 13:40:14 +0200 |
| commit | f9f625fb326d054a7398a9931f20ee40c737d858 (patch) | |
| tree | 53384b6d31da098b62f81f3a26018bf741c00393 /src | |
| parent | Rename make_windows_icon.py to .sh as it is a shell script (fixes #1099) (diff) | |
| download | discoin-f9f625fb326d054a7398a9931f20ee40c737d858.tar.xz discoin-f9f625fb326d054a7398a9931f20ee40c737d858.zip | |
enable all warnings except invalid-offsetof, sign-compare, unused-parameter
Diffstat (limited to 'src')
| -rw-r--r-- | src/makefile.osx | 2 | ||||
| -rw-r--r-- | src/makefile.unix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile.osx b/src/makefile.osx index c5d3edbdc..e2e35de5c 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -62,7 +62,7 @@ CFLAGS = -g endif # ppc doesn't work because we don't support big-endian -CFLAGS += -Wextra -Wno-sign-compare -Wno-char-subscripts -Wno-invalid-offsetof -Wformat-security \ +CFLAGS += -Wextra -Wno-sign-compare -Wno-invalid-offsetof -Wformat-security \ $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS) OBJS= \ diff --git a/src/makefile.unix b/src/makefile.unix index 79251dc7a..9bc780d53 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -81,7 +81,7 @@ LIBS+= \ DEBUGFLAGS=-g CXXFLAGS=-O2 -xCXXFLAGS=-pthread -Wextra -Wno-sign-compare -Wno-char-subscripts -Wno-invalid-offsetof -Wformat -Wformat-security \ +xCXXFLAGS=-pthread -Wall -Wextra -Wno-sign-compare -Wno-invalid-offsetof -Wno-unused-parameter -Wformat -Wformat-security \ $(DEBUGFLAGS) $(DEFS) $(HARDENING) $(CXXFLAGS) OBJS= \ |