2 # This script includes generic build options:
3 # release/debug, target os, target arch, cross toolchain, build environment etc
8 print "Inside the Config SConscript"
9 # Map of host os and allowed target os (host: allowed target os)
11 'linux': ['linux', 'android', 'arduino', 'yocto', 'tizen'],
12 'windows': ['windows', 'android', 'arduino', 'tizen'],
13 'darwin': ['darwin', 'ios', 'android', 'arduino'],
16 # Map of os and allowed archs (os: allowed archs)
18 'linux': ['x86', 'x86_64', 'arm', 'arm64'],
19 'android': ['x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'armeabi-v7a-hard', 'arm64-v8a'],
20 'windows': ['x86', 'amd64', 'arm'],
21 'darwin': ['i386', 'x86_64'],
22 'ios': ['i386', 'x86_64', 'armv7', 'armv7s', 'arm64'],
23 'arduino': ['avr', 'arm'],
24 'yocto': ['x86', 'x86_64'],
28 host = platform.system().lower()
30 if not host_target_map.has_key(host):
31 print "\nError: Current system (%s) isn't supported\n" % host
34 ######################################################################
35 # Get build options (the optins from command line)
36 ######################################################################
37 target_os = ARGUMENTS.get('TARGET_OS', host).lower() # target os
39 if target_os not in host_target_map[host]:
40 print "\nError: Unknown target os: %s (Allow values: %s)\n" % (target_os, host_target_map[host])
43 default_arch = platform.machine()
44 if default_arch not in os_arch_map[target_os]:
45 default_arch = os_arch_map[target_os][0].lower()
47 target_arch = ARGUMENTS.get('TARGET_ARCH', default_arch) # target arch
49 ######################################################################
50 # Common build options (release, target os, target arch)
51 ######################################################################
52 help_vars = Variables()
53 help_vars.Add(BoolVariable('RELEASE', 'Build for release?', True)) # set to 'no', 'false' or 0 for debug
54 help_vars.Add(EnumVariable('TARGET_OS', 'Target platform', host, host_target_map[host]))
55 help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'ALL', ['ALL', 'IP', 'BT', 'BLE']))
56 help_vars.Add(EnumVariable('TARGET_ARCH', 'Target architecture', default_arch, os_arch_map[target_os]))
57 help_vars.Add(EnumVariable('SECURED', 'Build with DTLS', '0', allowed_values=('0', '1')))
58 help_vars.Add(EnumVariable('ROUTING', 'Enable routing', 'EP', allowed_values=('GW', 'EP')))
59 help_vars.Add(BoolVariable('WITH_PROXY', 'CoAP-HTTP Proxy', False)) # set to 'no', 'false' or 0 for debug
60 help_vars.Add(ListVariable('WITH_MQ', 'Build with MQ publisher/subscriber/broker', 'OFF', ['OFF', 'SUB', 'PUB', 'BROKER']))
61 help_vars.Add(BoolVariable('WITH_TCP', 'Build with TCP', False))
63 ######################################################################
64 # Platform(build target) specific options: SDK/NDK & toolchain
65 ######################################################################
66 targets_support_cc = ['linux', 'arduino', 'tizen']
68 if target_os in targets_support_cc:
69 # Set cross compile toolchain
70 help_vars.Add('TC_PREFIX', "Toolchain prefix (Generally only be required for cross-compiling)", os.environ.get('TC_PREFIX'))
71 help_vars.Add(PathVariable('TC_PATH',
72 'Toolchain path (Generally only be required for cross-compiling)',
73 os.environ.get('TC_PATH')))
75 if target_os in ['android', 'arduino']: # Android/Arduino always uses GNU compiler regardless of the host
76 env = Environment(variables = help_vars,
77 tools = ['gnulink', 'gcc', 'g++', 'ar', 'as']
80 env = Environment(variables = help_vars, TARGET_ARCH = target_arch, TARGET_OS = target_os)
82 Help(help_vars.GenerateHelpText(env))
85 ************************************ Warning **********************************
86 * Enviornment variable TC_PREFIX/TC_PATH is set. It will change the default *
87 * toolchain, if it isn't what you expect you should unset it, otherwise it may*
88 * cause inexplicable errors. *
89 *******************************************************************************
92 if target_os in targets_support_cc:
93 prefix = env.get('TC_PREFIX')
94 tc_path = env.get('TC_PATH')
96 env.Replace(CC = prefix + 'gcc')
97 env.Replace(CXX = prefix + 'g++')
98 env.Replace(AR = prefix + 'ar')
99 env.Replace(AS = prefix + 'as')
100 env.Replace(LINK = prefix + 'ld')
101 env.Replace(RANLIB = prefix + 'ranlib')
104 env.PrependENVPath('PATH', tc_path)
105 sys_root = os.path.abspath(tc_path + '/../')
106 env.AppendUnique(CCFLAGS = ['--sysroot=' + sys_root])
107 env.AppendUnique(LINKFLAGS = ['--sysroot=' + sys_root])
109 if prefix or tc_path:
112 # Ensure scons be able to change its working directory
113 env.SConscriptChdir(1)
115 # Set the source directory and build directory
116 # Source directory: 'dir'
117 # Build directory: 'dir'/out/<target_os>/<target_arch>/<release or debug>/
119 # You can get the directory as following:
121 # env.get('BUILD_DIR')
123 def __set_dir(env, dir):
124 if not os.path.exists(dir + '/SConstruct'):
126 *************************************** Error *********************************
127 * The directory(%s) seems isn't a source code directory, no SConstruct file is
129 *******************************************************************************
133 if env.get('RELEASE'):
134 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/release/'
136 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/debug/'
137 env.VariantDir(build_dir, dir, duplicate=0)
139 env.Replace(BUILD_DIR = build_dir)
140 env.Replace(SRC_DIR = dir)
142 def __src_to_obj(env, src, home = ''):
143 obj = env.get('BUILD_DIR') + src.replace(home, '')
144 if env.get('OBJSUFFIX'):
145 obj += env.get('OBJSUFFIX')
146 return env.Object(obj, src)
148 def __install(ienv, targets, name):
149 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
151 env.AppendUnique(TS = [name])
153 def __append_target(ienv, target):
154 env.AppendUnique(TS = [target])
156 def __print_targets(env):
158 ===============================================================================
160 for t in env.get('TS'):
163 \nDefault all targets will be built. You can specify the target to build:
165 $ scons [options] [target]
166 ===============================================================================
169 env.AddMethod(__set_dir, 'SetDir')
170 env.AddMethod(__print_targets, 'PrintTargets')
171 env.AddMethod(__src_to_obj, 'SrcToObj')
172 env.AddMethod(__append_target, 'AppendTarget')
173 env.AddMethod(__install, 'InstallTarget')
174 env.SetDir(env.GetLaunchDir())
175 env['ROOT_DIR']=env.GetLaunchDir()
177 env.AppendUnique(CPPDEFINES = ['TB_LOG'])
178 if env.get('ROUTING') == 'GW':
179 env.AppendUnique(CPPDEFINES = ['ROUTING_GATEWAY'])
180 elif env.get('ROUTING') == 'EP':
181 env.AppendUnique(CPPDEFINES = ['ROUTING_EP'])
182 env.AppendUnique(CPPDEFINES = ['__TIZEN__'])
183 if env.get('WITH_PROXY'):
184 env.AppendUnique(CPPDEFINES = ['WITH_CHPROXY'])
188 ######################################################################
189 # Link scons to Yocto cross-toolchain ONLY when target_os is yocto
190 ######################################################################
191 if target_os == "yocto":
193 This code injects Yocto cross-compilation tools+flags into scons'
194 build environment in order to invoke the relevant tools while
199 CC = os.environ['CC']
200 target_prefix = CC.split()[0]
201 target_prefix = target_prefix[:len(target_prefix)-3]
202 tools = {"CC" : target_prefix+"gcc",
203 "CXX" : target_prefix+"g++",
204 "AS" : target_prefix+"as",
205 "LD" : target_prefix+"ld",
206 "GDB" : target_prefix+"gdb",
207 "STRIP" : target_prefix+"strip",
208 "RANLIB" : target_prefix+"ranlib",
209 "OBJCOPY" : target_prefix+"objcopy",
210 "OBJDUMP" : target_prefix+"objdump",
211 "AR" : target_prefix+"ar",
212 "NM" : target_prefix+"nm",
214 "STRINGS": target_prefix+"strings"}
215 PATH = os.environ['PATH'].split(os.pathsep)
217 if tool in os.environ:
219 if os.path.isfile(os.path.join(path, tools[tool])):
220 env[tool] = os.path.join(path, os.environ[tool])
223 print "ERROR in Yocto cross-toolchain environment"
226 Now reset TARGET_OS to linux so that all linux specific build configurations
227 hereupon apply for the entirety of the build process.
229 env['TARGET_OS'] = 'linux'
231 We want to preserve debug symbols to allow BitBake to generate both DEBUG and
232 RELEASE packages for OIC.
234 env['CCFLAGS'].append('-g')
238 If target_os is not Yocto, continue with the regular build process
240 # Load config of target os
241 env.SConscript(target_os + '/SConscript')
243 # Delete the temp files of configuration
244 if env.GetOption('clean'):
245 dir = env.get('SRC_DIR')
247 if os.path.exists(dir + '/config.log'):
248 Execute(Delete(dir + '/config.log'))
249 Execute(Delete(dir + '/.sconsign.dblite'))
250 Execute(Delete(dir + '/.sconf_temp'))