Index: common.gypi |
=================================================================== |
--- a/common.gypi |
+++ b/common.gypi |
@@ -12,10 +12,10 @@ |
['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ |
or OS=="netbsd" or OS=="android"', { |
'target_defaults': { |
- 'cflags': [ '-Wall', '-W', '-Wno-unused-parameter', |
paco
2015/01/14 15:15:58
Since we're using `-Wall` the other flags are not
Wladimir Palant
2015/01/22 15:29:21
-W is not implied by -Wall (see http://gcc.gnu.org
Felix Dahlke
2015/02/02 14:12:37
Are these changes really necessary to fix the buil
|
- '-Wnon-virtual-dtor', '-pthread', '-fno-rtti', |
- '-pedantic', '-std=c++0x', '-fexceptions', ], |
+ 'cflags': [ '-Wall', '-pthread', '-fno-rtti', '-pedantic', |
+ '-std=c++0x', '-fexceptions', ], |
sergei
2015/01/22 14:14:14
previously there were spaces.
|
'ldflags': [ '-pthread', ], |
+ 'cflags!': [ '-Werror', ], |
paco
2015/01/14 15:15:58
We're gonna see the errors but we're not treating
Felix Dahlke
2015/02/02 14:12:37
I think it'd make sense to move this right below c
|
}, |
}], |
['OS=="mac"', { |