2008-02-27 16:36:28 +08:00
|
|
|
#######################################################################
|
|
|
|
# Common SCons code
|
|
|
|
|
|
|
|
import os
|
|
|
|
import os.path
|
2010-04-10 09:41:39 +08:00
|
|
|
import subprocess
|
2008-02-27 16:36:28 +08:00
|
|
|
import sys
|
|
|
|
import platform as _platform
|
|
|
|
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Defaults
|
|
|
|
|
|
|
|
_platform_map = {
|
|
|
|
'linux2': 'linux',
|
2009-12-19 06:40:33 +08:00
|
|
|
'win32': 'windows',
|
2008-02-27 16:36:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
default_platform = sys.platform
|
|
|
|
default_platform = _platform_map.get(default_platform, default_platform)
|
|
|
|
|
|
|
|
_machine_map = {
|
|
|
|
'x86': 'x86',
|
|
|
|
'i386': 'x86',
|
|
|
|
'i486': 'x86',
|
|
|
|
'i586': 'x86',
|
|
|
|
'i686': 'x86',
|
2008-10-23 16:28:48 +08:00
|
|
|
'ppc' : 'ppc',
|
2008-02-27 16:36:28 +08:00
|
|
|
'x86_64': 'x86_64',
|
|
|
|
}
|
|
|
|
if 'PROCESSOR_ARCHITECTURE' in os.environ:
|
|
|
|
default_machine = os.environ['PROCESSOR_ARCHITECTURE']
|
|
|
|
else:
|
|
|
|
default_machine = _platform.machine()
|
|
|
|
default_machine = _machine_map.get(default_machine, 'generic')
|
|
|
|
|
2010-04-10 09:41:39 +08:00
|
|
|
if 'LLVM' in os.environ or subprocess.call(['llvm-config', '--version'], stdout=subprocess.PIPE) == 0:
|
|
|
|
default_llvm = 'yes'
|
|
|
|
else:
|
|
|
|
default_llvm = 'no'
|
|
|
|
|
2009-09-09 22:21:05 +08:00
|
|
|
if default_platform in ('linux', 'freebsd'):
|
2008-02-27 16:36:28 +08:00
|
|
|
default_dri = 'yes'
|
2009-09-09 22:21:05 +08:00
|
|
|
elif default_platform in ('winddk', 'windows', 'wince', 'darwin'):
|
2008-02-27 16:36:28 +08:00
|
|
|
default_dri = 'no'
|
|
|
|
else:
|
|
|
|
default_dri = 'no'
|
|
|
|
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Common options
|
|
|
|
|
2008-03-04 01:52:37 +08:00
|
|
|
def AddOptions(opts):
|
2008-04-30 23:58:04 +08:00
|
|
|
try:
|
|
|
|
from SCons.Variables.BoolVariable import BoolVariable as BoolOption
|
|
|
|
except ImportError:
|
2009-05-01 23:12:17 +08:00
|
|
|
from SCons.Options.BoolOption import BoolOption
|
|
|
|
try:
|
2008-04-30 23:58:04 +08:00
|
|
|
from SCons.Variables.EnumVariable import EnumVariable as EnumOption
|
2009-05-01 23:12:17 +08:00
|
|
|
except ImportError:
|
|
|
|
from SCons.Options.EnumOption import EnumOption
|
2010-04-10 09:44:52 +08:00
|
|
|
opts.Add(BoolOption('debug', 'debug build', 'yes'))
|
2008-05-24 18:25:02 +08:00
|
|
|
opts.Add(BoolOption('profile', 'profile build', 'no'))
|
2009-06-03 09:23:12 +08:00
|
|
|
opts.Add(BoolOption('quiet', 'quiet command lines', 'yes'))
|
2008-02-27 16:36:28 +08:00
|
|
|
opts.Add(EnumOption('machine', 'use machine-specific assembly code', default_machine,
|
2008-10-23 16:28:48 +08:00
|
|
|
allowed_values=('generic', 'ppc', 'x86', 'x86_64')))
|
2008-02-27 16:36:28 +08:00
|
|
|
opts.Add(EnumOption('platform', 'target platform', default_platform,
|
2010-01-27 04:58:11 +08:00
|
|
|
allowed_values=('linux', 'cell', 'windows', 'winddk', 'wince', 'darwin', 'embedded')))
|
2010-03-09 03:58:34 +08:00
|
|
|
opts.Add('toolchain', 'compiler toolchain', 'default')
|
2010-04-10 09:41:39 +08:00
|
|
|
opts.Add(BoolOption('llvm', 'use LLVM', default_llvm))
|
2008-02-27 16:36:28 +08:00
|
|
|
opts.Add(BoolOption('dri', 'build DRI drivers', default_dri))
|