From 3f840806b3c3504d826d29ce7c7c1d336c02adc7 Mon Sep 17 00:00:00 2001 From: nakeee Date: Thu, 5 Mar 2009 16:26:05 +0000 Subject: [PATCH] Scons changes: fastlog compiles DEBUGFAST devel doesn't compile with LOGGING (level 2 is enough). git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2560 8ced0084-cf51-0410-be5f-012b33b47a6e --- SConstruct | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/SConstruct b/SConstruct index 7179b14c0f..39e50add19 100644 --- a/SConstruct +++ b/SConstruct @@ -152,16 +152,14 @@ if not env['verbose']: flavour = ARGUMENTS.get('flavor') if (flavour == 'debug'): compileFlags.append('-g') - cppDefines.append('LOGGING') - cppDefines.append('_DEBUG') + cppDefines.append('_DEBUG') #enables LOGGING # FIXME: this disable wx debugging how do we make it work? cppDefines.append('NDEBUG') elif (flavour == 'devel'): compileFlags.append('-g') - cppDefines.append('DEBUGFAST') elif (flavour == 'fastlog'): compileFlags.append('-O3') - cppDefines.append('LOGGING') + cppDefines.append('DEBUGFAST') elif (flavour == 'prof'): compileFlags.append('-O3') compileFlags.append('-g')