- Timestamp:
- 08/21/07 07:54:40 (16 years ago)
- Files:
-
- branches/libffado-scons_porting_work/SConstruct (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/libffado-scons_porting_work/SConstruct
r531 r534 8 8 if not os.path.isdir( "cache" ): 9 9 os.mkdir( "cache" ) 10 os.mkdir( "cache/objects" ) 10 11 11 12 opts = Options( "cache/options.cache" ) … … 43 44 opts.Save( "cache/options.cache", env ) 44 45 46 CacheDir( 'cache/objects' ) 47 45 48 if not env.GetOption('clean'): 46 49 conf = Configure( env, custom_tests={ 'CheckForPKGConfig' : CheckForPKGConfig, 'CheckForPKG' : CheckForPKG }, conf_dir='cache', log_file='cache/config.log' ) … … 73 76 # -Werror could be added to, which would force the devs to really remove all the warnings :-) 74 77 env.AppendUnique( CCFLAGS=["-DDEBUG","-Wall","-g"] ) 78 else: 79 env.AppendUnique( CCFLAGS=["-O2"] ) 75 80 76 81