API for DTLS registration and Scon script addition
[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'],
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': ['x86', 'x86_64'],
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 default_arch = platform.machine()
44 if default_arch not in os_arch_map[target_os]:
45         default_arch = os_arch_map[target_os][0].lower()
46
47 target_arch = ARGUMENTS.get('TARGET_ARCH', default_arch) # target arch
48
49 # True if binary needs to be installed on board. (Might need root permissions)
50 # set to 'no', 'false' or 0 for only compilation
51 require_upload = ARGUMENTS.get('UPLOAD', True) 
52
53 ######################################################################
54 # Common build options (release, target os, target arch)
55 ######################################################################
56 help_vars = Variables()
57 help_vars.Add(BoolVariable('RELEASE', 'Build for release?', True)) # set to 'no', 'false' or 0 for debug
58 help_vars.Add(EnumVariable('TARGET_OS', 'Target platform', host, host_target_map[host]))
59 help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'ALL', ['ALL', 'WIFI', 'BT', 'BLE', 'ETHERNET']))
60 help_vars.Add(EnumVariable('TARGET_ARCH', 'Target architecture', default_arch, os_arch_map[target_os]))
61 help_vars.Add(EnumVariable('SECURED', 'Build with DTLS', '0', allowed_values=('0', '1')))
62 help_vars.Add(BoolVariable('UPLOAD', 'Upload binary ? (For Arduino)', require_upload))
63 help_vars.Add(EnumVariable('BUILD_SAMPLE', 'Build with sample', 'ON', allowed_values=('ON', 'OFF')))
64 ######################################################################
65 # Platform(build target) specific options: SDK/NDK & toolchain
66 ######################################################################
67 targets_support_cc = ['linux', 'arduino', 'tizen']
68
69 if target_os in targets_support_cc:
70         # Set cross compile toolchain
71         help_vars.Add('TC_PREFIX', "Toolchain prefix (Generally only be required for cross-compiling)", os.environ.get('TC_PREFIX'))
72         help_vars.Add(PathVariable('TC_PATH',
73                         'Toolchain path (Generally only be required for cross-compiling)',
74                         os.environ.get('TC_PATH')))
75
76 if target_os in ['android', 'arduino']: # Android/Arduino always uses GNU compiler regardless of the host
77         env = Environment(variables = help_vars,
78                         tools = ['gnulink', 'gcc', 'g++', 'ar', 'as']
79                         )
80 else:
81         env = Environment(variables = help_vars, TARGET_ARCH = target_arch, TARGET_OS = target_os)
82
83 Help(help_vars.GenerateHelpText(env))
84
85 tc_set_msg = '''
86 ************************************ Warning **********************************
87 *   Enviornment variable TC_PREFIX/TC_PATH is set. It will change the default *
88 * toolchain, if it isn't what you expect you should unset it, otherwise it may*
89 * cause inexplicable errors.                                                  *
90 *******************************************************************************
91 '''
92
93 if target_os in targets_support_cc:
94         prefix = env.get('TC_PREFIX')
95         tc_path = env.get('TC_PATH')
96         if prefix:
97                 env.Replace(CC = prefix + 'gcc')
98                 env.Replace(CXX = prefix + 'g++')
99                 env.Replace(AR = prefix + 'ar')
100                 env.Replace(AS = prefix + 'as')
101                 env.Replace(LINK = prefix + 'ld')
102                 env.Replace(RANLIB = prefix + 'ranlib')
103
104         if tc_path:
105                 env.PrependENVPath('PATH', tc_path)
106                 sys_root = os.path.abspath(tc_path + '/../')
107                 env.AppendUnique(CCFLAGS = ['--sysroot=' + sys_root])
108                 env.AppendUnique(LINKFLAGS = ['--sysroot=' + sys_root])
109
110         if prefix or tc_path:
111                 print tc_set_msg
112
113 # Ensure scons be able to change its working directory
114 env.SConscriptChdir(1)
115
116 # Set the source directory and build directory
117 #   Source directory: 'dir'
118 #   Build directory: 'dir'/out/<target_os>/<target_arch>/<release or debug>/
119 #
120 # You can get the directory as following:
121 #   env.get('SRC_DIR')
122 #   env.get('BUILD_DIR')
123
124 def __set_dir(env, dir):
125         if not os.path.exists(dir + '/SConstruct'):
126                 print '''
127 *************************************** Error *********************************
128 * The directory(%s) seems isn't a source code directory, no SConstruct file is
129 * found. *
130 *******************************************************************************
131 ''' % dir
132                 Exit(1)
133
134         if env.get('RELEASE'):
135                 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/release/'
136         else:
137                 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/debug/'
138         env.VariantDir(build_dir, dir, duplicate=0)
139
140         env.Replace(BUILD_DIR = build_dir)
141         env.Replace(SRC_DIR = dir)
142
143 def __src_to_obj(env, src, home = ''):
144         obj = env.get('BUILD_DIR') + src.replace(home, '')
145         if env.get('OBJSUFFIX'):
146                 obj += env.get('OBJSUFFIX')
147         return env.Object(obj, src)
148
149 def __install(ienv, targets, name):
150         i_n = ienv.Install(env.get('BUILD_DIR'), targets)
151         Alias(name, i_n)
152         env.AppendUnique(TS = [name])
153
154 def __append_target(ienv, target):
155         env.AppendUnique(TS = [target])
156
157 def __print_targets(env):
158         Help('''
159 ===============================================================================
160 Targets:\n    ''')
161         for t in env.get('TS'):
162                 Help(t + ' ')
163         Help('''
164 \nDefault all targets will be built. You can specify the target to build:
165
166     $ scons [options] [target]
167 ===============================================================================
168 ''')
169
170 env.AddMethod(__set_dir, 'SetDir')
171 env.AddMethod(__print_targets, 'PrintTargets')
172 env.AddMethod(__src_to_obj, 'SrcToObj')
173 env.AddMethod(__append_target, 'AppendTarget')
174 env.AddMethod(__install, 'InstallTarget')
175 env.SetDir(env.GetLaunchDir())
176 env['ROOT_DIR']=env.GetLaunchDir()+'/..'
177
178 Export('env')
179
180 ######################################################################
181 # Link scons to Yocto cross-toolchain ONLY when target_os is yocto
182 ######################################################################
183 if target_os == "yocto":
184     '''
185     This code injects Yocto cross-compilation tools+flags into scons' 
186     build environment in order to invoke the relevant tools while 
187     performing a build.
188     '''
189     import os.path
190     try:
191         CC = os.environ['CC']
192         target_prefix = CC.split()[0]
193         target_prefix = target_prefix[:len(target_prefix)-3]
194         tools = {"CC" : target_prefix+"gcc",
195                 "CXX" : target_prefix+"g++",
196                 "AS" : target_prefix+"as",
197                 "LD" : target_prefix+"ld",
198                 "GDB" : target_prefix+"gdb",
199                 "STRIP" : target_prefix+"strip",
200                 "RANLIB" : target_prefix+"ranlib",
201                 "OBJCOPY" : target_prefix+"objcopy",
202                 "OBJDUMP" : target_prefix+"objdump",
203                 "AR" : target_prefix+"ar",
204                 "NM" : target_prefix+"nm",
205                 "M4" : "m4",
206                 "STRINGS": target_prefix+"strings"}
207         PATH = os.environ['PATH'].split(os.pathsep)
208         for tool in tools:
209             if tool in os.environ:
210                 for path in PATH:
211                     if os.path.isfile(os.path.join(path, tools[tool])):
212                         env[tool] = os.path.join(path, os.environ[tool])
213                         break
214     except:
215         print "ERROR in Yocto cross-toolchain environment"
216         Exit(1)
217     '''
218     Now reset TARGET_OS to linux so that all linux specific build configurations
219     hereupon apply for the entirety of the build process.
220     '''
221     env['TARGET_OS'] = 'linux'
222     '''
223     We want to preserve debug symbols to allow BitBake to generate both DEBUG and
224     RELEASE packages for OIC. 
225     '''
226     env['CCFLAGS'].append('-g')
227     Export('env')
228 else:
229     '''
230     If target_os is not Yocto, continue with the regular build process
231     '''
232     # Load config of target os
233     if target_os in ['linux', 'tizen']:
234                 env.SConscript('linux/SConscript')
235     else:
236                 env.SConscript(target_os + '/SConscript')
237
238 # Delete the temp files of configuration
239 if env.GetOption('clean'):
240         dir = env.get('SRC_DIR')
241
242         if os.path.exists(dir + '/config.log'):
243                 Execute(Delete(dir + '/config.log'))
244                 Execute(Delete(dir + '/.sconsign.dblite'))
245                 Execute(Delete(dir + '/.sconf_temp'))
246
247 Return('env')