6aaa3c0edb5f92086d8340a9f6cc9a293ce28e10
[platform/upstream/iotivity.git] / resource / csdk / connectivity / build / 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', '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                 'darwin': ['i386', 'x86_64'],
22                 'ios': ['i386', 'x86_64', 'armv7', 'armv7s', 'arm64'],
23                 'arduino': ['avr', 'arm'],
24                 'yocto': ['i586', 'i686', 'x86_64', 'arm', 'aarch64', 'powerpc', 'powerpc64', 'mips', 'mipsel'],
25                 }
26
27 host = platform.system().lower()
28
29 if not host_target_map.has_key(host):
30         print "\nError: Current system (%s) isn't supported\n" % host
31         Exit(1)
32
33 ######################################################################
34 # Get build options (the optins from command line)
35 ######################################################################
36 target_os = ARGUMENTS.get('TARGET_OS', host).lower() # target os
37
38 if target_os not in host_target_map[host]:
39         print "\nError: Unknown target os: %s (Allow values: %s)\n" % (target_os, host_target_map[host])
40         Exit(1)
41
42 default_arch = platform.machine()
43 if default_arch not in os_arch_map[target_os]:
44         default_arch = os_arch_map[target_os][0].lower()
45
46 target_arch = ARGUMENTS.get('TARGET_ARCH', default_arch) # target arch
47
48 # True if binary needs to be installed on board. (Might need root permissions)
49 # set to 'no', 'false' or 0 for only compilation
50 require_upload = ARGUMENTS.get('UPLOAD', True)
51
52 # Get the device name
53 device_name = ARGUMENTS.get('DEVICE_NAME', "OIC-DEVICE")
54
55 ######################################################################
56 # Common build options (release, target os, target arch)
57 ######################################################################
58 help_vars = Variables()
59 help_vars.Add(BoolVariable('RELEASE', 'Build for release?', True)) # set to 'no', 'false' or 0 for debug
60 help_vars.Add(BoolVariable('LOGGING', 'Enable stack logging', False))
61 help_vars.Add(EnumVariable('TARGET_OS', 'Target platform', host, host_target_map[host]))
62 help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'ALL', ['ALL', 'BT', 'BLE', 'IP']))
63 help_vars.Add(EnumVariable('TARGET_ARCH', 'Target architecture', default_arch, os_arch_map[target_os]))
64 help_vars.Add(EnumVariable('SECURED', 'Build with DTLS', '0', allowed_values=('0', '1')))
65 help_vars.Add(BoolVariable('UPLOAD', 'Upload binary ? (For Arduino)', require_upload))
66 help_vars.Add(EnumVariable('ROUTING', 'Enable routing', 'EP', allowed_values=('GW', 'EP')))
67 help_vars.Add(EnumVariable('BUILD_SAMPLE', 'Build with sample', 'ON', allowed_values=('ON', 'OFF')))
68 help_vars.Add(BoolVariable('WITH_TCP', 'Enable TCP', False))
69 help_vars.Add(BoolVariable('DISABLE_TCP_SERVER', 'Disable TCP server', False))
70 help_vars.Add(ListVariable('WITH_MQ', 'Build with MQ publisher/subscriber/broker', 'OFF', ['OFF', 'SUB', 'PUB', 'BROKER']))
71
72 help_vars.AddVariables(('DEVICE_NAME', 'Network display name for device', 'OIC-DEVICE', None, None),)
73
74 AddOption('--prefix',
75                   dest='prefix',
76                   type='string',
77                   nargs=1,
78                   action='store',
79                   metavar='DIR',
80                   help='installation prefix')
81
82 ######################################################################
83 # Platform(build target) specific options: SDK/NDK & toolchain
84 ######################################################################
85 targets_support_cc = ['linux', 'arduino', 'tizen']
86
87 if target_os in targets_support_cc:
88         # Set cross compile toolchain
89         help_vars.Add('TC_PREFIX', "Toolchain prefix (Generally only be required for cross-compiling)", os.environ.get('TC_PREFIX'))
90         help_vars.Add(PathVariable('TC_PATH',
91                         'Toolchain path (Generally only be required for cross-compiling)',
92                         os.environ.get('TC_PATH')))
93
94 if target_os in ['android', 'arduino']: # Android/Arduino always uses GNU compiler regardless of the host
95         env = Environment(variables = help_vars,
96                         tools = ['gnulink', 'gcc', 'g++', 'ar', 'as']
97                         )
98 else:
99         env = Environment(variables = help_vars, TARGET_ARCH = target_arch, TARGET_OS = target_os, PREFIX = GetOption('prefix'))
100
101 Help(help_vars.GenerateHelpText(env))
102
103 # Set device name to __OIC_DEVICE_NAME__
104 env.AppendUnique(CPPDEFINES = ['-D__OIC_DEVICE_NAME__=' + "\'\"" + device_name + "\"\'"])
105
106 tc_set_msg = '''
107 ************************************ Warning **********************************
108 *   Enviornment variable TC_PREFIX/TC_PATH is set. It will change the default *
109 * toolchain, if it isn't what you expect you should unset it, otherwise it may*
110 * cause inexplicable errors.                                                  *
111 *******************************************************************************
112 '''
113
114 if target_os in targets_support_cc:
115         prefix = env.get('TC_PREFIX')
116         tc_path = env.get('TC_PATH')
117         if prefix:
118                 env.Replace(CC = prefix + 'gcc')
119                 env.Replace(CXX = prefix + 'g++')
120                 env.Replace(AR = prefix + 'ar')
121                 env.Replace(AS = prefix + 'as')
122                 env.Replace(LINK = prefix + 'ld')
123                 env.Replace(RANLIB = prefix + 'ranlib')
124
125         if tc_path:
126                 env.PrependENVPath('PATH', tc_path)
127                 sys_root = os.path.abspath(tc_path + '/../')
128                 env.AppendUnique(CCFLAGS = ['--sysroot=' + sys_root])
129                 env.AppendUnique(LINKFLAGS = ['--sysroot=' + sys_root])
130
131         if prefix or tc_path:
132                 print tc_set_msg
133
134 # Ensure scons be able to change its working directory
135 env.SConscriptChdir(1)
136
137 # Set the source directory and build directory
138 #   Source directory: 'dir'
139 #   Build directory: 'dir'/out/<target_os>/<target_arch>/<release or debug>/
140 #
141 # You can get the directory as following:
142 #   env.get('SRC_DIR')
143 #   env.get('BUILD_DIR')
144
145 def __set_dir(env, dir):
146         if not os.path.exists(dir + '/SConstruct'):
147                 print '''
148 *************************************** Error *********************************
149 * The directory(%s) seems isn't a source code directory, no SConstruct file is
150 * found. *
151 *******************************************************************************
152 ''' % dir
153                 Exit(1)
154
155         if env.get('RELEASE'):
156                 build_dir = os.path.join(dir, 'out', target_os, target_arch, 'release') + os.sep
157         else:
158                 build_dir = os.path.join(dir, 'out', target_os, target_arch, 'debug') + os.sep
159         env.VariantDir(build_dir, dir, duplicate=0)
160
161         env.Replace(BUILD_DIR = build_dir)
162         env.Replace(SRC_DIR = dir)
163
164 def __src_to_obj(env, src, home = ''):
165         obj = env.get('BUILD_DIR') + src.replace(home, '')
166         if env.get('OBJSUFFIX'):
167                 obj += env.get('OBJSUFFIX')
168         return env.Object(obj, src)
169
170 def __install(ienv, targets, name):
171         i_n = ienv.Install(env.get('BUILD_DIR'), targets)
172         Alias(name, i_n)
173         env.AppendUnique(TS = [name])
174
175 def __installlib(ienv, targets, name):
176         user_prefix = env.get('PREFIX')
177         if user_prefix:
178                 install_lib_dir = os.path.join(user_prefix, 'lib')
179         else:
180                 install_lib_dir = os.path.join(env.get('BUILD_DIR'), 'lib')
181         i_n = ienv.Install(install_lib_dir, targets)
182         ienv.Alias("install", i_n)
183
184 def __installbin(ienv, targets, name):
185         user_prefix = env.get('PREFIX')
186         if user_prefix:
187                 i_n = ienv.Install(user_prefix + '/bin', targets)
188                 ienv.Alias("install", i_n)
189
190 def __append_target(ienv, target):
191         env.AppendUnique(TS = [target])
192
193 def __print_targets(env):
194         Help('''
195 ===============================================================================
196 Targets:\n    ''')
197         for t in env.get('TS'):
198                 Help(t + ' ')
199         Help('''
200 \nDefault all targets will be built. You can specify the target to build:
201
202     $ scons [options] [target]
203 ===============================================================================
204 ''')
205
206 env.AddMethod(__set_dir, 'SetDir')
207 env.AddMethod(__print_targets, 'PrintTargets')
208 env.AddMethod(__src_to_obj, 'SrcToObj')
209 env.AddMethod(__append_target, 'AppendTarget')
210 env.AddMethod(__install, 'InstallTarget')
211 env.AddMethod(__installlib, 'UserInstallTargetLib')
212 env.AddMethod(__installbin, 'UserInstallTargetBin')
213 env.SetDir(env.GetLaunchDir())
214 env['ROOT_DIR']=env.GetLaunchDir()+'/..'
215
216 Export('env')
217
218 ######################################################################
219 # Link scons to Yocto cross-toolchain ONLY when target_os is yocto
220 ######################################################################
221 if target_os == "yocto":
222     '''
223     This code injects Yocto cross-compilation tools+flags into scons'
224     build environment in order to invoke the relevant tools while
225     performing a build.
226     '''
227     import os.path
228     try:
229         CC = os.environ['CC']
230         target_prefix = CC.split()[0]
231         target_prefix = target_prefix[:len(target_prefix)-3]
232         tools = {"CC" : target_prefix+"gcc",
233                 "CXX" : target_prefix+"g++",
234                 "AS" : target_prefix+"as",
235                 "LD" : target_prefix+"ld",
236                 "GDB" : target_prefix+"gdb",
237                 "STRIP" : target_prefix+"strip",
238                 "RANLIB" : target_prefix+"ranlib",
239                 "OBJCOPY" : target_prefix+"objcopy",
240                 "OBJDUMP" : target_prefix+"objdump",
241                 "AR" : target_prefix+"ar",
242                 "NM" : target_prefix+"nm",
243                 "M4" : "m4",
244                 "STRINGS": target_prefix+"strings"}
245         PATH = os.environ['PATH'].split(os.pathsep)
246         for tool in tools:
247             if tool in os.environ:
248                 for path in PATH:
249                     if os.path.isfile(os.path.join(path, tools[tool])):
250                         env[tool] = os.path.join(path, os.environ[tool])
251                         break
252         env['CROSS_COMPILE'] = target_prefix[:len(target_prefix) - 1]
253     except:
254         print "ERROR in Yocto cross-toolchain environment"
255         Exit(1)
256     '''
257     Now reset TARGET_OS to linux so that all linux specific build configurations
258     hereupon apply for the entirety of the build process.
259     '''
260     env['TARGET_OS'] = 'linux'
261     '''
262     We want to preserve debug symbols to allow BitBake to generate both DEBUG and
263     RELEASE packages for OIC.
264     '''
265     env.AppendUnique(CCFLAGS = ['-g'])
266     '''
267     Additional flags to pass to the Yocto toolchain.
268     '''
269     if env.get('RELEASE'):
270         env.AppendUnique(CPPDEFINES = ['NDEBUG'])
271     if env.get('LOGGING'):
272         env.AppendUnique(CPPDEFINES = ['TB_LOG'])
273     env.AppendUnique(CPPDEFINES = ['WITH_POSIX', '__linux__', '_GNU_SOURCE'])
274     env.AppendUnique(CFLAGS = ['-std=gnu99'])
275     env.AppendUnique(CCFLAGS = ['-Wall', '-fPIC'])
276     if target_os in ['linux']:
277         env.AppendUnique(LIBS = ['dl', 'pthread'])
278     Export('env')
279 else:
280     '''
281     If target_os is not Yocto, continue with the regular build process
282     '''
283     # Load config of target os
284     if target_os in ['linux', 'tizen']:
285                 env.SConscript('linux/SConscript')
286     else:
287                 env.SConscript(target_os + '/SConscript')
288
289 # Delete the temp files of configuration
290 if env.GetOption('clean'):
291         dir = env.get('SRC_DIR')
292
293         if os.path.exists(dir + '/config.log'):
294                 Execute(Delete(dir + '/config.log'))
295                 Execute(Delete(dir + '/.sconsign.dblite'))
296                 Execute(Delete(dir + '/.sconf_temp'))
297
298 Return('env')