2 # This script includes generic build options:
3 # release/debug, target os, target arch, cross toolchain, build environment etc
8 # Map of host os and allowed target os (host: allowed target os)
10 'linux': ['linux', 'android', 'arduino', 'yocto', 'tizen'],
11 'windows': ['windows', 'winrt', 'android', 'arduino'],
12 'darwin': ['darwin', 'ios', 'android', 'arduino'],
15 # Map of os and allowed archs (os: allowed archs)
17 'linux': ['x86', 'x86_64', 'arm', 'arm64'],
18 'tizen': ['x86', 'x86_64', 'arm', 'arm64', 'armeabi-v7a'],
19 'android': ['x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'armeabi-v7a-hard', 'arm64-v8a'],
20 'windows': ['x86', 'amd64', 'arm'],
22 'darwin': ['i386', 'x86_64'],
23 'ios': ['i386', 'x86_64', 'armv7', 'armv7s', 'arm64'],
24 'arduino': ['avr', 'arm'],
25 '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 # True if binary needs to be installed on board. (Might need root permissions)
50 # set to 'no', 'false' or 0 for only compilation
51 require_upload = ARGUMENTS.get('UPLOAD', False)
53 if ARGUMENTS.get('TEST'):
54 logging_default = False
56 logging_default = (ARGUMENTS.get('RELEASE', True) == 'false')
60 ######################################################################
61 # Common build options (release, target os, target arch)
62 ######################################################################
63 targets_disallow_multitransport = ['arduino']
65 help_vars = Variables()
66 help_vars.Add(BoolVariable('VERBOSE', 'Show compilation', False))
67 help_vars.Add(BoolVariable('RELEASE', 'Build for release?', True)) # set to 'no', 'false' or 0 for debug
68 help_vars.Add(EnumVariable('TARGET_OS', 'Target platform', host, host_target_map[host]))
70 if target_os in targets_disallow_multitransport:
71 help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'ETHERNET', ['WIFI', 'BT', 'BLE', 'ETHERNET']))
73 help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'ALL', ['ALL', 'WIFI', 'BT', 'BLE', 'ETHERNET']))
75 help_vars.Add(EnumVariable('TARGET_ARCH', 'Target architecture', default_arch, os_arch_map[target_os]))
76 help_vars.Add(EnumVariable('SECURED', 'Build with DTLS', '0', allowed_values=('0', '1')))
77 help_vars.Add(EnumVariable('TEST', 'Run unit tests', '0', allowed_values=('0', '1')))
78 help_vars.Add(BoolVariable('LOGGING', 'Enable stack logging', logging_default))
79 help_vars.Add(BoolVariable('UPLOAD', 'Upload binary ? (For Arduino)', require_upload))
80 help_vars.Add(EnumVariable('BUILD_SAMPLE', 'Build with sample', 'ON', allowed_values=('ON', 'OFF')))
81 ######################################################################
82 # Platform(build target) specific options: SDK/NDK & toolchain
83 ######################################################################
84 targets_support_cc = ['linux', 'arduino', 'tizen']
86 if target_os in targets_support_cc:
87 # Set cross compile toolchain
88 help_vars.Add('TC_PREFIX', "Toolchain prefix (Generally only be required for cross-compiling)", os.environ.get('TC_PREFIX'))
89 help_vars.Add(PathVariable('TC_PATH',
90 'Toolchain path (Generally only be required for cross-compiling)',
91 os.environ.get('TC_PATH')))
93 if target_os in ['android', 'arduino']: # Android/Arduino always uses GNU compiler regardless of the host
94 env = Environment(variables = help_vars,
95 tools = ['gnulink', 'gcc', 'g++', 'ar', 'as']
98 env = Environment(variables = help_vars, TARGET_ARCH = target_arch, TARGET_OS = target_os)
100 Help(help_vars.GenerateHelpText(env))
103 ************************************ Warning **********************************
104 * Enviornment variable TC_PREFIX/TC_PATH is set. It will change the default *
105 * toolchain, if it isn't what you expect you should unset it, otherwise it may*
106 * cause inexplicable errors. *
107 *******************************************************************************
109 if env.get('VERBOSE') == False:
110 env['CCCOMSTR'] = "Compiling $TARGET"
111 env['CXXCOMSTR'] = "Compiling $TARGET"
112 env['LINKCOMSTR'] = "Linking $TARGET"
113 env['ARCOMSTR'] = "Archiving $TARGET"
114 env['RANLIBCOMSTR'] = "Indexing Archive $TARGET"
116 if target_os in targets_support_cc:
117 prefix = env.get('TC_PREFIX')
118 tc_path = env.get('TC_PATH')
120 env.Replace(CC = prefix + 'gcc')
121 env.Replace(CXX = prefix + 'g++')
122 env.Replace(AR = prefix + 'ar')
123 env.Replace(AS = prefix + 'as')
124 env.Replace(LINK = prefix + 'ld')
125 env.Replace(RANLIB = prefix + 'ranlib')
128 env.PrependENVPath('PATH', tc_path)
129 sys_root = os.path.abspath(tc_path + '/../')
130 env.AppendUnique(CCFLAGS = ['--sysroot=' + sys_root])
131 env.AppendUnique(LINKFLAGS = ['--sysroot=' + sys_root])
133 if prefix or tc_path:
136 # Ensure scons be able to change its working directory
137 env.SConscriptChdir(1)
139 # Set the source directory and build directory
140 # Source directory: 'dir'
141 # Build directory: 'dir'/out/<target_os>/<target_arch>/<release or debug>/
143 # You can get the directory as following:
145 # env.get('BUILD_DIR')
147 def __set_dir(env, dir):
148 if not os.path.exists(dir + '/SConstruct'):
150 *************************************** Error *********************************
151 * The directory(%s) seems isn't a source code directory, no SConstruct file is
153 *******************************************************************************
157 if env.get('RELEASE'):
158 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/release/'
160 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/debug/'
161 env.VariantDir(build_dir, dir, duplicate=0)
163 env.Replace(BUILD_DIR = build_dir)
164 env.Replace(SRC_DIR = dir)
166 def __src_to_obj(env, src, home = ''):
167 obj = env.get('BUILD_DIR') + src.replace(home, '')
168 if env.get('OBJSUFFIX'):
169 obj += env.get('OBJSUFFIX')
170 return env.Object(obj, src)
172 def __install(ienv, targets, name):
173 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
175 env.AppendUnique(TS = [name])
177 def __append_target(ienv, target):
178 env.AppendUnique(TS = [target])
180 def __print_targets(env):
182 ===============================================================================
184 for t in env.get('TS'):
187 \nDefault all targets will be built. You can specify the target to build:
189 $ scons [options] [target]
190 ===============================================================================
193 env.AddMethod(__set_dir, 'SetDir')
194 env.AddMethod(__print_targets, 'PrintTargets')
195 env.AddMethod(__src_to_obj, 'SrcToObj')
196 env.AddMethod(__append_target, 'AppendTarget')
197 env.AddMethod(__install, 'InstallTarget')
198 env.SetDir(env.GetLaunchDir())
199 env['ROOT_DIR']=env.GetLaunchDir()+'/..'
203 ######################################################################
204 # Link scons to Yocto cross-toolchain ONLY when target_os is yocto
205 ######################################################################
206 if target_os == "yocto":
208 This code injects Yocto cross-compilation tools+flags into scons'
209 build environment in order to invoke the relevant tools while
214 CC = os.environ['CC']
215 target_prefix = CC.split()[0]
216 target_prefix = target_prefix[:len(target_prefix)-3]
217 tools = {"CC" : target_prefix+"gcc",
218 "CXX" : target_prefix+"g++",
219 "AS" : target_prefix+"as",
220 "LD" : target_prefix+"ld",
221 "GDB" : target_prefix+"gdb",
222 "STRIP" : target_prefix+"strip",
223 "RANLIB" : target_prefix+"ranlib",
224 "OBJCOPY" : target_prefix+"objcopy",
225 "OBJDUMP" : target_prefix+"objdump",
226 "AR" : target_prefix+"ar",
227 "NM" : target_prefix+"nm",
229 "STRINGS": target_prefix+"strings"}
230 PATH = os.environ['PATH'].split(os.pathsep)
232 if tool in os.environ:
234 if os.path.isfile(os.path.join(path, tools[tool])):
235 env[tool] = os.path.join(path, os.environ[tool])
238 print "ERROR in Yocto cross-toolchain environment"
241 Now reset TARGET_OS to linux so that all linux specific build configurations
242 hereupon apply for the entirety of the build process.
244 env['TARGET_OS'] = 'linux'
246 We want to preserve debug symbols to allow BitBake to generate both DEBUG and
247 RELEASE packages for OIC.
249 env['CCFLAGS'].append('-g')
253 If target_os is not Yocto, continue with the regular build process
255 # Load config of target os
256 if target_os in ['linux', 'tizen']:
257 env.SConscript('linux/SConscript')
259 env.SConscript(target_os + '/SConscript')
261 env.SConscript('external_libs.scons')
263 # Delete the temp files of configuration
264 if env.GetOption('clean'):
265 dir = env.get('SRC_DIR')
267 if os.path.exists(dir + '/config.log'):
268 Execute(Delete(dir + '/config.log'))
269 Execute(Delete(dir + '/.sconsign.dblite'))
270 Execute(Delete(dir + '/.sconf_temp'))