Lines Matching refs:platform
5 To add a platform:
7 - add tool initialization for this platform. Search for "if platform == 'suncc'" as an example.
18 options.Add( EnumVariable('platform',
25 platform = ARGUMENTS['platform']
26 if platform == 'linux-gcc':
30 platform = 'linux-gcc-%s' %version
31 print "Using platform '%s'" %platform
33 LD_LIBRARY_PATH = "%s:libs/%s" %(LD_LIBRARY_PATH, platform)
37 print 'You must specify a "platform"'
40 print "Building using PLATFORM =", platform
43 build_dir = os.path.join( '#buildscons', platform )
44 bin_dir = os.path.join( '#bin', platform )
45 lib_dir = os.path.join( '#libs', platform )
72 if platform == 'suncc':
77 elif platform == 'vacpp':
85 elif platform == 'msvc6':
90 elif platform == 'msvc70':
95 elif platform == 'msvc71':
100 elif platform == 'msvc80':
105 elif platform == 'msvc90':
107 # Scons 1.2 fails to detect the correct location of the platform SDK.
117 elif platform == 'mingw':
120 elif platform.startswith('linux-gcc'):
134 short_platform = platform