From e3a3a5378e4a1b45f30fcb26730d6c73e623cfac Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Wed, 29 Sep 2010 14:24:52 +0100 Subject: scons: New build= option, with support for checked builds. Where checked build is compiler optimizations plus debugging checks -- ideal for testing CPU bound loads and running test automation loads. --- scons/wcesdk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scons/wcesdk.py') diff --git a/scons/wcesdk.py b/scons/wcesdk.py index bf73c2d73f..e82f255c51 100644 --- a/scons/wcesdk.py +++ b/scons/wcesdk.py @@ -122,7 +122,7 @@ def get_wce600_paths(env): host_cpu = os.environ.get('_HOSTCPUTYPE', 'i386') target_cpu = os.environ.get('_TGTCPU', 'x86') - if env['debug']: + if env['build'] == 'debug': build = 'debug' else: build = 'retail' -- cgit v1.2.3