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