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))
82 help_vars.Add(EnumVariable('WITH_RD', 'Build including Resource Directory', '0', allowed_values=('0', '1')))
84 help_vars.Add(BoolVariable('SIMULATOR', 'Build with simulator module', False))
86 help_vars.Add(BoolVariable('WITH_RA_IBB', 'Build with Remote Access module(workssys)', False))
89 if target_os in targets_disallow_multitransport:
90 help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'IP', ['BT', 'BLE', 'IP']))
92 help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'ALL', ['ALL', 'BT', 'BLE', 'IP', 'TCP']))
94 help_vars.Add(EnumVariable('TARGET_ARCH', 'Target architecture', default_arch, os_arch_map[target_os]))
95 help_vars.Add(EnumVariable('SECURED', 'Build with DTLS', '0', allowed_values=('0', '1')))
96 help_vars.Add(EnumVariable('DTLS_WITH_X509', 'DTLS with X.509 support', '0', allowed_values=('0', '1')))
97 help_vars.Add(EnumVariable('TEST', 'Run unit tests', '0', allowed_values=('0', '1')))
98 help_vars.Add(BoolVariable('LOGGING', 'Enable stack logging', logging_default))
99 help_vars.Add(BoolVariable('UPLOAD', 'Upload binary ? (For Arduino)', require_upload))
100 help_vars.Add(EnumVariable('ROUTING', 'Enable routing', 'EP', allowed_values=('GW', 'EP')))
101 help_vars.Add(EnumVariable('BUILD_SAMPLE', 'Build with sample', 'ON', allowed_values=('ON', 'OFF')))
102 help_vars.AddVariables(('DEVICE_NAME', 'Network display name for device (For Arduino)', device_name, None, None),)
103 help_vars.Add(PathVariable('ANDROID_NDK', 'Android NDK path', None, PathVariable.PathAccept))
104 help_vars.Add(PathVariable('ANDROID_HOME', 'Android SDK path', None, PathVariable.PathAccept))
105 help_vars.Add(PathVariable('ANDROID_GRADLE', 'Gradle binary file', None, PathVariable.PathIsFile))
107 AddOption('--prefix',
113 help='installation prefix')
115 ######################################################################
116 # Platform(build target) specific options: SDK/NDK & toolchain
117 ######################################################################
118 targets_support_cc = ['linux', 'arduino', 'tizen']
120 if target_os in targets_support_cc:
121 # Set cross compile toolchain
122 help_vars.Add('TC_PREFIX', "Toolchain prefix (Generally only be required for cross-compiling)", os.environ.get('TC_PREFIX'))
123 help_vars.Add(PathVariable('TC_PATH',
124 'Toolchain path (Generally only be required for cross-compiling)',
125 os.environ.get('TC_PATH')))
127 if target_os in ['android', 'arduino']: # Android/Arduino always uses GNU compiler regardless of the host
128 env = Environment(variables = help_vars,
129 tools = ['gnulink', 'gcc', 'g++', 'ar', 'as', 'textfile']
132 env = Environment(variables = help_vars, tools = ['default', 'textfile'], TARGET_ARCH = target_arch, TARGET_OS = target_os, PREFIX = GetOption('prefix'))
134 Help(help_vars.GenerateHelpText(env))
137 ************************************ Warning **********************************
138 * Enviornment variable TC_PREFIX/TC_PATH is set. It will change the default *
139 * toolchain, if it isn't what you expect you should unset it, otherwise it may*
140 * cause inexplicable errors. *
141 *******************************************************************************
143 if env.get('VERBOSE') == False:
144 env['CCCOMSTR'] = "Compiling $TARGET"
145 env['SHCCCOMSTR'] = "Compiling $TARGET"
146 env['CXXCOMSTR'] = "Compiling $TARGET"
147 env['SHCXXCOMSTR'] = "Compiling $TARGET"
148 env['LINKCOMSTR'] = "Linking $TARGET"
149 env['SHLINKCOMSTR'] = "Linking $TARGET"
150 env['ARCOMSTR'] = "Archiving $TARGET"
151 env['RANLIBCOMSTR'] = "Indexing Archive $TARGET"
153 if target_os in targets_support_cc:
154 prefix = env.get('TC_PREFIX')
155 tc_path = env.get('TC_PATH')
157 env.Replace(CC = prefix + env.get('CC', 'gcc'))
158 env.Replace(CXX = prefix + env.get('CXX', 'g++'))
159 env.Replace(AR = prefix + env.get('AR', 'ar'))
160 env.Replace(AS = prefix + env.get('AS', 'as'))
161 env.Replace(RANLIB = prefix + env.get('RANLIB', 'ranlib'))
164 env.PrependENVPath('PATH', tc_path)
165 sys_root = os.path.abspath(tc_path + '/../')
166 env.AppendUnique(CCFLAGS = ['--sysroot=' + sys_root])
167 env.AppendUnique(LINKFLAGS = ['--sysroot=' + sys_root])
169 if prefix or tc_path:
172 # Ensure scons be able to change its working directory
173 env.SConscriptChdir(1)
175 # Set the source directory and build directory
176 # Source directory: 'dir'
177 # Build directory: 'dir'/out/<target_os>/<target_arch>/<release or debug>/
179 # You can get the directory as following:
181 # env.get('BUILD_DIR')
183 def __set_dir(env, dir):
184 if not os.path.exists(dir + '/SConstruct'):
186 *************************************** Error *********************************
187 * The directory(%s) seems isn't a source code directory, no SConstruct file is
189 *******************************************************************************
193 if env.get('RELEASE'):
194 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/release/'
196 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/debug/'
197 env.VariantDir(build_dir, dir, duplicate=0)
199 env.Replace(BUILD_DIR = build_dir)
200 env.Replace(SRC_DIR = dir)
202 def __src_to_obj(env, src, home = ''):
203 obj = env.get('BUILD_DIR') + src.replace(home, '')
204 if env.get('OBJSUFFIX'):
205 obj += env.get('OBJSUFFIX')
206 return env.Object(obj, src)
208 def __install(ienv, targets, name):
209 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
211 env.AppendUnique(TS = [name])
213 def __installlib(ienv, targets, name):
214 user_prefix = env.get('PREFIX')
216 i_n = ienv.Install(user_prefix + '/lib', targets)
218 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
219 ienv.Alias("install", i_n)
221 def __installbin(ienv, targets, name):
222 user_prefix = env.get('PREFIX')
224 i_n = ienv.Install(user_prefix + '/bin', targets)
226 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
227 ienv.Alias("install", i_n)
229 def __installheader(ienv, targets, dir, name):
230 user_prefix = env.get('PREFIX')
232 i_n = ienv.Install(user_prefix + '/include/' + dir ,targets)
234 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
235 ienv.Alias("install", i_n)
237 def __installpcfile(ienv, targets, name):
238 user_prefix = env.get('PREFIX')
240 i_n = ienv.Install(user_prefix + '/lib/pkgconfig', targets)
242 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
243 ienv.Alias("install", i_n)
245 def __append_target(ienv, name, targets = None):
247 env.Alias(name, targets)
248 env.AppendUnique(TS = [name])
250 def __print_targets(env):
252 ===============================================================================
254 for t in env.get('TS'):
257 \nDefault all targets will be built. You can specify the target to build:
259 $ scons [options] [target]
260 ===============================================================================
263 env.AddMethod(__set_dir, 'SetDir')
264 env.AddMethod(__print_targets, 'PrintTargets')
265 env.AddMethod(__src_to_obj, 'SrcToObj')
266 env.AddMethod(__append_target, 'AppendTarget')
267 env.AddMethod(__install, 'InstallTarget')
268 env.AddMethod(__installlib, 'UserInstallTargetLib')
269 env.AddMethod(__installbin, 'UserInstallTargetBin')
270 env.AddMethod(__installheader, 'UserInstallTargetHeader')
271 env.AddMethod(__installpcfile, 'UserInstallTargetPCFile')
272 env.SetDir(env.GetLaunchDir())
273 env['ROOT_DIR']=env.GetLaunchDir()+'/..'
277 ######################################################################
278 # Scons to generate the iotivity.pc file from iotivity.pc.in file
279 ######################################################################
280 pc_file = env.get('SRC_DIR') + '/iotivity.pc.in'
282 user_prefix = env.get('PREFIX')
285 pc_vars = {'\@PREFIX\@': user_prefix, '\@EXEC_PREFIX\@':user_prefix, '\@VERSION\@':'0.9.2'}
287 pc_vars = {'\@PREFIX\@': env.get('BUILD_DIR'), '\@EXEC_PREFIX\@': env.get('BUILD_DIR'), '\@VERSION\@':'0.9.2'}
289 env.Substfile(pc_file, SUBST_DICT = pc_vars)
291 ######################################################################
292 # Link scons to Yocto cross-toolchain ONLY when target_os is yocto
293 ######################################################################
294 if target_os == "yocto":
296 This code injects Yocto cross-compilation tools+flags into scons'
297 build environment in order to invoke the relevant tools while
302 CC = os.environ['CC']
303 target_prefix = CC.split()[0]
304 target_prefix = target_prefix[:len(target_prefix)-3]
305 tools = {"CC" : target_prefix+"gcc",
306 "CXX" : target_prefix+"g++",
307 "AS" : target_prefix+"as",
308 "LD" : target_prefix+"ld",
309 "GDB" : target_prefix+"gdb",
310 "STRIP" : target_prefix+"strip",
311 "RANLIB" : target_prefix+"ranlib",
312 "OBJCOPY" : target_prefix+"objcopy",
313 "OBJDUMP" : target_prefix+"objdump",
314 "AR" : target_prefix+"ar",
315 "NM" : target_prefix+"nm",
317 "STRINGS": target_prefix+"strings"}
318 PATH = os.environ['PATH'].split(os.pathsep)
320 if tool in os.environ:
322 if os.path.isfile(os.path.join(path, tools[tool])):
323 env[tool] = os.path.join(path, os.environ[tool])
325 env['CROSS_COMPILE'] = target_prefix[:len(target_prefix) - 1]
327 print "ERROR in Yocto cross-toolchain environment"
330 Now reset TARGET_OS to linux so that all linux specific build configurations
331 hereupon apply for the entirety of the build process.
333 env['TARGET_OS'] = 'linux'
335 We want to preserve debug symbols to allow BitBake to generate both DEBUG and
336 RELEASE packages for OIC.
338 env.AppendUnique(CCFLAGS = ['-g'])
340 Additional flags to pass to the Yocto toolchain.
342 if env.get('RELEASE'):
343 env.AppendUnique(CPPDEFINES = ['NDEBUG'])
344 if env.get('LOGGING'):
345 env.AppendUnique(CPPDEFINES = ['TB_LOG'])
346 env.AppendUnique(CPPDEFINES = ['WITH_POSIX', '__linux__', '_GNU_SOURCE'])
347 env.AppendUnique(CFLAGS = ['-std=gnu99'])
348 env.AppendUnique(CCFLAGS = ['-Wall', '-Wextra', '-fPIC'])
349 env.AppendUnique(LINKFLAGS = ['-ldl', '-lpthread'])
350 env.AppendUnique(LIBS = ['uuid'])
354 If target_os is not Yocto, continue with the regular build process
356 # Load config of target os
357 env.SConscript(target_os + '/SConscript')
359 # Delete the temp files of configuration
360 if env.GetOption('clean'):
361 dir = env.get('SRC_DIR')
363 if os.path.exists(dir + '/config.log'):
364 Execute(Delete(dir + '/config.log'))
365 if os.path.exists(dir + '/.sconsign.dblite'):
366 Execute(Delete(dir + '/.sconsign.dblite'))
367 if os.path.exists(dir + '/.sconf_temp'):
368 Execute(Delete(dir + '/.sconf_temp'))
370 ######################################################################
371 # Check for PThreads support
372 ######################################################################
373 import iotivityconfig
374 from iotivityconfig import *
376 conf = Configure(env,
379 'CheckPThreadsSupport' : iotivityconfig.check_pthreads
382 # Identify whether we have pthreads support, which is necessary for
383 # threading and mutexes. This will set the environment variable
384 # POSIX_SUPPORTED, 1 if it is supported, 0 otherwise
385 conf.CheckPThreadsSupport()
388 ######################################################################
390 env.SConscript('external_libs.scons')