After party

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5601 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2010-06-04 05:21:46 +00:00
parent 1fa79f1f99
commit 1435c2527a
2 changed files with 4 additions and 4 deletions

View File

@ -27,9 +27,6 @@ warnings = [
'no-conversion',
]
# XXX check for the availability of these (in GCC 4.3 or newer)
if sys.platform != 'darwin':
warnings.append('no-array-bounds')
warnings.append('no-unused-result')
compileFlags = [
'-fno-exceptions',
@ -213,6 +210,9 @@ elif (flavour == 'release'):
# more warnings
if env['lint']:
warnings.append('error')
if sys.platform != 'darwin':
warnings.append('no-array-bounds')
warnings.append('no-unused-result')
#warnings.append('unreachable-code')
#warnings.append('float-equal')