2 # This script includes generic build options:
3 # release/debug, target os, target arch, cross toolchain, build environment etc
8 # Map of host os and allowed target os (host: allowed target os)
10 'linux': ['linux', 'android', 'arduino', 'yocto', 'tizen'],
11 'windows': ['windows', 'android', 'arduino'],
12 'darwin': ['darwin', 'ios', 'android', 'arduino'],
15 # Map of os and allowed archs (os: allowed archs)
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'],
27 es_target_enrollee_map = {
28 'arduino', 'tizen', 'linux'
31 host = platform.system().lower()
33 if host not in host_target_map:
34 print("\nError: Current system (%s) isn't supported\n" % host)
37 ######################################################################
38 # Get build options (the optins from command line)
39 ######################################################################
40 target_os = ARGUMENTS.get('TARGET_OS', host).lower() # target os
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]))
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()
50 target_arch = ARGUMENTS.get('TARGET_ARCH', default_arch) # target arch
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)
57 device_name = ARGUMENTS.get('DEVICE_NAME', "OIC-DEVICE")
59 # Get es_target_enrollee
60 es_target_enrollee = ARGUMENTS.get('ES_TARGET_ENROLLEE')
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))
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),)
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')))
94 help='installation prefix')
96 ######################################################################
97 # Platform(build target) specific options: SDK/NDK & toolchain
98 ######################################################################
99 targets_support_cc = ['linux', 'arduino', 'tizen']
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')))
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']
113 env = Environment(variables = help_vars, TARGET_ARCH = target_arch, TARGET_OS = target_os, ES_TARGET_ENROLLEE = es_target_enrollee, ESPREFIX = GetOption('prefix'))
115 Help(help_vars.GenerateHelpText(env))
117 # Set device name to __OIC_DEVICE_NAME__
118 env.AppendUnique(CPPDEFINES = ['-D__OIC_DEVICE_NAME__=' + "\'\"" + device_name + "\"\'"])
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 *******************************************************************************
128 if target_os in targets_support_cc:
129 prefix = env.get('TC_PREFIX')
130 tc_path = env.get('TC_PATH')
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')
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])
145 if prefix or tc_path:
148 # Ensure scons be able to change its working directory
149 env.SConscriptChdir(1)
151 # Set the source directory and build directory
152 # Source directory: 'dir'
153 # Build directory: 'dir'/out/<target_os>/<target_arch>/<release or debug>/
155 # You can get the directory as following:
157 # env.get('BUILD_DIR')
159 def __set_dir(env, dir):
160 if not os.path.exists(dir + '/SConstruct'):
162 *************************************** Error *********************************
163 * The directory(%s) seems isn't a source code directory, no SConstruct file is
165 *******************************************************************************
169 if env.get('RELEASE'):
170 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/release/'
172 build_dir = dir + '/out/' + target_os + '/' + target_arch + '/debug/'
173 env.VariantDir(build_dir, dir, duplicate=0)
175 env.Replace(BUILD_DIR = build_dir)
176 env.Replace(SRC_DIR = dir)
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)
184 def __install(ienv, targets, name):
185 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
187 env.AppendUnique(TS = [name])
189 def __installlib(ienv, targets, name):
190 user_prefix = env.get('PREFIX')
192 i_n = ienv.Install(user_prefix + '/lib', targets)
194 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
195 ienv.Alias("install", i_n)
197 def __installbin(ienv, targets, name):
198 user_prefix = env.get('PREFIX')
200 i_n = ienv.Install(user_prefix + '/bin', targets)
202 i_n = ienv.Install(env.get('BUILD_DIR'), targets)
203 ienv.Alias("install", i_n)
205 def __append_target(ienv, target):
206 env.AppendUnique(TS = [target])
208 def __print_targets(env):
210 ===============================================================================
212 for t in env.get('TS'):
215 \nDefault all targets will be built. You can specify the target to build:
217 $ scons [options] [target]
218 ===============================================================================
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()+'/..'
233 # Delete the temp files of configuration
234 if env.GetOption('clean'):
235 dir = env.get('SRC_DIR')
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'))