Fix build error with scons-4.4.0 version which is based on python3
[platform/upstream/iotivity.git] / service / easy-setup / sampleapp / enrollee / tizen-sdb / EnrolleeSample / 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', 'x86_64', 'arm', 'powerpc', 'powerpc64', 'mips', 'mipsel'],
25                 }
26
27 es_target_enrollee_map = {
28                 'arduino', 'tizen', 'linux'
29                 }
30
31 host = platform.system().lower()
32
33 if host not in host_target_map:
34         print("\nError: Current system (%s) isn't supported\n" % host)
35         Exit(1)
36
37 ######################################################################
38 # Get build options (the optins from command line)
39 ######################################################################
40 target_os = ARGUMENTS.get('TARGET_OS', host).lower() # target os
41
42 if target_os not in host_target_map[host]:
43         print("\nError: Unknown target os: %s (Allow values: %s)\n" % (target_os, host_target_map[host]))
44         Exit(1)
45
46 default_arch = platform.machine()
47 if default_arch not in os_arch_map[target_os]:
48         default_arch = os_arch_map[target_os][0].lower()
49
50 target_arch = ARGUMENTS.get('TARGET_ARCH', default_arch) # target arch
51
52 # True if binary needs to be installed on board. (Might need root permissions)
53 # set to 'no', 'false' or 0 for only compilation
54 require_upload = ARGUMENTS.get('UPLOAD', True)
55
56 # Get the device name
57 device_name = ARGUMENTS.get('DEVICE_NAME', "OIC-DEVICE")
58
59 # Get es_target_enrollee
60 es_target_enrollee = ARGUMENTS.get('ES_TARGET_ENROLLEE')
61
62 if es_target_enrollee not in es_target_enrollee_map:
63         print("\nError: Unknown ES_TARGET_ENROLLEE: %s (Allow values: %s)\n" % (es_target_enrollee, es_target_enrollee_map))
64         Exit(1)
65
66
67 ######################################################################
68 # Common build options (release, target os, target arch)
69 ######################################################################
70 help_vars = Variables()
71 help_vars.Add(BoolVariable('RELEASE', 'Build for release?', True)) # set to 'no', 'false' or 0 for debug
72 help_vars.Add(BoolVariable('LOGGING', 'Enable stack logging', False))
73 help_vars.Add(EnumVariable('TARGET_OS', 'Target platform', host, host_target_map[host]))
74 help_vars.Add(ListVariable('TARGET_TRANSPORT', 'Target transport', 'ALL', ['ALL', 'BT', 'BLE', 'IP', 'TCP']))
75 help_vars.Add(EnumVariable('TARGET_ARCH', 'Target architecture', default_arch, os_arch_map[target_os]))
76 help_vars.Add(EnumVariable('SECURED', 'Build with DTLS', '0', allowed_values=('0', '1')))
77 help_vars.Add(BoolVariable('UPLOAD', 'Upload binary ? (For Arduino)', require_upload))
78 help_vars.Add(EnumVariable('ROUTING', 'Enable routing', 'EP', allowed_values=('GW', 'EP')))
79 help_vars.Add(EnumVariable('BUILD_SAMPLE', 'Build with sample', 'ON', allowed_values=('ON', 'OFF')))
80 help_vars.Add(BoolVariable('WITH_TCP', 'Build with TCP adapter', False))
81 help_vars.Add(BoolVariable('DISABLE_TCP_SERVER', 'Disable TCP server', False))
82 help_vars.Add(BoolVariable('WITH_CLOUD', 'Build including AccountManager class and Cloud Client sample', False))
83 help_vars.AddVariables(('DEVICE_NAME', 'Network display name for device', 'OIC-DEVICE', None, None),)
84
85 #ES_TARGET_ENROLLEE is for specifying what is our target enrollee (Arduino or rest of platforms which support Multicast)
86 help_vars.Add(EnumVariable('ES_TARGET_ENROLLEE', 'Target Enrollee', 'arduino', allowed_values=('arduino', 'tizen', 'linux')))
87
88 AddOption('--prefix',
89                   dest='prefix',
90                   type='string',
91                   nargs=1,
92                   action='store',
93                   metavar='DIR',
94                   help='installation prefix')
95
96 ######################################################################
97 # Platform(build target) specific options: SDK/NDK & toolchain
98 ######################################################################
99 targets_support_cc = ['linux', 'arduino', 'tizen']
100
101 if target_os in targets_support_cc:
102         # Set cross compile toolchain
103         help_vars.Add('TC_PREFIX', "Toolchain prefix (Generally only be required for cross-compiling)", os.environ.get('TC_PREFIX'))
104         help_vars.Add(PathVariable('TC_PATH',
105                         'Toolchain path (Generally only be required for cross-compiling)',
106                         os.environ.get('TC_PATH')))
107
108 if target_os in ['android', 'arduino']: # Android/Arduino always uses GNU compiler regardless of the host
109         env = Environment(variables = help_vars,
110                         tools = ['gnulink', 'gcc', 'g++', 'ar', 'as']
111                         )
112 else:
113         env = Environment(variables = help_vars, TARGET_ARCH = target_arch, TARGET_OS = target_os, ES_TARGET_ENROLLEE = es_target_enrollee, ESPREFIX = GetOption('prefix'))
114
115 Help(help_vars.GenerateHelpText(env))
116
117 # Set device name to __OIC_DEVICE_NAME__
118 env.AppendUnique(CPPDEFINES = ['-D__OIC_DEVICE_NAME__=' + "\'\"" + device_name + "\"\'"])
119
120 tc_set_msg = '''
121 ************************************ Warning **********************************
122 *   Enviornment variable TC_PREFIX/TC_PATH is set. It will change the default *
123 * toolchain, if it isn't what you expect you should unset it, otherwise it may*
124 * cause inexplicable errors.                                                  *
125 *******************************************************************************
126 '''
127
128 if target_os in targets_support_cc:
129         prefix = env.get('TC_PREFIX')
130         tc_path = env.get('TC_PATH')
131         if prefix:
132                 env.Replace(CC = prefix + 'gcc')
133                 env.Replace(CXX = prefix + 'g++')
134                 env.Replace(AR = prefix + 'ar')
135                 env.Replace(AS = prefix + 'as')
136                 env.Replace(LINK = prefix + 'ld')
137                 env.Replace(RANLIB = prefix + 'ranlib')
138
139         if tc_path:
140                 env.PrependENVPath('PATH', tc_path)
141                 sys_root = os.path.abspath(tc_path + '/../')
142                 env.AppendUnique(CCFLAGS = ['--sysroot=' + sys_root])
143                 env.AppendUnique(LINKFLAGS = ['--sysroot=' + sys_root])
144
145         if prefix or tc_path:
146                 print(tc_set_msg)
147
148 # Ensure scons be able to change its working directory
149 env.SConscriptChdir(1)
150
151 # Set the source directory and build directory
152 #   Source directory: 'dir'
153 #   Build directory: 'dir'/out/<target_os>/<target_arch>/<release or debug>/
154 #
155 # You can get the directory as following:
156 #   env.get('SRC_DIR')
157 #   env.get('BUILD_DIR')
158
159 def __set_dir(env, dir):
160         if not os.path.exists(dir + '/SConstruct'):
161                 print('''
162 *************************************** Error *********************************
163 * The directory(%s) seems isn't a source code directory, no SConstruct file is
164 * found. *
165 *******************************************************************************
166 ''' % dir)
167                 Exit(1)
168
169         if env.get('RELEASE'):
170                 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/release/'
171         else:
172                 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/debug/'
173         env.VariantDir(build_dir, dir, duplicate=0)
174
175         env.Replace(BUILD_DIR = build_dir)
176         env.Replace(SRC_DIR = dir)
177
178 def __src_to_obj(env, src, home = ''):
179         obj = env.get('BUILD_DIR') + src.replace(home, '')
180         if env.get('OBJSUFFIX'):
181                 obj += env.get('OBJSUFFIX')
182         return env.Object(obj, src)
183
184 def __install(ienv, targets, name):
185         i_n = ienv.Install(env.get('BUILD_DIR'), targets)
186         Alias(name, i_n)
187         env.AppendUnique(TS = [name])
188
189 def __installlib(ienv, targets, name):
190         user_prefix = env.get('PREFIX')
191         if user_prefix:
192                 i_n = ienv.Install(user_prefix + '/lib', targets)
193         else:
194                 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
195         ienv.Alias("install", i_n)
196
197 def __installbin(ienv, targets, name):
198         user_prefix = env.get('PREFIX')
199         if user_prefix:
200                 i_n = ienv.Install(user_prefix + '/bin', targets)
201         else:
202                 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
203         ienv.Alias("install", i_n)
204
205 def __append_target(ienv, target):
206         env.AppendUnique(TS = [target])
207
208 def __print_targets(env):
209         Help('''
210 ===============================================================================
211 Targets:\n    ''')
212         for t in env.get('TS'):
213                 Help(t + ' ')
214         Help('''
215 \nDefault all targets will be built. You can specify the target to build:
216
217     $ scons [options] [target]
218 ===============================================================================
219 ''')
220
221 env.AddMethod(__set_dir, 'SetDir')
222 env.AddMethod(__print_targets, 'PrintTargets')
223 env.AddMethod(__src_to_obj, 'SrcToObj')
224 env.AddMethod(__append_target, 'AppendTarget')
225 env.AddMethod(__install, 'InstallTarget')
226 env.AddMethod(__installlib, 'UserInstallTargetLib')
227 env.AddMethod(__installbin, 'UserInstallTargetBin')
228 env.SetDir(env.GetLaunchDir())
229 env['ROOT_DIR']=env.GetLaunchDir()+'/..'
230
231 Export('env')
232
233 # Delete the temp files of configuration
234 if env.GetOption('clean'):
235         dir = env.get('SRC_DIR')
236
237         if os.path.exists(dir + '/config.log'):
238                 Execute(Delete(dir + '/config.log'))
239                 Execute(Delete(dir + '/.sconsign.dblite'))
240                 Execute(Delete(dir + '/.sconf_temp'))
241
242 Return('env')