Merge remote-tracking branch 'origin/routing-manager'
[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', 'android']
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
83 if target_os in targets_disallow_multitransport:
84         help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'IP', ['BT', 'BLE', 'IP']))
85 else:
86         help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'ALL', ['ALL', 'BT', 'BLE', 'IP', 'TCP']))
87
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('ROUTING', 'Enable routing', 'EP', allowed_values=('GW', 'EP')))
94 help_vars.Add(EnumVariable('BUILD_SAMPLE', 'Build with sample', 'ON', allowed_values=('ON', 'OFF')))
95 help_vars.AddVariables(('DEVICE_NAME', 'Network display name for device (For Arduino)', device_name, None, None),)
96 help_vars.Add(PathVariable('ANDROID_NDK', 'Android NDK path', None, PathVariable.PathAccept))
97 help_vars.Add(PathVariable('ANDROID_HOME', 'Android SDK path', None, PathVariable.PathAccept))
98 help_vars.Add(PathVariable('ANDROID_GRADLE', 'Gradle binary file', None, PathVariable.PathIsFile))
99
100 AddOption('--prefix',
101                   dest='prefix',
102                   type='string',
103                   nargs=1,
104                   action='store',
105                   metavar='DIR',
106                   help='installation prefix')
107
108 ######################################################################
109 # Platform(build target) specific options: SDK/NDK & toolchain
110 ######################################################################
111 targets_support_cc = ['linux', 'arduino', 'tizen']
112
113 if target_os in targets_support_cc:
114         # Set cross compile toolchain
115         help_vars.Add('TC_PREFIX', "Toolchain prefix (Generally only be required for cross-compiling)", os.environ.get('TC_PREFIX'))
116         help_vars.Add(PathVariable('TC_PATH',
117                         'Toolchain path (Generally only be required for cross-compiling)',
118                         os.environ.get('TC_PATH')))
119
120 if target_os in ['android', 'arduino']: # Android/Arduino always uses GNU compiler regardless of the host
121         env = Environment(variables = help_vars,
122                         tools = ['gnulink', 'gcc', 'g++', 'ar', 'as']
123                         )
124 else:
125         env = Environment(variables = help_vars, TARGET_ARCH = target_arch, TARGET_OS = target_os, PREFIX = GetOption('prefix'))
126
127 Help(help_vars.GenerateHelpText(env))
128
129 tc_set_msg = '''
130 ************************************ Warning **********************************
131 *   Enviornment variable TC_PREFIX/TC_PATH is set. It will change the default *
132 * toolchain, if it isn't what you expect you should unset it, otherwise it may*
133 * cause inexplicable errors.                                                  *
134 *******************************************************************************
135 '''
136 if env.get('VERBOSE') == False:
137         env['CCCOMSTR'] = "Compiling $TARGET"
138         env['SHCCCOMSTR'] = "Compiling $TARGET"
139         env['CXXCOMSTR'] = "Compiling $TARGET"
140         env['SHCXXCOMSTR'] = "Compiling $TARGET"
141         env['LINKCOMSTR'] = "Linking $TARGET"
142         env['SHLINKCOMSTR'] = "Linking $TARGET"
143         env['ARCOMSTR'] = "Archiving $TARGET"
144         env['RANLIBCOMSTR'] = "Indexing Archive $TARGET"
145
146 if target_os in targets_support_cc:
147         prefix = env.get('TC_PREFIX')
148         tc_path = env.get('TC_PATH')
149         if prefix:
150                 env.Replace(CC = prefix + env.get('CC', 'gcc'))
151                 env.Replace(CXX = prefix + env.get('CXX', 'g++'))
152                 env.Replace(AR = prefix + env.get('AR', 'ar'))
153                 env.Replace(AS = prefix + env.get('AS', 'as'))
154                 env.Replace(RANLIB = prefix + env.get('RANLIB', 'ranlib'))
155
156         if tc_path:
157                 env.PrependENVPath('PATH', tc_path)
158                 sys_root = os.path.abspath(tc_path + '/../')
159                 env.AppendUnique(CCFLAGS = ['--sysroot=' + sys_root])
160                 env.AppendUnique(LINKFLAGS = ['--sysroot=' + sys_root])
161
162         if prefix or tc_path:
163                 print tc_set_msg
164
165 # Ensure scons be able to change its working directory
166 env.SConscriptChdir(1)
167
168 # Set the source directory and build directory
169 #   Source directory: 'dir'
170 #   Build directory: 'dir'/out/<target_os>/<target_arch>/<release or debug>/
171 #
172 # You can get the directory as following:
173 #   env.get('SRC_DIR')
174 #   env.get('BUILD_DIR')
175
176 def __set_dir(env, dir):
177         if not os.path.exists(dir + '/SConstruct'):
178                 print '''
179 *************************************** Error *********************************
180 * The directory(%s) seems isn't a source code directory, no SConstruct file is
181 * found. *
182 *******************************************************************************
183 ''' % dir
184                 Exit(1)
185
186         if env.get('RELEASE'):
187                 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/release/'
188         else:
189                 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/debug/'
190         env.VariantDir(build_dir, dir, duplicate=0)
191
192         env.Replace(BUILD_DIR = build_dir)
193         env.Replace(SRC_DIR = dir)
194
195 def __src_to_obj(env, src, home = ''):
196         obj = env.get('BUILD_DIR') + src.replace(home, '')
197         if env.get('OBJSUFFIX'):
198                 obj += env.get('OBJSUFFIX')
199         return env.Object(obj, src)
200
201 def __install(ienv, targets, name):
202         i_n = ienv.Install(env.get('BUILD_DIR'), targets)
203         Alias(name, i_n)
204         env.AppendUnique(TS = [name])
205
206 def __installlib(ienv, targets, name):
207         user_prefix = env.get('PREFIX')
208         if user_prefix:
209                 i_n = ienv.Install(user_prefix + '/lib', targets)
210         else:
211                 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
212         ienv.Alias("install", i_n)
213
214 def __installbin(ienv, targets, name):
215         user_prefix = env.get('PREFIX')
216         if user_prefix:
217                 i_n = ienv.Install(user_prefix + '/bin', targets)
218         else:
219                 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
220         ienv.Alias("install", i_n)
221
222 def __installheader(ienv, targets, dir, name):
223         user_prefix = env.get('PREFIX')
224         if user_prefix:
225                 i_n = ienv.Install(user_prefix + '/include/' + dir ,targets)
226         else:
227                 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
228         ienv.Alias("install", i_n)
229
230 def __append_target(ienv, name, targets = None):
231         if targets:
232                 env.Alias(name, targets)
233         env.AppendUnique(TS = [name])
234
235 def __print_targets(env):
236         Help('''
237 ===============================================================================
238 Targets:\n    ''')
239         for t in env.get('TS'):
240                 Help(t + ' ')
241         Help('''
242 \nDefault all targets will be built. You can specify the target to build:
243
244     $ scons [options] [target]
245 ===============================================================================
246 ''')
247
248 env.AddMethod(__set_dir, 'SetDir')
249 env.AddMethod(__print_targets, 'PrintTargets')
250 env.AddMethod(__src_to_obj, 'SrcToObj')
251 env.AddMethod(__append_target, 'AppendTarget')
252 env.AddMethod(__install, 'InstallTarget')
253 env.AddMethod(__installlib, 'UserInstallTargetLib')
254 env.AddMethod(__installbin, 'UserInstallTargetBin')
255 env.AddMethod(__installheader, 'UserInstallTargetHeader')
256 env.SetDir(env.GetLaunchDir())
257 env['ROOT_DIR']=env.GetLaunchDir()+'/..'
258
259 Export('env')
260
261 ######################################################################
262 # Link scons to Yocto cross-toolchain ONLY when target_os is yocto
263 ######################################################################
264 if target_os == "yocto":
265     '''
266     This code injects Yocto cross-compilation tools+flags into scons'
267     build environment in order to invoke the relevant tools while
268     performing a build.
269     '''
270     import os.path
271     try:
272         CC = os.environ['CC']
273         target_prefix = CC.split()[0]
274         target_prefix = target_prefix[:len(target_prefix)-3]
275         tools = {"CC" : target_prefix+"gcc",
276                 "CXX" : target_prefix+"g++",
277                 "AS" : target_prefix+"as",
278                 "LD" : target_prefix+"ld",
279                 "GDB" : target_prefix+"gdb",
280                 "STRIP" : target_prefix+"strip",
281                 "RANLIB" : target_prefix+"ranlib",
282                 "OBJCOPY" : target_prefix+"objcopy",
283                 "OBJDUMP" : target_prefix+"objdump",
284                 "AR" : target_prefix+"ar",
285                 "NM" : target_prefix+"nm",
286                 "M4" : "m4",
287                 "STRINGS": target_prefix+"strings"}
288         PATH = os.environ['PATH'].split(os.pathsep)
289         for tool in tools:
290             if tool in os.environ:
291                 for path in PATH:
292                     if os.path.isfile(os.path.join(path, tools[tool])):
293                         env[tool] = os.path.join(path, os.environ[tool])
294                         break
295         env['CROSS_COMPILE'] = target_prefix[:len(target_prefix) - 1]
296     except:
297         print "ERROR in Yocto cross-toolchain environment"
298         Exit(1)
299     '''
300     Now reset TARGET_OS to linux so that all linux specific build configurations
301     hereupon apply for the entirety of the build process.
302     '''
303     env['TARGET_OS'] = 'linux'
304     '''
305     We want to preserve debug symbols to allow BitBake to generate both DEBUG and
306     RELEASE packages for OIC.
307     '''
308     env.AppendUnique(CCFLAGS = ['-g'])
309     '''
310     Additional flags to pass to the Yocto toolchain.
311     '''
312     if env.get('RELEASE'):
313         env.AppendUnique(CPPDEFINES = ['NDEBUG'])
314     if env.get('LOGGING'):
315         env.AppendUnique(CPPDEFINES = ['TB_LOG'])
316     env.AppendUnique(CPPDEFINES = ['WITH_POSIX', '__linux__', '_GNU_SOURCE'])
317     env.AppendUnique(CFLAGS = ['-std=gnu99'])
318     env.AppendUnique(CCFLAGS = ['-Wall', '-Wextra', '-fPIC'])
319     env.AppendUnique(LINKFLAGS = ['-ldl', '-lpthread'])
320     env.AppendUnique(LIBS = ['uuid'])
321     Export('env')
322 else:
323     '''
324     If target_os is not Yocto, continue with the regular build process
325     '''
326     # Load config of target os
327     env.SConscript(target_os + '/SConscript')
328
329 # Delete the temp files of configuration
330 if env.GetOption('clean'):
331         dir = env.get('SRC_DIR')
332
333         if os.path.exists(dir + '/config.log'):
334                 Execute(Delete(dir + '/config.log'))
335         if os.path.exists(dir + '/.sconsign.dblite'):
336                 Execute(Delete(dir + '/.sconsign.dblite'))
337         if os.path.exists(dir + '/.sconf_temp'):
338                 Execute(Delete(dir + '/.sconf_temp'))
339
340 ######################################################################
341 # Check for PThreads support
342 ######################################################################
343 import iotivityconfig
344 from iotivityconfig import *
345
346 conf = Configure(env,
347         custom_tests =
348         {
349             'CheckPThreadsSupport' : iotivityconfig.check_pthreads
350         } )
351
352 # Identify whether we have pthreads support, which is necessary for
353 # threading and mutexes.  This will set the environment variable
354 # POSIX_SUPPORTED, 1 if it is supported, 0 otherwise
355 conf.CheckPThreadsSupport()
356
357 env = conf.Finish()
358 ######################################################################
359
360 env.SConscript('external_libs.scons')
361 Return('env')