Sample client for IoTivity Cloud feature
[platform/upstream/iotivity.git] / build_common / SConscript
1 ##
2 # This script includes generic build options:
3 #    release/debug, target os, target arch, cross toolchain, build environment etc
4 ##
5 import os
6 import platform
7
8 # Map of host os and allowed target os (host: allowed target os)
9 host_target_map = {
10                 'linux': ['linux', 'android', 'arduino', 'yocto', 'tizen'],
11                 'windows': ['windows', 'winrt', 'android', 'arduino'],
12                 'darwin': ['darwin', 'ios', 'android', 'arduino'],
13                 }
14
15 # Map of os and allowed archs (os: allowed archs)
16 os_arch_map = {
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'],
21                 'winrt': ['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'],
26                 }
27
28 host = platform.system().lower()
29
30 if not host_target_map.has_key(host):
31         print "\nError: Current system (%s) isn't supported\n" % host
32         Exit(1)
33
34 ######################################################################
35 # Get build options (the optins from command line)
36 ######################################################################
37 target_os = ARGUMENTS.get('TARGET_OS', host).lower() # target os
38
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])
41         Exit(1)
42
43 if target_os == 'android':
44         default_arch = 'x86'
45 else:
46         default_arch = platform.machine()
47
48 if default_arch not in os_arch_map[target_os]:
49         default_arch = os_arch_map[target_os][0].lower()
50
51 target_arch = ARGUMENTS.get('TARGET_ARCH', default_arch) # target arch
52
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)
56
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")
59
60 if ARGUMENTS.get('TEST'):
61         logging_default = False
62 else:
63         release_mode = False
64         if ARGUMENTS.get('RELEASE', True) in ['y', 'yes', 'true', 't', '1', 'on', 'all', True]:
65                 release_mode = True
66         logging_default = (release_mode == False)
67
68
69
70 ######################################################################
71 # Common build options (release, target os, target arch)
72 ######################################################################
73 targets_disallow_multitransport = ['arduino']
74
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]))
79
80
81 help_vars.Add(BoolVariable('WITH_RA', 'Build with Remote Access module', False))
82 help_vars.Add(BoolVariable('WITH_TCP', 'Build with TCP adapter', False))
83 help_vars.Add(EnumVariable('WITH_RD', 'Build including Resource Directory', '0', allowed_values=('0', '1')))
84 help_vars.Add(BoolVariable('WITH_CLOUD', 'Build including Cloud client sample', False))
85
86 help_vars.Add(BoolVariable('SIMULATOR', 'Build with simulator module', False))
87
88 help_vars.Add(BoolVariable('WITH_RA_IBB', 'Build with Remote Access module(workssys)', False))
89
90
91 if target_os in targets_disallow_multitransport:
92         help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'IP', ['BT', 'BLE', 'IP', 'NFC']))
93 else:
94         help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'ALL', ['ALL', 'BT', 'BLE', 'IP', 'NFC']))
95
96 help_vars.Add(EnumVariable('TARGET_ARCH', 'Target architecture', default_arch, os_arch_map[target_os]))
97 help_vars.Add(EnumVariable('SECURED', 'Build with DTLS', '0', allowed_values=('0', '1')))
98 help_vars.Add(EnumVariable('DTLS_WITH_X509', 'DTLS with X.509 support', '0', allowed_values=('0', '1')))
99 help_vars.Add(EnumVariable('TEST', 'Run unit tests', '0', allowed_values=('0', '1')))
100 help_vars.Add(BoolVariable('LOGGING', 'Enable stack logging', logging_default))
101 help_vars.Add(BoolVariable('UPLOAD', 'Upload binary ? (For Arduino)', require_upload))
102 help_vars.Add(EnumVariable('ROUTING', 'Enable routing', 'EP', allowed_values=('GW', 'EP')))
103 help_vars.Add(EnumVariable('BUILD_SAMPLE', 'Build with sample', 'ON', allowed_values=('ON', 'OFF')))
104 help_vars.AddVariables(('DEVICE_NAME', 'Network display name for device (For Arduino)', device_name, None, None),)
105 help_vars.Add(PathVariable('ANDROID_NDK', 'Android NDK path', None, PathVariable.PathAccept))
106 help_vars.Add(PathVariable('ANDROID_HOME', 'Android SDK path', None, PathVariable.PathAccept))
107 help_vars.Add(PathVariable('ANDROID_GRADLE', 'Gradle binary file', None, PathVariable.PathIsFile))
108
109 AddOption('--prefix',
110                   dest='prefix',
111                   type='string',
112                   nargs=1,
113                   action='store',
114                   metavar='DIR',
115                   help='installation prefix')
116
117 ######################################################################
118 # Platform(build target) specific options: SDK/NDK & toolchain
119 ######################################################################
120 targets_support_cc = ['linux', 'arduino', 'tizen']
121
122 if target_os in targets_support_cc:
123         # Set cross compile toolchain
124         help_vars.Add('TC_PREFIX', "Toolchain prefix (Generally only be required for cross-compiling)", os.environ.get('TC_PREFIX'))
125         help_vars.Add(PathVariable('TC_PATH',
126                         'Toolchain path (Generally only be required for cross-compiling)',
127                         os.environ.get('TC_PATH')))
128
129 if target_os in ['android', 'arduino']: # Android/Arduino always uses GNU compiler regardless of the host
130         env = Environment(variables = help_vars,
131                         tools = ['gnulink', 'gcc', 'g++', 'ar', 'as', 'textfile']
132                         )
133 else:
134         env = Environment(variables = help_vars, tools = ['default', 'textfile'],
135                         TARGET_ARCH = target_arch, TARGET_OS = target_os,
136                         PREFIX = GetOption('prefix'),
137                         LIB_INSTALL_DIR = ARGUMENTS.get('LIB_INSTALL_DIR') #for 64bit build
138                         )
139 Help(help_vars.GenerateHelpText(env))
140
141 tc_set_msg = '''
142 ************************************ Warning **********************************
143 *   Enviornment variable TC_PREFIX/TC_PATH is set. It will change the default *
144 * toolchain, if it isn't what you expect you should unset it, otherwise it may*
145 * cause inexplicable errors.                                                  *
146 *******************************************************************************
147 '''
148 if env.get('VERBOSE') == False:
149         env['CCCOMSTR'] = "Compiling $TARGET"
150         env['SHCCCOMSTR'] = "Compiling $TARGET"
151         env['CXXCOMSTR'] = "Compiling $TARGET"
152         env['SHCXXCOMSTR'] = "Compiling $TARGET"
153         env['LINKCOMSTR'] = "Linking $TARGET"
154         env['SHLINKCOMSTR'] = "Linking $TARGET"
155         env['ARCOMSTR'] = "Archiving $TARGET"
156         env['RANLIBCOMSTR'] = "Indexing Archive $TARGET"
157
158 if target_os in targets_support_cc:
159         prefix = env.get('TC_PREFIX')
160         tc_path = env.get('TC_PATH')
161         if prefix:
162                 env.Replace(CC = prefix + env.get('CC', 'gcc'))
163                 env.Replace(CXX = prefix + env.get('CXX', 'g++'))
164                 env.Replace(AR = prefix + env.get('AR', 'ar'))
165                 env.Replace(AS = prefix + env.get('AS', 'as'))
166                 env.Replace(RANLIB = prefix + env.get('RANLIB', 'ranlib'))
167
168         if tc_path:
169                 env.PrependENVPath('PATH', tc_path)
170                 sys_root = os.path.abspath(tc_path + '/../')
171                 env.AppendUnique(CCFLAGS = ['--sysroot=' + sys_root])
172                 env.AppendUnique(LINKFLAGS = ['--sysroot=' + sys_root])
173
174         if prefix or tc_path:
175                 print tc_set_msg
176
177 # Ensure scons be able to change its working directory
178 env.SConscriptChdir(1)
179
180 # Set the source directory and build directory
181 #   Source directory: 'dir'
182 #   Build directory: 'dir'/out/<target_os>/<target_arch>/<release or debug>/
183 #
184 # You can get the directory as following:
185 #   env.get('SRC_DIR')
186 #   env.get('BUILD_DIR')
187
188 def __set_dir(env, dir):
189         if not os.path.exists(dir + '/SConstruct'):
190                 print '''
191 *************************************** Error *********************************
192 * The directory(%s) seems isn't a source code directory, no SConstruct file is
193 * found. *
194 *******************************************************************************
195 ''' % dir
196                 Exit(1)
197
198         if env.get('RELEASE'):
199                 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/release/'
200         else:
201                 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/debug/'
202         env.VariantDir(build_dir, dir, duplicate=0)
203
204         env.Replace(BUILD_DIR = build_dir)
205         env.Replace(SRC_DIR = dir)
206
207 def __src_to_obj(env, src, home = ''):
208         obj = env.get('BUILD_DIR') + src.replace(home, '')
209         if env.get('OBJSUFFIX'):
210                 obj += env.get('OBJSUFFIX')
211         return env.Object(obj, src)
212
213 def __install(ienv, targets, name):
214         i_n = ienv.Install(env.get('BUILD_DIR'), targets)
215         Alias(name, i_n)
216         env.AppendUnique(TS = [name])
217
218 def __installlib(ienv, targets, name):
219         user_prefix = env.get('PREFIX')
220         if user_prefix:
221                 user_lib = env.get('LIB_INSTALL_DIR')
222                 if user_lib:
223                         i_n = ienv.Install(user_lib, targets)
224                 else:
225                         i_n = ienv.Install(user_prefix + '/lib', targets)
226                 ienv.Alias("install", i_n)
227
228 def __installbin(ienv, targets, name):
229         user_prefix = env.get('PREFIX')
230         if user_prefix:
231                 i_n = ienv.Install(user_prefix + '/bin', targets)
232                 ienv.Alias("install", i_n)
233
234 def __installheader(ienv, targets, dir, name):
235         user_prefix = env.get('PREFIX')
236         if user_prefix:
237                 i_n = ienv.Install(user_prefix + '/include/' + dir ,targets)
238                 ienv.Alias("install", i_n)
239
240 def __installpcfile(ienv, targets, name):
241         user_prefix = env.get('PREFIX')
242         if user_prefix:
243                 user_lib = env.get('LIB_INSTALL_DIR')
244                 if user_lib:
245                         i_n = ienv.Install(user_lib + '/pkgconfig', targets)
246                 else:
247                         i_n = ienv.Install(user_prefix + '/lib/pkgconfig', targets)
248                 ienv.Alias("install", i_n)
249
250 def __append_target(ienv, name, targets = None):
251         if targets:
252                 env.Alias(name, targets)
253         env.AppendUnique(TS = [name])
254
255 def __print_targets(env):
256         Help('''
257 ===============================================================================
258 Targets:\n    ''')
259         for t in env.get('TS'):
260                 Help(t + ' ')
261         Help('''
262 \nDefault all targets will be built. You can specify the target to build:
263
264     $ scons [options] [target]
265 ===============================================================================
266 ''')
267
268 env.AddMethod(__set_dir, 'SetDir')
269 env.AddMethod(__print_targets, 'PrintTargets')
270 env.AddMethod(__src_to_obj, 'SrcToObj')
271 env.AddMethod(__append_target, 'AppendTarget')
272 env.AddMethod(__install, 'InstallTarget')
273 env.AddMethod(__installlib, 'UserInstallTargetLib')
274 env.AddMethod(__installbin, 'UserInstallTargetBin')
275 env.AddMethod(__installheader, 'UserInstallTargetHeader')
276 env.AddMethod(__installpcfile, 'UserInstallTargetPCFile')
277 env.SetDir(env.GetLaunchDir())
278 env['ROOT_DIR']=env.GetLaunchDir()+'/..'
279
280 Export('env')
281
282 ######################################################################
283 # Scons to generate the iotivity.pc file from iotivity.pc.in file
284 ######################################################################
285 pc_file = env.get('SRC_DIR') + '/iotivity.pc.in'
286
287 if env.get('ROUTING') == 'GW':
288         routing_define = 'ROUTING_GATEWAY'
289 elif env.get('ROUTING') == 'EP':
290         routing_define = 'ROUTING_EP'
291
292 user_prefix = env.get('PREFIX')
293 user_lib = env.get('LIB_INSTALL_DIR')
294 if not user_lib:
295         user_lib = '$${prefix}/lib'
296
297 if user_prefix:
298         pc_vars = {'\@PREFIX\@': user_prefix,
299                                 '\@EXEC_PREFIX\@':user_prefix,
300                                 '\@VERSION\@': '1.0.1',
301                                 '\@LIB_INSTALL_DIR\@': user_lib,
302                                 '\@ROUTING_DEFINE\@': routing_define
303                                 }
304 else:
305         pc_vars = {'\@PREFIX\@': env.get('BUILD_DIR'),
306                                 '\@EXEC_PREFIX\@': env.get('BUILD_DIR'),
307                                 '\@VERSION\@': '1.0.1',
308                                 '\@LIB_INSTALL_DIR\@': user_lib,
309                                 '\@ROUTING_DEFINE\@': routing_define
310                                 }
311
312 env.Substfile(pc_file, SUBST_DICT = pc_vars)
313
314 ######################################################################
315 # Link scons to Yocto cross-toolchain ONLY when target_os is yocto
316 ######################################################################
317 if target_os == "yocto":
318     '''
319     This code injects Yocto cross-compilation tools+flags into scons'
320     build environment in order to invoke the relevant tools while
321     performing a build.
322     '''
323     import os.path
324     try:
325         CC = os.environ['CC']
326         target_prefix = CC.split()[0]
327         target_prefix = target_prefix[:len(target_prefix)-3]
328         tools = {"CC" : target_prefix+"gcc",
329                 "CXX" : target_prefix+"g++",
330                 "AS" : target_prefix+"as",
331                 "LD" : target_prefix+"ld",
332                 "GDB" : target_prefix+"gdb",
333                 "STRIP" : target_prefix+"strip",
334                 "RANLIB" : target_prefix+"ranlib",
335                 "OBJCOPY" : target_prefix+"objcopy",
336                 "OBJDUMP" : target_prefix+"objdump",
337                 "AR" : target_prefix+"ar",
338                 "NM" : target_prefix+"nm",
339                 "M4" : "m4",
340                 "STRINGS": target_prefix+"strings"}
341         PATH = os.environ['PATH'].split(os.pathsep)
342         for tool in tools:
343             if tool in os.environ:
344                 for path in PATH:
345                     if os.path.isfile(os.path.join(path, tools[tool])):
346                         env[tool] = os.path.join(path, os.environ[tool])
347                         break
348         env['CROSS_COMPILE'] = target_prefix[:len(target_prefix) - 1]
349     except:
350         print "ERROR in Yocto cross-toolchain environment"
351         Exit(1)
352     '''
353     Now reset TARGET_OS to linux so that all linux specific build configurations
354     hereupon apply for the entirety of the build process.
355     '''
356     env['TARGET_OS'] = 'linux'
357     '''
358     We want to preserve debug symbols to allow BitBake to generate both DEBUG and
359     RELEASE packages for OIC.
360     '''
361     env.AppendUnique(CCFLAGS = ['-g'])
362     '''
363     Additional flags to pass to the Yocto toolchain.
364     '''
365     if env.get('RELEASE'):
366         env.AppendUnique(CPPDEFINES = ['NDEBUG'])
367     if env.get('LOGGING'):
368         env.AppendUnique(CPPDEFINES = ['TB_LOG'])
369     env.AppendUnique(CPPDEFINES = ['WITH_POSIX', '__linux__', '_GNU_SOURCE'])
370     env.AppendUnique(CFLAGS = ['-std=gnu99'])
371     env.AppendUnique(CCFLAGS = ['-Wall', '-Wextra', '-fPIC'])
372     env.AppendUnique(LINKFLAGS = ['-ldl', '-lpthread'])
373     env.AppendUnique(LIBS = ['uuid'])
374     Export('env')
375 else:
376     '''
377     If target_os is not Yocto, continue with the regular build process
378     '''
379     # Load config of target os
380     env.SConscript(target_os + '/SConscript')
381
382 # Delete the temp files of configuration
383 if env.GetOption('clean'):
384         dir = env.get('SRC_DIR')
385
386         if os.path.exists(dir + '/config.log'):
387                 Execute(Delete(dir + '/config.log'))
388         if os.path.exists(dir + '/.sconsign.dblite'):
389                 Execute(Delete(dir + '/.sconsign.dblite'))
390         if os.path.exists(dir + '/.sconf_temp'):
391                 Execute(Delete(dir + '/.sconf_temp'))
392
393 ######################################################################
394 # Check for PThreads support
395 ######################################################################
396 import iotivityconfig
397 from iotivityconfig import *
398
399 conf = Configure(env,
400         custom_tests =
401         {
402             'CheckPThreadsSupport' : iotivityconfig.check_pthreads
403         } )
404
405 # Identify whether we have pthreads support, which is necessary for
406 # threading and mutexes.  This will set the environment variable
407 # POSIX_SUPPORTED, 1 if it is supported, 0 otherwise
408 conf.CheckPThreadsSupport()
409
410 env = conf.Finish()
411 ######################################################################
412
413 env.SConscript('external_libs.scons')
414 Return('env')