Revert "[CONPRO-1337] Disabled Presence Feature"
[platform/upstream/iotivity.git] / build_common / SConscript
1 # -*- mode: python; python-indent-offset: 4; indent-tabs-mode: nil -*-
2 ##
3 # This script includes generic build options:
4 #    release/debug, target os, target arch, cross toolchain, build environment etc
5 ##
6 import os
7 import platform
8
9 project_version = '1.2.1'
10
11 # Map of host os and allowed target os (host: allowed target os)
12 host_target_map = {
13                 'linux': ['linux', 'android', 'arduino', 'yocto', 'tizen', 'tizenrt'],
14                 'windows': ['windows', 'android', 'arduino'],
15                 'darwin': ['darwin', 'ios', 'android', 'arduino'],
16                 'msys_nt' :['msys_nt'],
17                 }
18
19 # Map of os and allowed archs (os: allowed archs)
20 os_arch_map = {
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'],
31                 }
32
33 host = platform.system().lower()
34
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.
37 if 'msys_nt' in host:
38         host = 'msys_nt'
39
40 if not host_target_map.has_key(host):
41         print "\nError: Current system (%s) isn't supported\n" % host
42         Exit(1)
43
44 ######################################################################
45 # Get build options (the optins from command line)
46 ######################################################################
47 target_os = ARGUMENTS.get('TARGET_OS', host).lower() # target os
48
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])
51         Exit(1)
52
53 if target_os == 'android':
54         default_arch = 'x86'
55 else:
56         default_arch = platform.machine()
57
58 if default_arch not in os_arch_map[target_os]:
59         default_arch = os_arch_map[target_os][0].lower()
60
61 target_arch = ARGUMENTS.get('TARGET_ARCH', default_arch) # target arch
62
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)
66
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")
69
70 default_with_upstream_libcoap = 0
71
72 if ARGUMENTS.get('TEST'):
73         logging_default = False
74 else:
75         release_mode = False
76         if ARGUMENTS.get('RELEASE', True) in ['y', 'yes', 'true', 't', '1', 'on', 'all', True]:
77                 release_mode = True
78         logging_default = (release_mode == False)
79
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)
84         Exit(1)
85
86 ######################################################################
87 # Common build options (release, target os, target arch)
88 ######################################################################
89 targets_disallow_multitransport = ['arduino']
90
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]))
95
96
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
105 help_vars.Add(BoolVariable('SIMULATOR', 'Build with simulator module', False))
106
107 help_vars.Add(BoolVariable('WITH_RA_IBB', 'Build with Remote Access module(workssys)', False))
108 help_vars.Add(BoolVariable('WITH_ASAN', 'Build with Address Sanitizer support', False))
109
110
111 if target_os in targets_disallow_multitransport:
112         help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'IP', ['BT', 'BLE', 'IP', 'NFC']))
113 else:
114         help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'ALL', ['ALL', 'BT', 'BLE', 'IP', 'NFC']))
115
116 help_vars.Add(EnumVariable('TARGET_ARCH', 'Target architecture', default_arch, os_arch_map[target_os]))
117 help_vars.Add(EnumVariable('SECURED', 'Build with DTLS', '0', allowed_values=('0', '1')))
118 help_vars.Add(EnumVariable('WITH_MBEDTLS_STATIC_LIB', 'Build mbedTLS library as static library', '0', allowed_values=('0', '1')))
119 help_vars.Add(EnumVariable('MULTIPLE_OWNER', 'Enable multiple owner', '0', allowed_values=('0', '1')))
120 help_vars.Add(EnumVariable('EXC_PROV_SUPPORT', 'Except OCPMAPI library(libocpmapi.so)', '0', allowed_values=('0', '1')))
121 help_vars.Add(EnumVariable('TEST', 'Run unit tests', '0', allowed_values=('0', '1')))
122 help_vars.Add(BoolVariable('LOGGING', 'Enable stack logging', logging_default))
123 help_vars.Add(EnumVariable('LOG_LEVEL', 'Enable stack logging level', 'DEBUG', allowed_values=('DEBUG', 'INFO', 'ERROR', 'WARNING', 'FATAL')))
124 help_vars.Add(BoolVariable('UPLOAD', 'Upload binary ? (For Arduino)', require_upload))
125 help_vars.Add(EnumVariable('ROUTING', 'Enable routing', 'EP', allowed_values=('GW', 'EP')))
126 help_vars.Add(EnumVariable('BUILD_SAMPLE', 'Build with sample', 'ON', allowed_values=('ON', 'OFF')))
127 help_vars.AddVariables(('DEVICE_NAME', 'Network display name for device (For Arduino)', device_name, None, None),)
128 help_vars.Add(PathVariable('ANDROID_NDK', 'Android NDK path', None, PathVariable.PathAccept))
129 help_vars.Add(PathVariable('ANDROID_HOME', 'Android SDK path', None, PathVariable.PathAccept))
130 help_vars.Add(PathVariable('ANDROID_GRADLE', 'Gradle binary file', None, PathVariable.PathIsFile))
131 help_vars.Add(EnumVariable('WITH_UPSTREAM_LIBCOAP', 'Use latest stable version of LibCoAP downloaded from github', default_with_upstream_libcoap, allowed_values=('0','1')))
132 help_vars.Add(EnumVariable('BLE_CUSTOM_ADV', 'Build with CUSTOM Advertisement', 'False', allowed_values=('True', 'False')))
133 help_vars.Add(EnumVariable('BLE_DIVISION', 'BLE Build with division code', 'OFF', allowed_values=('OFF', 'MCD', 'VD')))
134 help_vars.Add(EnumVariable('BLE_TIZEN_30', 'Build with tizen 3.0 BLE api', 'False', allowed_values=('True', 'False')))
135 help_vars.Add(EnumVariable('TIZEN_4', 'Build with tizen 4.0 api', 'False', allowed_values=('True', 'False')))
136 help_vars.Add(PathVariable('TIZENRT_OS_DIR', 'Absolute Path to TizenRT OS directory', None, PathVariable.PathAccept))
137 help_vars.Add(EnumVariable('PLATFORM_TLS', 'Use platform tls instead of local mbedtls', '0', allowed_values=('0', '1')))
138 help_vars.Add(EnumVariable('OIC_SUPPORT_TIZEN_TRACE', 'Tizen Trace(T-trace) api availability', 'False', allowed_values=('True', 'False')))
139 AddOption('--prefix',
140                   dest='prefix',
141                   type='string',
142                   nargs=1,
143                   action='store',
144                   metavar='DIR',
145                   help='installation prefix')
146
147 ######################################################################
148 # Platform(build target) specific options: SDK/NDK & toolchain
149 ######################################################################
150 targets_support_cc = ['linux', 'arduino', 'tizen', 'tizenrt']
151
152 if target_os in targets_support_cc:
153         # Set cross compile toolchain
154         help_vars.Add('TC_PREFIX', "Toolchain prefix (Generally only be required for cross-compiling)", os.environ.get('TC_PREFIX'))
155         help_vars.Add(PathVariable('TC_PATH',
156                         'Toolchain path (Generally only be required for cross-compiling)',
157                         os.environ.get('TC_PATH')))
158
159 if target_os in ['android', 'arduino']: # Android/Arduino always uses GNU compiler regardless of the host
160         env = Environment(variables = help_vars,
161                         tools = ['gnulink', 'gcc', 'g++', 'ar', 'as', 'textfile']
162                         )
163 else:
164         env = Environment(variables = help_vars, tools = ['default', 'textfile'],
165                         TARGET_ARCH = target_arch, TARGET_OS = target_os,
166                         PREFIX = GetOption('prefix'),
167                         LIB_INSTALL_DIR = ARGUMENTS.get('LIB_INSTALL_DIR') #for 64bit build
168                         )
169 Help(help_vars.GenerateHelpText(env))
170
171 tc_set_msg = '''
172 ************************************ Warning **********************************
173 *   Enviornment variable TC_PREFIX/TC_PATH is set. It will change the default *
174 * toolchain, if it isn't what you expect you should unset it, otherwise it may*
175 * cause inexplicable errors.                                                  *
176 *******************************************************************************
177 '''
178 if env.get('VERBOSE') == False:
179         env['CCCOMSTR'] = "Compiling $TARGET"
180         env['SHCCCOMSTR'] = "Compiling $TARGET"
181         env['CXXCOMSTR'] = "Compiling $TARGET"
182         env['SHCXXCOMSTR'] = "Compiling $TARGET"
183         env['LINKCOMSTR'] = "Linking $TARGET"
184         env['SHLINKCOMSTR'] = "Linking $TARGET"
185         env['ARCOMSTR'] = "Archiving $TARGET"
186         env['RANLIBCOMSTR'] = "Indexing Archive $TARGET"
187
188 if target_os in targets_support_cc:
189         prefix = env.get('TC_PREFIX')
190         tc_path = env.get('TC_PATH')
191         if prefix:
192                 env.Replace(CC = prefix + env.get('CC', 'gcc'))
193                 env.Replace(CXX = prefix + env.get('CXX', 'g++'))
194                 env.Replace(AR = prefix + env.get('AR', 'ar'))
195                 env.Replace(AS = prefix + env.get('AS', 'as'))
196                 env.Replace(RANLIB = prefix + env.get('RANLIB', 'ranlib'))
197
198         if tc_path:
199                 env.PrependENVPath('PATH', tc_path)
200                 sys_root = os.path.abspath(tc_path + '/../')
201                 env.AppendUnique(CCFLAGS = ['--sysroot=' + sys_root])
202                 env.AppendUnique(LINKFLAGS = ['--sysroot=' + sys_root])
203
204         if target_os == 'tizenrt':
205                 env.PrependENVPath('PATH', os.environ['PATH'])
206
207         if prefix or tc_path:
208                 print tc_set_msg
209
210 # If cross-compiling, honor environment settings for toolchain to avoid picking up native tools
211 if os.environ.get('PKG_CONFIG') != None:
212         env["ENV"]["PKG_CONFIG"] = os.environ.get("PKG_CONFIG")
213 if os.environ.get('PKG_CONFIG_PATH') != None:
214         env["ENV"]["PKG_CONFIG_PATH"] = os.environ.get("PKG_CONFIG_PATH")
215 if os.environ.get('PKG_CONFIG_SYSROOT_DIR') != None:
216         env["ENV"]["PKG_CONFIG_SYSROOT_DIR"] = os.environ.get("PKG_CONFIG_SYSROOT_DIR")
217
218 # Ensure scons be able to change its working directory
219 env.SConscriptChdir(1)
220
221 # Set the source directory and build directory
222 #   Source directory: 'dir'
223 #   Build directory: 'dir'/out/<target_os>/<target_arch>/<release or debug>/
224 #
225 # You can get the directory as following:
226 #   env.get('SRC_DIR')
227 #   env.get('BUILD_DIR')
228
229 def __set_dir(env, dir):
230         if not os.path.exists(dir + '/SConstruct'):
231                 print '''
232 *************************************** Error *********************************
233 * The directory(%s) seems isn't a source code directory, no SConstruct file is
234 * found. *
235 *******************************************************************************
236 ''' % dir
237                 Exit(1)
238
239         if env.get('RELEASE'):
240                 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/release/'
241         else:
242                 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/debug/'
243         env.VariantDir(build_dir, dir, duplicate=0)
244
245         env.Replace(BUILD_DIR = build_dir)
246         env.Replace(SRC_DIR = dir)
247
248 def __src_to_obj(env, src, home = ''):
249         obj = env.get('BUILD_DIR') + src.replace(home, '')
250         if env.get('OBJSUFFIX'):
251                 obj += env.get('OBJSUFFIX')
252         return env.Object(obj, src)
253
254 def __install(ienv, targets, name):
255         i_n = ienv.Install(env.get('BUILD_DIR'), targets)
256         Alias(name, i_n)
257         env.AppendUnique(TS = [name])
258
259 def __installlib(ienv, targets, name):
260         user_prefix = env.get('PREFIX')
261         if user_prefix:
262                 user_lib = env.get('LIB_INSTALL_DIR')
263                 if user_lib:
264                         i_n = ienv.Install(user_lib, targets)
265                 else:
266                         i_n = ienv.Install(user_prefix + '/lib', targets)
267                 ienv.Alias("install", i_n)
268         else:
269                 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
270         ienv.Alias("install", i_n)
271
272 def __installbin(ienv, targets, name):
273         user_prefix = env.get('PREFIX')
274         if user_prefix:
275                 i_n = ienv.Install(user_prefix + '/bin', targets)
276                 ienv.Alias("install", i_n)
277
278 def __installheader(ienv, targets, dir, name):
279         user_prefix = env.get('PREFIX')
280         if user_prefix:
281                 i_n = ienv.Install(user_prefix + '/include/' + dir ,targets)
282         else:
283                 i_n = ienv.Install(os.path.join(env.get('BUILD_DIR'), 'include', dir), targets)
284         ienv.Alias("install", i_n)
285
286 def __installpcfile(ienv, targets, name):
287         user_prefix = env.get('PREFIX')
288         if user_prefix:
289                 user_lib = env.get('LIB_INSTALL_DIR')
290                 if user_lib:
291                         i_n = ienv.Install(user_lib + '/pkgconfig', targets)
292                 else:
293                         i_n = ienv.Install(user_prefix + '/lib/pkgconfig', targets)
294         else:
295                 i_n = ienv.Install(env.get('BUILD_DIR') + 'lib/pkgconfig', targets)
296         ienv.Alias("install", i_n)
297
298 def __append_target(ienv, name, targets = None):
299         if targets:
300                 env.Alias(name, targets)
301         env.AppendUnique(TS = [name])
302
303 def __print_targets(env):
304         Help('''
305 ===============================================================================
306 Targets:\n    ''')
307         for t in env.get('TS'):
308                 Help(t + ' ')
309         Help('''
310 \nDefault all targets will be built. You can specify the target to build:
311
312     $ scons [options] [target]
313 ===============================================================================
314 ''')
315
316 env.AddMethod(__set_dir, 'SetDir')
317 env.AddMethod(__print_targets, 'PrintTargets')
318 env.AddMethod(__src_to_obj, 'SrcToObj')
319 env.AddMethod(__append_target, 'AppendTarget')
320 env.AddMethod(__install, 'InstallTarget')
321 env.AddMethod(__installlib, 'UserInstallTargetLib')
322 env.AddMethod(__installbin, 'UserInstallTargetBin')
323 env.AddMethod(__installheader, 'UserInstallTargetHeader')
324 env.AddMethod(__installpcfile, 'UserInstallTargetPCFile')
325 env.SetDir(env.GetLaunchDir())
326 env['ROOT_DIR']=env.GetLaunchDir()+'/..'
327
328 Export('env')
329
330 ######################################################################
331 # Scons to generate the iotivity.pc file from iotivity.pc.in file
332 ######################################################################
333 pc_file = env.get('SRC_DIR') + '/iotivity.pc.in'
334
335 user_prefix = env.get('PREFIX')
336 user_lib = env.get('LIB_INSTALL_DIR')
337
338 if not user_prefix:
339     user_prefix = env.get('BUILD_DIR').encode('string_escape')
340
341 if not user_lib:
342     user_lib = '$${prefix}/lib'
343
344 defines = []
345 if env.get('LOGGING'):
346     defines.append('-DTB_LOG=1')
347
348 if env.get('ROUTING') == 'GW':
349     defines.append('-DROUTING_GATEWAY=1')
350 elif env.get('ROUTING') == 'EP':
351     defines.append('-DROUTING_EP=1')
352
353 if env.get('WITH_TCP'):
354     defines.append('-DTCP_ADAPTER=1')
355     if env.get('SECURED') == '1':
356         defines.append('-D__WITH_TLS__=1')
357
358 if env.get('DISABLE_TCP_SERVER'):
359         defines.append('-DDISABLE_TCP_SERVER=1')
360
361 libs = []
362 if env.get('SECURED') == '1':
363     defines.append('-D__WITH_DTLS__=1')
364     if env.get('EXC_PROV_SUPPORT') == '0':
365         libs.append('-locpmapi')        # CAPI
366         libs.append('-locprovision')    # C++API
367
368 pc_vars = {
369     '\@VERSION\@': project_version,
370     '\@PREFIX\@': user_prefix,
371     '\@EXEC_PREFIX\@': user_prefix,
372     '\@LIB_INSTALL_DIR\@': user_lib,
373     '\@DEFINES\@': " ".join(defines),
374     '\@LIBS\@': " ".join(libs)
375 }
376
377 env.Substfile(pc_file, SUBST_DICT = pc_vars)
378
379 ######################################################################
380 # Link scons to Yocto cross-toolchain ONLY when target_os is yocto
381 ######################################################################
382 if target_os == "yocto":
383     '''
384     This code injects Yocto cross-compilation tools+flags into scons'
385     build environment in order to invoke the relevant tools while
386     performing a build.
387     '''
388     import os.path
389     try:
390         CC = os.environ['CC']
391         target_prefix = CC.split()[0]
392         target_prefix = target_prefix[:len(target_prefix)-3]
393         tools = {"CC" : target_prefix+"gcc",
394                 "CXX" : target_prefix+"g++",
395                 "AS" : target_prefix+"as",
396                 "LD" : target_prefix+"ld",
397                 "GDB" : target_prefix+"gdb",
398                 "STRIP" : target_prefix+"strip",
399                 "RANLIB" : target_prefix+"ranlib",
400                 "OBJCOPY" : target_prefix+"objcopy",
401                 "OBJDUMP" : target_prefix+"objdump",
402                 "AR" : target_prefix+"ar",
403                 "NM" : target_prefix+"nm",
404                 "M4" : "m4",
405                 "STRINGS": target_prefix+"strings"}
406         PATH = os.environ['PATH'].split(os.pathsep)
407         for tool in tools:
408             if tool in os.environ:
409                 for path in PATH:
410                     if os.path.isfile(os.path.join(path, tools[tool])):
411                         env[tool] = os.path.join(path, os.environ[tool])
412                         break
413         env['CROSS_COMPILE'] = target_prefix[:len(target_prefix) - 1]
414         if os.environ['LDFLAGS'] != None:
415             env.AppendUnique(LINKFLAGS = Split(os.environ['LDFLAGS']))
416     except:
417         print "ERROR in Yocto cross-toolchain environment"
418         Exit(1)
419     '''
420     Now reset TARGET_OS to linux so that all linux specific build configurations
421     hereupon apply for the entirety of the build process.
422     '''
423     env['TARGET_OS'] = 'linux'
424     '''
425     We want to preserve debug symbols to allow BitBake to generate both DEBUG and
426     RELEASE packages for OIC.
427     '''
428     env.AppendUnique(CCFLAGS = ['-g'])
429     '''
430     Additional flags to pass to the Yocto toolchain.
431     '''
432     if env.get('RELEASE'):
433         env.AppendUnique(CPPDEFINES = ['NDEBUG'])
434     if env.get('LOGGING'):
435         env.AppendUnique(CPPDEFINES = ['TB_LOG'])
436     env.AppendUnique(CPPDEFINES = ['WITH_POSIX', '__linux__', '_GNU_SOURCE'])
437     env.AppendUnique(CFLAGS = ['-std=gnu99'])
438     env.AppendUnique(CCFLAGS = ['-Wall', '-Wextra', '-fPIC'])
439     env.AppendUnique(LIBS = ['dl', 'pthread', 'uuid'])
440     Export('env')
441 else:
442     '''
443     If target_os is not Yocto, continue with the regular build process
444     '''
445     # Load config of target os
446     env.SConscript(target_os + '/SConscript')
447
448 # Delete the temp files of configuration
449 if env.GetOption('clean'):
450         dir = env.get('SRC_DIR')
451
452         if os.path.exists(dir + '/config.log'):
453                 Execute(Delete(dir + '/config.log'))
454         if os.path.exists(dir + '/.sconsign.dblite'):
455                 Execute(Delete(dir + '/.sconsign.dblite'))
456         if os.path.exists(dir + '/.sconf_temp'):
457                 Execute(Delete(dir + '/.sconf_temp'))
458
459 ######################################################################
460 # Check for PThreads support
461 ######################################################################
462 import iotivityconfig
463 from iotivityconfig import *
464
465 conf = Configure(env,
466         custom_tests =
467         {
468             'CheckPThreadsSupport' : iotivityconfig.check_pthreads
469         } )
470
471 # Identify whether we have pthreads support, which is necessary for
472 # threading and mutexes.  This will set the environment variable
473 # POSIX_SUPPORTED, 1 if it is supported, 0 otherwise
474 conf.CheckPThreadsSupport()
475
476 env = conf.Finish()
477 ######################################################################
478
479 env.SConscript('external_libs.scons')
480 Return('env')