1 # -*- mode: python; python-indent-offset: 4; indent-tabs-mode: nil -*-
3 # This script includes generic build options:
4 # release/debug, target os, target arch, cross toolchain, build environment etc
9 project_version = '1.2.1'
11 # Map of host os and allowed target os (host: allowed target os)
13 'linux': ['linux', 'android', 'arduino', 'yocto', 'tizen', 'tizenrt'],
14 'windows': ['windows', 'android', 'arduino'],
15 'darwin': ['darwin', 'ios', 'android', 'arduino'],
16 'msys_nt' :['msys_nt'],
19 # Map of os and allowed archs (os: allowed archs)
21 'linux': ['x86', 'x86_64', 'arm', 'arm-v7a', 'armeabi-v7a', 'arm64'],
22 'tizen': ['x86', 'x86_64', 'arm', 'arm-v7a', 'armeabi-v7a', 'arm64'],
23 'android': ['x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'armeabi-v7a-hard', 'arm64-v8a'],
24 'windows': ['x86', 'amd64', 'arm'],
25 'msys_nt':['x86', 'x86_64'],
26 'darwin': ['i386', 'x86_64'],
27 'ios': ['i386', 'x86_64', 'armv7', 'armv7s', 'arm64'],
28 'arduino': ['avr', 'arm'],
29 'yocto': ['i586', 'i686', 'x86_64', 'arm', 'aarch64', 'powerpc', 'powerpc64', 'mips', 'mipsel'],
30 'tizenrt': ['armv7-r', 'armv7-m'],
33 host = platform.system().lower()
35 # the host string contains version of windows. 6.3, 6.4, 10.0 which is 8.0, 8.1, and 10 respectively.
36 # Let's canonicalize the msys_nt-XX.X system name by stripping version off.
40 if not host_target_map.has_key(host):
41 print "\nError: Current system (%s) isn't supported\n" % host
44 ######################################################################
45 # Get build options (the optins from command line)
46 ######################################################################
47 target_os = ARGUMENTS.get('TARGET_OS', host).lower() # target os
49 if target_os not in host_target_map[host]:
50 print "\nError: Unknown target os: %s (Allow values: %s)\n" % (target_os, host_target_map[host])
53 if target_os == 'android':
56 default_arch = platform.machine()
58 if default_arch not in os_arch_map[target_os]:
59 default_arch = os_arch_map[target_os][0].lower()
61 target_arch = ARGUMENTS.get('TARGET_ARCH', default_arch) # target arch
63 # True if binary needs to be installed on board. (Might need root permissions)
64 # set to 'no', 'false' or 0 for only compilation
65 require_upload = ARGUMENTS.get('UPLOAD', False)
67 # Get the device name. This name can be used as network display name wherever possible
68 device_name = ARGUMENTS.get('DEVICE_NAME', "OIC-DEVICE")
70 default_with_upstream_libcoap = 0
72 if ARGUMENTS.get('TEST'):
73 logging_default = False
76 if ARGUMENTS.get('RELEASE', True) in ['y', 'yes', 'true', 't', '1', 'on', 'all', True]:
78 logging_default = (release_mode == False)
80 # targets that do not support the DTLS build (SECURED=1 build option)
81 targets_without_dtls_support = ['arduino'];
82 if ARGUMENTS.get('SECURED') == '1' and target_os in targets_without_dtls_support:
83 print "\nError: DTLS not supported on target os: %s MUST build with SECURED=0\n" % (target_os)
86 ######################################################################
87 # Common build options (release, target os, target arch)
88 ######################################################################
89 targets_disallow_multitransport = ['arduino']
91 help_vars = Variables()
92 help_vars.Add(BoolVariable('VERBOSE', 'Show compilation', False))
93 help_vars.Add(BoolVariable('RELEASE', 'Build for release?', True)) # set to 'no', 'false' or 0 for debug
94 help_vars.Add(EnumVariable('TARGET_OS', 'Target platform', host, host_target_map[host]))
97 help_vars.Add(BoolVariable('WITH_RA', 'Build with Remote Access module', False))
98 help_vars.Add(BoolVariable('WITH_TCP', 'Build with TCP adapter', False))
99 help_vars.Add(BoolVariable('DISABLE_TCP_SERVER', 'Disable TCP server', False))
100 help_vars.Add(BoolVariable('WITH_PROXY', 'Build with CoAP-HTTP Proxy', False))
101 help_vars.Add(ListVariable('WITH_MQ', 'Build with MQ publisher/broker', 'OFF', ['OFF', 'SUB', 'PUB', 'BROKER']))
102 help_vars.Add(BoolVariable('WITH_CLOUD', 'Build including AccountManager class and Cloud Client sample', False))
103 help_vars.Add(ListVariable('RD_MODE', 'Resource Directory build mode', 'CLIENT', ['CLIENT', 'SERVER']))
104 help_vars.Add(BoolVariable('DISABLE_PRESENCE', 'Disable Presence Feature', False))
105 help_vars.Add(BoolVariable('DISABLE_BLE_SERVER', 'Disable BLE server', False))
107 help_vars.Add(BoolVariable('SIMULATOR', 'Build with simulator module', False))
109 help_vars.Add(BoolVariable('WITH_RA_IBB', 'Build with Remote Access module(workssys)', False))
110 help_vars.Add(BoolVariable('WITH_ASAN', 'Build with Address Sanitizer support', False))
112 if target_os in targets_disallow_multitransport:
113 help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'IP', ['BT', 'BLE', 'IP', 'NFC']))
115 help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'ALL', ['ALL', 'BT', 'BLE', 'IP', 'NFC']))
117 help_vars.Add(EnumVariable('TARGET_ARCH', 'Target architecture', default_arch, os_arch_map[target_os]))
118 help_vars.Add(EnumVariable('SECURED', 'Build with DTLS', '0', allowed_values=('0', '1')))
119 help_vars.Add(EnumVariable('WITH_MBEDTLS_STATIC_LIB', 'Build mbedTLS library as static library', '0', allowed_values=('0', '1')))
120 help_vars.Add(EnumVariable('MULTIPLE_OWNER', 'Enable multiple owner', '0', allowed_values=('0', '1')))
121 help_vars.Add(EnumVariable('EXC_PROV_SUPPORT', 'Except OCPMAPI library(libocpmapi.so)', '0', allowed_values=('0', '1')))
122 help_vars.Add(EnumVariable('TEST', 'Run unit tests', '0', allowed_values=('0', '1')))
123 help_vars.Add(BoolVariable('LOGGING', 'Enable stack logging', logging_default))
124 help_vars.Add(EnumVariable('LOG_LEVEL', 'Enable stack logging level', 'DEBUG', allowed_values=('DEBUG', 'INFO', 'ERROR', 'WARNING', 'FATAL')))
125 help_vars.Add(BoolVariable('UPLOAD', 'Upload binary ? (For Arduino)', require_upload))
126 help_vars.Add(EnumVariable('ROUTING', 'Enable routing', 'EP', allowed_values=('GW', 'EP')))
127 help_vars.Add(EnumVariable('BUILD_SAMPLE', 'Build with sample', 'ON', allowed_values=('ON', 'OFF')))
128 help_vars.AddVariables(('DEVICE_NAME', 'Network display name for device (For Arduino)', device_name, None, None),)
129 help_vars.Add(PathVariable('ANDROID_NDK', 'Android NDK path', None, PathVariable.PathAccept))
130 help_vars.Add(PathVariable('ANDROID_HOME', 'Android SDK path', None, PathVariable.PathAccept))
131 help_vars.Add(PathVariable('ANDROID_GRADLE', 'Gradle binary file', None, PathVariable.PathIsFile))
132 help_vars.Add(EnumVariable('WITH_UPSTREAM_LIBCOAP', 'Use latest stable version of LibCoAP downloaded from github', default_with_upstream_libcoap, allowed_values=('0','1')))
133 help_vars.Add(EnumVariable('BLE_CUSTOM_ADV', 'Build with CUSTOM Advertisement', 'False', allowed_values=('True', 'False')))
134 help_vars.Add(EnumVariable('BLE_DIVISION', 'BLE Build with division code', 'OFF', allowed_values=('OFF', 'MCD', 'VD')))
135 help_vars.Add(EnumVariable('BLE_TIZEN_30', 'Build with tizen 3.0 BLE api', 'False', allowed_values=('True', 'False')))
136 help_vars.Add(EnumVariable('BLE_TIZEN_40', 'Build with tizen 4.0 BLE api', 'False', allowed_values=('True', 'False')))
137 help_vars.Add(EnumVariable('BLE_TIZEN_55', 'Build with tizen 5.5 BLE api', 'False', allowed_values=('True', 'False')))
138 help_vars.Add(PathVariable('TIZENRT_OS_DIR', 'Absolute Path to TizenRT OS directory', None, PathVariable.PathAccept))
139 help_vars.Add(EnumVariable('PLATFORM_TLS', 'Use platform tls instead of local mbedtls', '0', allowed_values=('0', '1')))
140 help_vars.Add(EnumVariable('OIC_SUPPORT_TIZEN_TRACE', 'Tizen Trace(T-trace) api availability', 'False', allowed_values=('True', 'False')))
141 help_vars.Add(BoolVariable('WITH_PROCESS_EVENT','Build including process event logics in ocstack', 'False'))
142 help_vars.Add(BoolVariable('DISABLE_AUTO_TCP_NSPROVIDER_DISCOVERY', 'Disable auto-discovery of NSProvider over TCP for TCP connected events', False))
143 AddOption('--prefix',
149 help='installation prefix')
151 ######################################################################
152 # Platform(build target) specific options: SDK/NDK & toolchain
153 ######################################################################
154 targets_support_cc = ['linux', 'arduino', 'tizen', 'tizenrt']
156 if target_os in targets_support_cc:
157 # Set cross compile toolchain
158 help_vars.Add('TC_PREFIX', "Toolchain prefix (Generally only be required for cross-compiling)", os.environ.get('TC_PREFIX'))
159 help_vars.Add(PathVariable('TC_PATH',
160 'Toolchain path (Generally only be required for cross-compiling)',
161 os.environ.get('TC_PATH')))
163 if target_os in ['android', 'arduino']: # Android/Arduino always uses GNU compiler regardless of the host
164 env = Environment(variables = help_vars,
165 tools = ['gnulink', 'gcc', 'g++', 'ar', 'as', 'textfile']
168 env = Environment(variables = help_vars, tools = ['default', 'textfile'],
169 TARGET_ARCH = target_arch, TARGET_OS = target_os,
170 PREFIX = GetOption('prefix'),
171 LIB_INSTALL_DIR = ARGUMENTS.get('LIB_INSTALL_DIR') #for 64bit build
174 targets_support_gcov = ['linux', 'darwin']
175 if target_os in targets_support_gcov:
176 # Build option to enable coverage checking using gcov.
177 # Requires gcc or clang family compilers.
178 # Actual compiler flags need to be set in target-specific script.
180 BoolVariable('COVERAGE_CHECKS',
181 'Build support for running code coverage checks',
184 Help(help_vars.GenerateHelpText(env))
187 ************************************ Warning **********************************
188 * Enviornment variable TC_PREFIX/TC_PATH is set. It will change the default *
189 * toolchain, if it isn't what you expect you should unset it, otherwise it may*
190 * cause inexplicable errors. *
191 *******************************************************************************
193 if env.get('VERBOSE') == False:
194 env['CCCOMSTR'] = "Compiling $TARGET"
195 env['SHCCCOMSTR'] = "Compiling $TARGET"
196 env['CXXCOMSTR'] = "Compiling $TARGET"
197 env['SHCXXCOMSTR'] = "Compiling $TARGET"
198 env['LINKCOMSTR'] = "Linking $TARGET"
199 env['SHLINKCOMSTR'] = "Linking $TARGET"
200 env['ARCOMSTR'] = "Archiving $TARGET"
201 env['RANLIBCOMSTR'] = "Indexing Archive $TARGET"
203 if target_os in targets_support_cc:
204 prefix = env.get('TC_PREFIX')
205 tc_path = env.get('TC_PATH')
207 env.Replace(CC = prefix + env.get('CC', 'gcc'))
208 env.Replace(CXX = prefix + env.get('CXX', 'g++'))
209 env.Replace(AR = prefix + env.get('AR', 'ar'))
210 env.Replace(AS = prefix + env.get('AS', 'as'))
211 env.Replace(RANLIB = prefix + env.get('RANLIB', 'ranlib'))
214 env.PrependENVPath('PATH', tc_path)
215 sys_root = os.path.abspath(tc_path + '/../')
216 env.AppendUnique(CCFLAGS = ['--sysroot=' + sys_root])
217 env.AppendUnique(LINKFLAGS = ['--sysroot=' + sys_root])
219 if target_os == 'tizenrt':
220 env.PrependENVPath('PATH', os.environ['PATH'])
222 if prefix or tc_path:
225 # If cross-compiling, honor environment settings for toolchain to avoid picking up native tools
226 if os.environ.get('PKG_CONFIG') != None:
227 env["ENV"]["PKG_CONFIG"] = os.environ.get("PKG_CONFIG")
228 if os.environ.get('PKG_CONFIG_PATH') != None:
229 env["ENV"]["PKG_CONFIG_PATH"] = os.environ.get("PKG_CONFIG_PATH")
230 if os.environ.get('PKG_CONFIG_SYSROOT_DIR') != None:
231 env["ENV"]["PKG_CONFIG_SYSROOT_DIR"] = os.environ.get("PKG_CONFIG_SYSROOT_DIR")
233 # Ensure scons be able to change its working directory
234 env.SConscriptChdir(1)
236 # Set the source directory and build directory
237 # Source directory: 'dir'
238 # Build directory: 'dir'/out/<target_os>/<target_arch>/<release or debug>/
240 # You can get the directory as following:
242 # env.get('BUILD_DIR')
244 def __set_dir(env, dir):
245 if not os.path.exists(dir + '/SConstruct'):
247 *************************************** Error *********************************
248 * The directory(%s) seems isn't a source code directory, no SConstruct file is
250 *******************************************************************************
254 if env.get('RELEASE'):
255 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/release/'
257 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/debug/'
258 env.VariantDir(build_dir, dir, duplicate=0)
260 env.Replace(BUILD_DIR = build_dir)
261 env.Replace(SRC_DIR = dir)
263 def __src_to_obj(env, src, home = ''):
264 obj = env.get('BUILD_DIR') + src.replace(home, '')
265 if env.get('OBJSUFFIX'):
266 obj += env.get('OBJSUFFIX')
267 return env.Object(obj, src)
269 def __install(ienv, targets, name):
270 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
272 env.AppendUnique(TS = [name])
274 def __installlib(ienv, targets, name):
275 user_prefix = env.get('PREFIX')
277 user_lib = env.get('LIB_INSTALL_DIR')
279 i_n = ienv.Install(user_lib, targets)
281 i_n = ienv.Install(user_prefix + '/lib', targets)
282 ienv.Alias("install", i_n)
284 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
285 ienv.Alias("install", i_n)
287 def __installbin(ienv, targets, name):
288 user_prefix = env.get('PREFIX')
290 i_n = ienv.Install(user_prefix + '/bin', targets)
291 ienv.Alias("install", i_n)
293 def __installheader(ienv, targets, dir, name):
294 user_prefix = env.get('PREFIX')
296 i_n = ienv.Install(user_prefix + '/include/' + dir ,targets)
298 i_n = ienv.Install(os.path.join(env.get('BUILD_DIR'), 'include', dir), targets)
299 ienv.Alias("install", i_n)
301 def __installpcfile(ienv, targets, name):
302 user_prefix = env.get('PREFIX')
304 user_lib = env.get('LIB_INSTALL_DIR')
306 i_n = ienv.Install(user_lib + '/pkgconfig', targets)
308 i_n = ienv.Install(user_prefix + '/lib/pkgconfig', targets)
310 i_n = ienv.Install(env.get('BUILD_DIR') + 'lib/pkgconfig', targets)
311 ienv.Alias("install", i_n)
313 def __append_target(ienv, name, targets = None):
315 env.Alias(name, targets)
316 env.AppendUnique(TS = [name])
318 def __print_targets(env):
320 ===============================================================================
322 for t in env.get('TS'):
325 \nDefault all targets will be built. You can specify the target to build:
327 $ scons [options] [target]
328 ===============================================================================
331 env.AddMethod(__set_dir, 'SetDir')
332 env.AddMethod(__print_targets, 'PrintTargets')
333 env.AddMethod(__src_to_obj, 'SrcToObj')
334 env.AddMethod(__append_target, 'AppendTarget')
335 env.AddMethod(__install, 'InstallTarget')
336 env.AddMethod(__installlib, 'UserInstallTargetLib')
337 env.AddMethod(__installbin, 'UserInstallTargetBin')
338 env.AddMethod(__installheader, 'UserInstallTargetHeader')
339 env.AddMethod(__installpcfile, 'UserInstallTargetPCFile')
340 env.SetDir(env.GetLaunchDir())
341 env['ROOT_DIR']=env.GetLaunchDir()+'/..'
345 ######################################################################
346 # Scons to generate the iotivity.pc file from iotivity.pc.in file
347 ######################################################################
348 pc_file = env.get('SRC_DIR') + '/iotivity.pc.in'
350 user_prefix = env.get('PREFIX')
351 user_lib = env.get('LIB_INSTALL_DIR')
354 user_prefix = env.get('BUILD_DIR').encode('string_escape')
357 user_lib = '$${prefix}/lib'
360 if env.get('LOGGING'):
361 defines.append('-DTB_LOG=1')
363 if env.get('ROUTING') == 'GW':
364 defines.append('-DROUTING_GATEWAY=1')
365 elif env.get('ROUTING') == 'EP':
366 defines.append('-DROUTING_EP=1')
368 if env.get('WITH_TCP'):
369 defines.append('-DTCP_ADAPTER=1')
370 if env.get('SECURED') == '1':
371 defines.append('-D__WITH_TLS__=1')
373 if env.get('DISABLE_TCP_SERVER'):
374 defines.append('-DDISABLE_TCP_SERVER=1')
376 if env.get('DISABLE_PRESENCE') == False:
377 env.AppendUnique(CPPDEFINES = ['WITH_PRESENCE'])
379 if env.get('DISABLE_BLE_SERVER'):
380 defines.append('-DDISABLE_BLE_SERVER=1')
382 if env.get('WITH_PROCESS_EVENT'):
383 env.AppendUnique(CPPDEFINES=['WITH_PROCESS_EVENT'])
385 if env.get('DISABLE_AUTO_TCP_NSPROVIDER_DISCOVERY'):
386 env.AppendUnique(CPPDEFINES = ['DISABLE_AUTO_TCP_NSPROVIDER_DISCOVERY'])
389 if env.get('SECURED') == '1':
390 defines.append('-D__WITH_DTLS__=1')
391 if env.get('EXC_PROV_SUPPORT') == '0':
392 libs.append('-locpmapi') # CAPI
393 libs.append('-locprovision') # C++API
396 '\@VERSION\@': project_version,
397 '\@PREFIX\@': user_prefix,
398 '\@EXEC_PREFIX\@': user_prefix,
399 '\@LIB_INSTALL_DIR\@': user_lib,
400 '\@DEFINES\@': " ".join(defines),
401 '\@LIBS\@': " ".join(libs)
404 env.Substfile(pc_file, SUBST_DICT = pc_vars)
406 ######################################################################
407 # Link scons to Yocto cross-toolchain ONLY when target_os is yocto
408 ######################################################################
409 if target_os == "yocto":
411 This code injects Yocto cross-compilation tools+flags into scons'
412 build environment in order to invoke the relevant tools while
417 CC = os.environ['CC']
418 target_prefix = CC.split()[0]
419 target_prefix = target_prefix[:len(target_prefix)-3]
420 tools = {"CC" : target_prefix+"gcc",
421 "CXX" : target_prefix+"g++",
422 "AS" : target_prefix+"as",
423 "LD" : target_prefix+"ld",
424 "GDB" : target_prefix+"gdb",
425 "STRIP" : target_prefix+"strip",
426 "RANLIB" : target_prefix+"ranlib",
427 "OBJCOPY" : target_prefix+"objcopy",
428 "OBJDUMP" : target_prefix+"objdump",
429 "AR" : target_prefix+"ar",
430 "NM" : target_prefix+"nm",
432 "STRINGS": target_prefix+"strings"}
433 PATH = os.environ['PATH'].split(os.pathsep)
435 if tool in os.environ:
437 if os.path.isfile(os.path.join(path, tools[tool])):
438 env[tool] = os.path.join(path, os.environ[tool])
440 env['CROSS_COMPILE'] = target_prefix[:len(target_prefix) - 1]
441 if os.environ['LDFLAGS'] != None:
442 env.AppendUnique(LINKFLAGS = Split(os.environ['LDFLAGS']))
444 print "ERROR in Yocto cross-toolchain environment"
447 Now reset TARGET_OS to linux so that all linux specific build configurations
448 hereupon apply for the entirety of the build process.
450 env['TARGET_OS'] = 'linux'
452 We want to preserve debug symbols to allow BitBake to generate both DEBUG and
453 RELEASE packages for OIC.
455 env.AppendUnique(CCFLAGS = ['-g'])
457 Additional flags to pass to the Yocto toolchain.
459 if env.get('RELEASE'):
460 env.AppendUnique(CPPDEFINES = ['NDEBUG'])
461 if env.get('LOGGING'):
462 env.AppendUnique(CPPDEFINES = ['TB_LOG'])
463 env.AppendUnique(CPPDEFINES = ['WITH_POSIX', '__linux__', '_GNU_SOURCE'])
464 env.AppendUnique(CFLAGS = ['-std=gnu99'])
465 env.AppendUnique(CCFLAGS = ['-Wall', '-Wextra', '-fPIC'])
466 env.AppendUnique(LIBS = ['dl', 'pthread', 'uuid'])
470 If target_os is not Yocto, continue with the regular build process
472 # Load config of target os
473 env.SConscript(target_os + '/SConscript')
475 # Delete the temp files of configuration
476 if env.GetOption('clean'):
477 dir = env.get('SRC_DIR')
479 if os.path.exists(dir + '/config.log'):
480 Execute(Delete(dir + '/config.log'))
481 if os.path.exists(dir + '/.sconsign.dblite'):
482 Execute(Delete(dir + '/.sconsign.dblite'))
483 if os.path.exists(dir + '/.sconf_temp'):
484 Execute(Delete(dir + '/.sconf_temp'))
486 ######################################################################
487 # Check for PThreads support
488 ######################################################################
489 import iotivityconfig
490 from iotivityconfig import *
492 conf = Configure(env,
495 'CheckPThreadsSupport' : iotivityconfig.check_pthreads
498 # Identify whether we have pthreads support, which is necessary for
499 # threading and mutexes. This will set the environment variable
500 # POSIX_SUPPORTED, 1 if it is supported, 0 otherwise
501 conf.CheckPThreadsSupport()
504 ######################################################################
506 env.SConscript('external_libs.scons')