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