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': ['i586', 'x86_64', 'arm', 'powerpc', 'powerpc64', 'mips', 'mipsel'],
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 if target_os == 'android':
46 default_arch = platform.machine()
48 if default_arch not in os_arch_map[target_os]:
49 default_arch = os_arch_map[target_os][0].lower()
51 target_arch = ARGUMENTS.get('TARGET_ARCH', default_arch) # target arch
53 # True if binary needs to be installed on board. (Might need root permissions)
54 # set to 'no', 'false' or 0 for only compilation
55 require_upload = ARGUMENTS.get('UPLOAD', False)
57 # Get the device name. This name can be used as network display name wherever possible
58 device_name = ARGUMENTS.get('DEVICE_NAME', "OIC-DEVICE")
60 if ARGUMENTS.get('TEST'):
61 logging_default = False
64 if ARGUMENTS.get('RELEASE', True) in ['y', 'yes', 'true', 't', '1', 'on', 'all', True]:
66 logging_default = (release_mode == False)
70 ######################################################################
71 # Common build options (release, target os, target arch)
72 ######################################################################
73 targets_disallow_multitransport = ['arduino', 'android']
75 help_vars = Variables()
76 help_vars.Add(BoolVariable('VERBOSE', 'Show compilation', False))
77 help_vars.Add(BoolVariable('RELEASE', 'Build for release?', True)) # set to 'no', 'false' or 0 for debug
78 help_vars.Add(EnumVariable('TARGET_OS', 'Target platform', host, host_target_map[host]))
81 help_vars.Add(BoolVariable('WITH_RA', 'Build with Remote Access module', False))
83 if target_os in targets_disallow_multitransport:
84 help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'IP', ['BT', 'BLE', 'IP']))
86 help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'ALL', ['ALL', 'BT', 'BLE', 'IP']))
88 help_vars.Add(EnumVariable('TARGET_ARCH', 'Target architecture', default_arch, os_arch_map[target_os]))
89 help_vars.Add(EnumVariable('SECURED', 'Build with DTLS', '0', allowed_values=('0', '1')))
90 help_vars.Add(EnumVariable('TEST', 'Run unit tests', '0', allowed_values=('0', '1')))
91 help_vars.Add(BoolVariable('LOGGING', 'Enable stack logging', logging_default))
92 help_vars.Add(BoolVariable('UPLOAD', 'Upload binary ? (For Arduino)', require_upload))
93 help_vars.Add(EnumVariable('BUILD_SAMPLE', 'Build with sample', 'ON', allowed_values=('ON', 'OFF')))
94 help_vars.AddVariables(('DEVICE_NAME', 'Network display name for device (For Arduino)', device_name, None, None),)
102 help='installation prefix')
104 ######################################################################
105 # Platform(build target) specific options: SDK/NDK & toolchain
106 ######################################################################
107 targets_support_cc = ['linux', 'arduino', 'tizen']
109 if target_os in targets_support_cc:
110 # Set cross compile toolchain
111 help_vars.Add('TC_PREFIX', "Toolchain prefix (Generally only be required for cross-compiling)", os.environ.get('TC_PREFIX'))
112 help_vars.Add(PathVariable('TC_PATH',
113 'Toolchain path (Generally only be required for cross-compiling)',
114 os.environ.get('TC_PATH')))
116 if target_os in ['android', 'arduino']: # Android/Arduino always uses GNU compiler regardless of the host
117 env = Environment(variables = help_vars,
118 tools = ['gnulink', 'gcc', 'g++', 'ar', 'as']
121 env = Environment(variables = help_vars, TARGET_ARCH = target_arch, TARGET_OS = target_os, PREFIX = GetOption('prefix'))
123 Help(help_vars.GenerateHelpText(env))
126 ************************************ Warning **********************************
127 * Enviornment variable TC_PREFIX/TC_PATH is set. It will change the default *
128 * toolchain, if it isn't what you expect you should unset it, otherwise it may*
129 * cause inexplicable errors. *
130 *******************************************************************************
132 if env.get('VERBOSE') == False:
133 env['CCCOMSTR'] = "Compiling $TARGET"
134 env['SHCCCOMSTR'] = "Compiling $TARGET"
135 env['CXXCOMSTR'] = "Compiling $TARGET"
136 env['SHCXXCOMSTR'] = "Compiling $TARGET"
137 env['LINKCOMSTR'] = "Linking $TARGET"
138 env['SHLINKCOMSTR'] = "Linking $TARGET"
139 env['ARCOMSTR'] = "Archiving $TARGET"
140 env['RANLIBCOMSTR'] = "Indexing Archive $TARGET"
142 if target_os in targets_support_cc:
143 prefix = env.get('TC_PREFIX')
144 tc_path = env.get('TC_PATH')
146 env.Replace(CC = prefix + env.get('CC', 'gcc'))
147 env.Replace(CXX = prefix + env.get('CXX', 'g++'))
148 env.Replace(AR = prefix + env.get('AR', 'ar'))
149 env.Replace(AS = prefix + env.get('AS', 'as'))
150 env.Replace(RANLIB = prefix + env.get('RANLIB', 'ranlib'))
153 env.PrependENVPath('PATH', tc_path)
154 sys_root = os.path.abspath(tc_path + '/../')
155 env.AppendUnique(CCFLAGS = ['--sysroot=' + sys_root])
156 env.AppendUnique(LINKFLAGS = ['--sysroot=' + sys_root])
158 if prefix or tc_path:
161 # Ensure scons be able to change its working directory
162 env.SConscriptChdir(1)
164 # Set the source directory and build directory
165 # Source directory: 'dir'
166 # Build directory: 'dir'/out/<target_os>/<target_arch>/<release or debug>/
168 # You can get the directory as following:
170 # env.get('BUILD_DIR')
172 def __set_dir(env, dir):
173 if not os.path.exists(dir + '/SConstruct'):
175 *************************************** Error *********************************
176 * The directory(%s) seems isn't a source code directory, no SConstruct file is
178 *******************************************************************************
182 if env.get('RELEASE'):
183 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/release/'
185 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/debug/'
186 env.VariantDir(build_dir, dir, duplicate=0)
188 env.Replace(BUILD_DIR = build_dir)
189 env.Replace(SRC_DIR = dir)
191 def __src_to_obj(env, src, home = ''):
192 obj = env.get('BUILD_DIR') + src.replace(home, '')
193 if env.get('OBJSUFFIX'):
194 obj += env.get('OBJSUFFIX')
195 return env.Object(obj, src)
197 def __install(ienv, targets, name):
198 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
200 env.AppendUnique(TS = [name])
202 def __installlib(ienv, targets, name):
203 user_prefix = env.get('PREFIX')
205 i_n = ienv.Install(user_prefix + '/lib', targets)
207 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
208 ienv.Alias("install", i_n)
210 def __installbin(ienv, targets, name):
211 user_prefix = env.get('PREFIX')
213 i_n = ienv.Install(user_prefix + '/bin', targets)
215 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
216 ienv.Alias("install", i_n)
218 def __append_target(ienv, name, targets = None):
220 env.Alias(name, targets)
221 env.AppendUnique(TS = [name])
223 def __print_targets(env):
225 ===============================================================================
227 for t in env.get('TS'):
230 \nDefault all targets will be built. You can specify the target to build:
232 $ scons [options] [target]
233 ===============================================================================
236 env.AddMethod(__set_dir, 'SetDir')
237 env.AddMethod(__print_targets, 'PrintTargets')
238 env.AddMethod(__src_to_obj, 'SrcToObj')
239 env.AddMethod(__append_target, 'AppendTarget')
240 env.AddMethod(__install, 'InstallTarget')
241 env.AddMethod(__installlib, 'UserInstallTargetLib')
242 env.AddMethod(__installbin, 'UserInstallTargetBin')
243 env.SetDir(env.GetLaunchDir())
244 env['ROOT_DIR']=env.GetLaunchDir()+'/..'
248 ######################################################################
249 # Link scons to Yocto cross-toolchain ONLY when target_os is yocto
250 ######################################################################
251 if target_os == "yocto":
253 This code injects Yocto cross-compilation tools+flags into scons'
254 build environment in order to invoke the relevant tools while
259 CC = os.environ['CC']
260 target_prefix = CC.split()[0]
261 target_prefix = target_prefix[:len(target_prefix)-3]
262 tools = {"CC" : target_prefix+"gcc",
263 "CXX" : target_prefix+"g++",
264 "AS" : target_prefix+"as",
265 "LD" : target_prefix+"ld",
266 "GDB" : target_prefix+"gdb",
267 "STRIP" : target_prefix+"strip",
268 "RANLIB" : target_prefix+"ranlib",
269 "OBJCOPY" : target_prefix+"objcopy",
270 "OBJDUMP" : target_prefix+"objdump",
271 "AR" : target_prefix+"ar",
272 "NM" : target_prefix+"nm",
274 "STRINGS": target_prefix+"strings"}
275 PATH = os.environ['PATH'].split(os.pathsep)
277 if tool in os.environ:
279 if os.path.isfile(os.path.join(path, tools[tool])):
280 env[tool] = os.path.join(path, os.environ[tool])
282 env['CROSS_COMPILE'] = target_prefix[:len(target_prefix) - 1]
284 print "ERROR in Yocto cross-toolchain environment"
287 Now reset TARGET_OS to linux so that all linux specific build configurations
288 hereupon apply for the entirety of the build process.
290 env['TARGET_OS'] = 'linux'
292 We want to preserve debug symbols to allow BitBake to generate both DEBUG and
293 RELEASE packages for OIC.
295 env.AppendUnique(CCFLAGS = ['-g'])
297 Additional flags to pass to the Yocto toolchain.
299 if env.get('RELEASE'):
300 env.AppendUnique(CPPDEFINES = ['NDEBUG'])
301 if env.get('LOGGING'):
302 env.AppendUnique(CPPDEFINES = ['TB_LOG'])
303 env.AppendUnique(CPPDEFINES = ['WITH_POSIX', '__linux__', '_GNU_SOURCE'])
304 env.AppendUnique(CFLAGS = ['-std=gnu99'])
305 env.AppendUnique(CCFLAGS = ['-Wall', '-fPIC'])
306 env.AppendUnique(LINKFLAGS = ['-ldl', '-lpthread'])
307 env.AppendUnique(LIBS = ['uuid'])
311 If target_os is not Yocto, continue with the regular build process
313 # Load config of target os
314 env.SConscript(target_os + '/SConscript')
316 # Delete the temp files of configuration
317 if env.GetOption('clean'):
318 dir = env.get('SRC_DIR')
320 if os.path.exists(dir + '/config.log'):
321 Execute(Delete(dir + '/config.log'))
322 if os.path.exists(dir + '/.sconsign.dblite'):
323 Execute(Delete(dir + '/.sconsign.dblite'))
324 if os.path.exists(dir + '/.sconf_temp'):
325 Execute(Delete(dir + '/.sconf_temp'))
327 ######################################################################
328 # Check for PThreads support
329 ######################################################################
330 import iotivityconfig
331 from iotivityconfig import *
333 conf = Configure(env,
336 'CheckPThreadsSupport' : iotivityconfig.check_pthreads
339 # Identify whether we have pthreads support, which is necessary for
340 # threading and mutexes. This will set the environment variable
341 # POSIX_SUPPORTED, 1 if it is supported, 0 otherwise
342 conf.CheckPThreadsSupport()
345 ######################################################################
347 env.SConscript('external_libs.scons')