Added "-fno-exceptions" to compile flags, so GCC knows we do not use exceptions and can generate more efficient code.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@579 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Maarten ter Huurne 2008-09-18 10:06:55 +00:00
parent a3fbbff516
commit dae082e59e

View File

@ -17,6 +17,7 @@ warnings = [
#'unreachable-code', #'unreachable-code',
] ]
compileFlags = [ compileFlags = [
'-fno-exceptions',
'-fno-strict-aliasing', '-fno-strict-aliasing',
'-msse2', '-msse2',
'-D_FILE_OFFSET_BITS=64', '-D_FILE_OFFSET_BITS=64',