blob: 8e1b1a73a884137540b12841ba81631beb69ce73 [file] [log] [blame]
Alexandre Ramesb78f1392016-07-01 14:22:22 +01001# Copyright 2015, VIXL authors
armvixlad96eda2013-06-14 11:42:37 +01002# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are met:
6#
7# * Redistributions of source code must retain the above copyright notice,
8# this list of conditions and the following disclaimer.
9# * Redistributions in binary form must reproduce the above copyright notice,
10# this list of conditions and the following disclaimer in the documentation
11# and/or other materials provided with the distribution.
12# * Neither the name of ARM Limited nor the names of its contributors may be
13# used to endorse or promote products derived from this software without
14# specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND
17# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
20# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
armvixldb644342015-07-21 11:37:10 +010027import glob
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +000028import itertools
armvixlad96eda2013-06-14 11:42:37 +010029import os
armvixldb644342015-07-21 11:37:10 +010030from os.path import join
armvixlc68cb642014-09-25 18:49:30 +010031import platform
armvixl4a102ba2014-07-14 09:02:40 +010032import subprocess
armvixlad96eda2013-06-14 11:42:37 +010033import sys
Pierre Langloisa3b21462016-08-04 16:01:51 +010034from collections import OrderedDict
armvixlad96eda2013-06-14 11:42:37 +010035
armvixl4a102ba2014-07-14 09:02:40 +010036root_dir = os.path.dirname(File('SConstruct').rfile().abspath)
armvixldb644342015-07-21 11:37:10 +010037sys.path.insert(0, join(root_dir, 'tools'))
38import config
armvixl4a102ba2014-07-14 09:02:40 +010039import util
40
Pierre Langlois8253a3c2016-12-14 18:54:22 +000041from SCons.Errors import UserError
42
armvixlc68cb642014-09-25 18:49:30 +010043
44Help('''
45Build system for the VIXL project.
46See README.md for documentation and details about the build system.
armvixlc68cb642014-09-25 18:49:30 +010047''')
48
49
armvixldb644342015-07-21 11:37:10 +010050# We track top-level targets to automatically generate help and alias them.
Pierre Langlois287e6d12016-11-21 14:56:01 +000051class VIXLTargets:
armvixldb644342015-07-21 11:37:10 +010052 def __init__(self):
53 self.targets = []
54 self.help_messages = []
55 def Add(self, target, help_message):
56 self.targets.append(target)
57 self.help_messages.append(help_message)
58 def Help(self):
armvixl684cd2a2015-10-23 13:38:33 +010059 res = ""
armvixldb644342015-07-21 11:37:10 +010060 for i in range(len(self.targets)):
61 res += '\t{0:<{1}}{2:<{3}}\n'.format(
62 'scons ' + self.targets[i],
63 len('scons ') + max(map(len, self.targets)),
64 ' : ' + self.help_messages[i],
65 len(' : ') + max(map(len, self.help_messages)))
66 return res
armvixlad96eda2013-06-14 11:42:37 +010067
Pierre Langlois287e6d12016-11-21 14:56:01 +000068top_level_targets = VIXLTargets()
armvixlad96eda2013-06-14 11:42:37 +010069
70
armvixldb644342015-07-21 11:37:10 +010071
72# Build options ----------------------------------------------------------------
73
74# Store all the options in a dictionary.
75# The SConstruct will check the build variables and construct the build
76# environment as appropriate.
77options = {
78 'all' : { # Unconditionally processed.
79 'CCFLAGS' : ['-Wall',
80 '-Werror',
81 '-fdiagnostics-show-option',
82 '-Wextra',
83 '-Wredundant-decls',
84 '-pedantic',
Alexandre Ramesfd098172016-08-09 10:29:53 +010085 '-Wwrite-strings',
Jacob Bramleycff5a2e2019-03-15 09:34:56 +000086 '-Wunused',
87 '-Wno-missing-noreturn'],
armvixldb644342015-07-21 11:37:10 +010088 'CPPPATH' : [config.dir_src_vixl]
89 },
90# 'build_option:value' : {
91# 'environment_key' : 'values to append'
92# },
93 'mode:debug' : {
94 'CCFLAGS' : ['-DVIXL_DEBUG', '-O0']
95 },
96 'mode:release' : {
Alexandre Ramesfa4a4bd2016-07-25 14:14:22 +010097 'CCFLAGS' : ['-O3'],
armvixldb644342015-07-21 11:37:10 +010098 },
Pierre Langloisa3b21462016-08-04 16:01:51 +010099 'simulator:aarch64' : {
Pierre Langlois1e85b7f2016-08-05 14:20:36 +0100100 'CCFLAGS' : ['-DVIXL_INCLUDE_SIMULATOR_AARCH64'],
armvixldb644342015-07-21 11:37:10 +0100101 },
102 'symbols:on' : {
103 'CCFLAGS' : ['-g'],
104 'LINKFLAGS' : ['-g']
105 },
Georgia Kouveli38d5d1b2016-11-16 11:58:41 +0000106 'negative_testing:on' : {
107 'CCFLAGS' : ['-DVIXL_NEGATIVE_TESTING']
Jacob Bramley1fa6f062016-12-19 11:40:08 +0000108 },
109 'code_buffer_allocator:mmap' : {
110 'CCFLAGS' : ['-DVIXL_CODE_BUFFER_MMAP']
111 },
112 'code_buffer_allocator:malloc' : {
113 'CCFLAGS' : ['-DVIXL_CODE_BUFFER_MALLOC']
Vincent Belliard4e52d4d2018-04-03 13:34:44 -0700114 },
115 'ubsan:on' : {
116 'CCFLAGS': ['-fsanitize=undefined'],
117 'LINKFLAGS': ['-fsanitize=undefined']
Georgia Kouveli38d5d1b2016-11-16 11:58:41 +0000118 }
armvixldb644342015-07-21 11:37:10 +0100119 }
armvixlad96eda2013-06-14 11:42:37 +0100120
121
armvixldb644342015-07-21 11:37:10 +0100122# A `DefaultVariable` has a default value that depends on elements not known
123# when variables are first evaluated.
124# Each `DefaultVariable` has a handler that will compute the default value for
125# the given environment.
126def modifiable_flags_handler(env):
127 env['modifiable_flags'] = \
128 'on' if 'mode' in env and env['mode'] == 'debug' else 'off'
armvixl6e2c8272015-03-31 11:04:14 +0100129
130
armvixldb644342015-07-21 11:37:10 +0100131def symbols_handler(env):
132 env['symbols'] = 'on' if 'mode' in env and env['mode'] == 'debug' else 'off'
armvixlad96eda2013-06-14 11:42:37 +0100133
Pierre Langlois8253a3c2016-12-14 18:54:22 +0000134def Is32BitHost(env):
135 return env['host_arch'] in ['aarch32', 'i386']
136
137def IsAArch64Host(env):
138 return env['host_arch'] == 'aarch64'
139
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000140def CanTargetA32(env):
141 return 'a32' in env['target']
142
143def CanTargetT32(env):
144 return 't32' in env['target']
145
Pierre Langlois8253a3c2016-12-14 18:54:22 +0000146def CanTargetAArch32(env):
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000147 return CanTargetA32(env) or CanTargetT32(env)
148
149def CanTargetA64(env):
150 return 'a64' in env['target']
Pierre Langlois8253a3c2016-12-14 18:54:22 +0000151
152def CanTargetAArch64(env):
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000153 return CanTargetA64(env)
Pierre Langloisa3b21462016-08-04 16:01:51 +0100154
155
156# By default, include the simulator only if AArch64 is targeted and we are not
157# building VIXL natively for AArch64.
158def simulator_handler(env):
Pierre Langlois8253a3c2016-12-14 18:54:22 +0000159 if not IsAArch64Host(env) and CanTargetAArch64(env):
Pierre Langloisa3b21462016-08-04 16:01:51 +0100160 env['simulator'] = 'aarch64'
161 else:
162 env['simulator'] = 'none'
163
164
Jacob Bramley1fa6f062016-12-19 11:40:08 +0000165# 'mmap' is required for use with 'mprotect', which is needed for the tests
166# (when running natively), so we use it by default where we can.
167def code_buffer_allocator_handler(env):
168 directives = util.GetCompilerDirectives(env)
169 if '__linux__' in directives:
170 env['code_buffer_allocator'] = 'mmap'
171 else:
172 env['code_buffer_allocator'] = 'malloc'
173
Pierre Langlois8253a3c2016-12-14 18:54:22 +0000174# A validator checks the consistency of provided options against the environment.
175def default_validator(env):
176 pass
177
178
Pierre Langlois8253a3c2016-12-14 18:54:22 +0000179def simulator_validator(env):
180 if env['simulator'] == 'aarch64' and not CanTargetAArch64(env):
181 raise UserError('Building an AArch64 simulator implies that VIXL targets '
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000182 'AArch64. Set `target` to include `aarch64` or `a64`.')
Pierre Langlois8253a3c2016-12-14 18:54:22 +0000183
184
Pierre Langloisa3b21462016-08-04 16:01:51 +0100185# Default variables may depend on each other, therefore we need this dictionnary
186# to be ordered.
187vars_default_handlers = OrderedDict({
Pierre Langlois8253a3c2016-12-14 18:54:22 +0000188 # variable_name : [ 'default val', 'handler', 'validator']
189 'symbols' : [ 'mode==debug', symbols_handler, default_validator ],
190 'modifiable_flags' : [ 'mode==debug', modifiable_flags_handler, default_validator],
Jacob Bramley1fa6f062016-12-19 11:40:08 +0000191 'simulator' : [ 'on if the target architectures include AArch64 but '
Pierre Langloisa3b21462016-08-04 16:01:51 +0100192 'the host is not AArch64, else off',
Jacob Bramley1fa6f062016-12-19 11:40:08 +0000193 simulator_handler, simulator_validator ],
194 'code_buffer_allocator' : [ 'mmap with __linux__, malloc otherwise',
195 code_buffer_allocator_handler, default_validator ]
Pierre Langloisa3b21462016-08-04 16:01:51 +0100196 })
armvixldb644342015-07-21 11:37:10 +0100197
198
Pierre Langloisa3b21462016-08-04 16:01:51 +0100199def DefaultVariable(name, help, allowed_values):
200 help = '%s (%s)' % (help, '|'.join(allowed_values))
armvixldb644342015-07-21 11:37:10 +0100201 default_value = vars_default_handlers[name][0]
Pierre Langloisa3b21462016-08-04 16:01:51 +0100202 def validator(name, value, env):
203 if value != default_value and value not in allowed_values:
Pierre Langlois8253a3c2016-12-14 18:54:22 +0000204 raise UserError('Invalid value for option {name}: {value}. '
205 'Valid values are: {allowed_values}'.format(
206 name, value, allowed_values))
Pierre Langloisa3b21462016-08-04 16:01:51 +0100207 return (name, help, default_value, validator)
armvixldb644342015-07-21 11:37:10 +0100208
209
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000210def AliasedListVariable(name, help, default_value, allowed_values, aliasing):
211 help = '%s (all|auto|comma-separated list) (any combination from [%s])' % \
212 (help, ', '.join(allowed_values))
213
214 def validator(name, value, env):
215 # Here list has been converted to space separated strings.
216 if value == '': return # auto
217 for v in value.split():
218 if v not in allowed_values:
219 raise UserError('Invalid value for %s: %s' % (name, value))
220
221 def converter(value):
222 if value == 'auto': return []
223 if value == 'all':
224 translated = [aliasing[v] for v in allowed_values]
225 return list(set(itertools.chain.from_iterable(translated)))
226 # The validator is run later hence the get.
227 translated = [aliasing.get(v, v) for v in value.split(',')]
228 return list(set(itertools.chain.from_iterable(translated)))
229
230 return (name, help, default_value, validator, converter)
231
232
armvixldb644342015-07-21 11:37:10 +0100233vars = Variables()
234# Define command line build options.
armvixldb644342015-07-21 11:37:10 +0100235vars.AddVariables(
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000236 AliasedListVariable('target', 'Target ISA/Architecture', 'auto',
237 ['aarch32', 'a32', 't32', 'aarch64', 'a64'],
238 {'aarch32' : ['a32', 't32'],
239 'a32' : ['a32'], 't32' : ['t32'],
240 'aarch64' : ['a64'], 'a64' : ['a64']}),
armvixldb644342015-07-21 11:37:10 +0100241 EnumVariable('mode', 'Build mode',
242 'release', allowed_values=config.build_options_modes),
Vincent Belliard4e52d4d2018-04-03 13:34:44 -0700243 EnumVariable('ubsan', 'Enable undefined behavior checks',
244 'off', allowed_values=['on', 'off']),
Jacob Bramley1fa6f062016-12-19 11:40:08 +0000245 EnumVariable('negative_testing',
246 'Enable negative testing (needs exceptions)',
Georgia Kouveli38d5d1b2016-11-16 11:58:41 +0000247 'off', allowed_values=['on', 'off']),
armvixldb644342015-07-21 11:37:10 +0100248 DefaultVariable('symbols', 'Include debugging symbols in the binaries',
249 ['on', 'off']),
Pierre Langloisa3b21462016-08-04 16:01:51 +0100250 DefaultVariable('simulator', 'Simulators to include', ['aarch64', 'none']),
Jacob Bramley1fa6f062016-12-19 11:40:08 +0000251 DefaultVariable('code_buffer_allocator',
252 'Configure the allocation mechanism in the CodeBuffer',
253 ['malloc', 'mmap']),
armvixldb644342015-07-21 11:37:10 +0100254 ('std', 'C++ standard. The standards tested are: %s.' % \
Anthony Barbier9c4ba7a2019-02-15 15:20:25 +0000255 ', '.join(config.tested_cpp_standards)),
256 ('compiler_wrapper', 'Command to prefix to the C and C++ compiler (e.g ccache)', '')
armvixldb644342015-07-21 11:37:10 +0100257 )
armvixlad96eda2013-06-14 11:42:37 +0100258
armvixldb644342015-07-21 11:37:10 +0100259# We use 'variant directories' to avoid recompiling multiple times when build
260# options are changed, different build paths are used depending on the options
261# set. These are the options that should be reflected in the build directory
262# path.
Pierre Langloisa3b21462016-08-04 16:01:51 +0100263options_influencing_build_path = [
Anthony Barbier9c4ba7a2019-02-15 15:20:25 +0000264 'target', 'mode', 'symbols', 'compiler', 'std', 'simulator', 'negative_testing',
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000265 'code_buffer_allocator'
Pierre Langloisa3b21462016-08-04 16:01:51 +0100266]
armvixlad96eda2013-06-14 11:42:37 +0100267
armvixlad96eda2013-06-14 11:42:37 +0100268
armvixldb644342015-07-21 11:37:10 +0100269
270# Build helpers ----------------------------------------------------------------
271
272def RetrieveEnvironmentVariables(env):
Pierre Langlois88c46b82016-06-02 18:15:32 +0100273 for key in ['CC', 'CXX', 'AR', 'RANLIB', 'LD']:
armvixldb644342015-07-21 11:37:10 +0100274 if os.getenv(key): env[key] = os.getenv(key)
275 if os.getenv('LD_LIBRARY_PATH'): env['LIBPATH'] = os.getenv('LD_LIBRARY_PATH')
Pierre Langlois88c46b82016-06-02 18:15:32 +0100276 if os.getenv('CCFLAGS'):
277 env.Append(CCFLAGS = os.getenv('CCFLAGS').split())
armvixldb644342015-07-21 11:37:10 +0100278 if os.getenv('CXXFLAGS'):
279 env.Append(CXXFLAGS = os.getenv('CXXFLAGS').split())
280 if os.getenv('LINKFLAGS'):
281 env.Append(LINKFLAGS = os.getenv('LINKFLAGS').split())
armvixl4a102ba2014-07-14 09:02:40 +0100282
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000283# The architecture targeted by default will depend on the compiler being
284# used. 'host_arch' is extracted from the compiler while 'target' can be
285# set by the user.
286# By default, we target both AArch32 and AArch64 unless the compiler targets a
287# 32-bit architecture. At the moment, we cannot build VIXL's AArch64 support on
288# a 32-bit platform.
289# TODO: Port VIXL to build on a 32-bit platform.
290def target_handler(env):
291 # Auto detect
292 if Is32BitHost(env):
293 # We use list(set(...)) to keep the same order as if it was specify as
294 # an option.
295 env['target'] = list(set(['a32', 't32']))
296 else:
297 env['target'] = list(set(['a64', 'a32', 't32']))
298
299
300def target_validator(env):
301 # TODO: Port VIXL64 to work on a 32-bit platform.
302 if Is32BitHost(env) and CanTargetAArch64(env):
303 raise UserError('Building VIXL for AArch64 in 32-bit is not supported. Set '
304 '`target` to `aarch32`')
305
306
307# The target option is handled differently from the rest.
308def ProcessTargetOption(env):
309 if env['target'] == []: target_handler(env)
310
311 if 'a32' in env['target']: env['CCFLAGS'] += ['-DVIXL_INCLUDE_TARGET_A32']
312 if 't32' in env['target']: env['CCFLAGS'] += ['-DVIXL_INCLUDE_TARGET_T32']
313 if 'a64' in env['target']: env['CCFLAGS'] += ['-DVIXL_INCLUDE_TARGET_A64']
314
315 target_validator(env)
316
317
armvixldb644342015-07-21 11:37:10 +0100318def ProcessBuildOptions(env):
319 # 'all' is unconditionally processed.
320 if 'all' in options:
321 for var in options['all']:
322 if var in env and env[var]:
323 env[var] += options['all'][var]
324 else:
325 env[var] = options['all'][var]
Pierre Langloisa3b21462016-08-04 16:01:51 +0100326
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000327 # The target option *must* be processed before the options defined in
328 # vars_default_handlers.
329 ProcessTargetOption(env)
330
armvixldb644342015-07-21 11:37:10 +0100331 # Other build options must match 'option:value'
332 env_dict = env.Dictionary()
Pierre Langloisa3b21462016-08-04 16:01:51 +0100333
334 # First apply the default variables handlers in order.
335 for key, value in vars_default_handlers.items():
336 default = value[0]
337 handler = value[1]
338 if env_dict.get(key) == default:
339 handler(env_dict)
340
Pierre Langlois8253a3c2016-12-14 18:54:22 +0000341 # Second, run the series of validators, to check for errors.
342 for _, value in vars_default_handlers.items():
343 validator = value[2]
344 validator(env)
345
armvixldb644342015-07-21 11:37:10 +0100346 for key in env_dict.keys():
armvixldb644342015-07-21 11:37:10 +0100347 # Then update the environment according to the value of the variable.
348 key_val_couple = key + ':%s' % env_dict[key]
349 if key_val_couple in options:
350 for var in options[key_val_couple]:
351 env[var] += options[key_val_couple][var]
352
353
354def ConfigureEnvironmentForCompiler(env):
Pierre Langlois8253a3c2016-12-14 18:54:22 +0000355 compiler = util.CompilerInformation(env)
Pierre Langloisf737e0a2016-11-02 13:08:11 +0000356 if compiler == 'clang':
armvixldb644342015-07-21 11:37:10 +0100357 # These warnings only work for Clang.
358 # -Wimplicit-fallthrough only works when compiling the code base as C++11 or
359 # newer. The compiler does not complain if the option is passed when
360 # compiling earlier C++ standards.
361 env.Append(CPPFLAGS = ['-Wimplicit-fallthrough', '-Wshorten-64-to-32'])
362
363 # The '-Wunreachable-code' flag breaks builds for clang 3.4.
Jacob Bramley176a3792016-11-09 14:44:39 +0000364 if compiler != 'clang-3.4':
armvixldb644342015-07-21 11:37:10 +0100365 env.Append(CPPFLAGS = ['-Wunreachable-code'])
366
Vincent Belliard4e52d4d2018-04-03 13:34:44 -0700367 if env['ubsan'] == 'on':
368 env.Append(LINKFLAGS = ['-fuse-ld=lld'])
369
armvixldb644342015-07-21 11:37:10 +0100370 # GCC 4.8 has a bug which produces a warning saying that an anonymous Operand
371 # object might be used uninitialized:
372 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57045
373 # The bug does not seem to appear in GCC 4.7, or in debug builds with GCC 4.8.
374 if env['mode'] == 'release':
Pierre Langloisf737e0a2016-11-02 13:08:11 +0000375 if compiler == 'gcc-4.8':
armvixldb644342015-07-21 11:37:10 +0100376 env.Append(CPPFLAGS = ['-Wno-maybe-uninitialized'])
Pierre Langloisf737e0a2016-11-02 13:08:11 +0000377
Pierre Langloisf7bf6552017-05-05 13:14:35 +0100378 # GCC 6 and higher is able to detect throwing from inside a destructor and
379 # reports a warning. However, if negative testing is enabled then assertions
380 # will throw exceptions.
381 if env['negative_testing'] == 'on' and env['mode'] == 'debug' \
382 and compiler >= 'gcc-6':
383 env.Append(CPPFLAGS = ['-Wno-terminate'])
384 # The C++11 compatibility warning will also be triggered for this case, as
385 # the behavior of throwing from desctructors has changed.
386 if 'std' in env and env['std'] == 'c++98':
387 env.Append(CPPFLAGS = ['-Wno-c++11-compat'])
388
Pierre Langloisc1253072016-06-15 14:36:10 +0100389 # When compiling with c++98 (the default), allow long long constants.
armvixl0f35e362016-05-10 13:57:58 +0100390 if 'std' not in env or env['std'] == 'c++98':
Pierre Langloisc1253072016-06-15 14:36:10 +0100391 env.Append(CPPFLAGS = ['-Wno-long-long'])
Jacob Bramley5997b462018-06-05 14:05:30 +0100392 env.Append(CPPFLAGS = ['-Wno-variadic-macros'])
Pierre Langlois3fac43c2016-10-31 13:38:47 +0000393 # When compiling with c++11, suggest missing override keywords on methods.
394 if 'std' in env and env['std'] in ['c++11', 'c++14']:
Pierre Langloisf737e0a2016-11-02 13:08:11 +0000395 if compiler >= 'gcc-5':
Pierre Langlois3fac43c2016-10-31 13:38:47 +0000396 env.Append(CPPFLAGS = ['-Wsuggest-override'])
Pierre Langloisf737e0a2016-11-02 13:08:11 +0000397 elif compiler >= 'clang-3.6':
Pierre Langlois3fac43c2016-10-31 13:38:47 +0000398 env.Append(CPPFLAGS = ['-Winconsistent-missing-override'])
armvixldb644342015-07-21 11:37:10 +0100399
400
401def ConfigureEnvironment(env):
402 RetrieveEnvironmentVariables(env)
Anthony Barbier9c4ba7a2019-02-15 15:20:25 +0000403 env['compiler'] = env['CXX']
404 if env['compiler_wrapper'] != '':
405 env['CXX'] = env['compiler_wrapper'] + ' ' + env['CXX']
406 env['CC'] = env['compiler_wrapper'] + ' ' + env['CC']
Pierre Langlois8253a3c2016-12-14 18:54:22 +0000407 env['host_arch'] = util.GetHostArch(env)
armvixldb644342015-07-21 11:37:10 +0100408 ProcessBuildOptions(env)
409 if 'std' in env:
410 env.Append(CPPFLAGS = ['-std=' + env['std']])
411 std_path = env['std']
412 ConfigureEnvironmentForCompiler(env)
413
414
415def TargetBuildDir(env):
416 # Build-time option values are embedded in the build path to avoid requiring a
417 # full build when an option changes.
418 build_dir = config.dir_build
419 for option in options_influencing_build_path:
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000420 option_value = ''.join(env[option]) if option in env else ''
armvixldb644342015-07-21 11:37:10 +0100421 build_dir = join(build_dir, option + '_'+ option_value)
422 return build_dir
423
424
425def PrepareVariantDir(location, build_dir):
426 location_build_dir = join(build_dir, location)
427 VariantDir(location_build_dir, location)
428 return location_build_dir
429
430
431def VIXLLibraryTarget(env):
432 build_dir = TargetBuildDir(env)
433 # Create a link to the latest build directory.
Alexandre Rames4e241932016-06-08 21:32:03 +0100434 # Use `-r` to avoid failure when `latest` exists and is a directory.
435 subprocess.check_call(["rm", "-rf", config.dir_build_latest])
armvixldb644342015-07-21 11:37:10 +0100436 util.ensure_dir(build_dir)
437 subprocess.check_call(["ln", "-s", build_dir, config.dir_build_latest])
Alexandre Ramesd3832962016-07-04 15:03:43 +0100438 # Source files are in `src` and in `src/aarch64/`.
Alexandre Rames39c32a62016-05-23 15:47:22 +0100439 variant_dir_vixl = PrepareVariantDir(join('src'), build_dir)
Pierre Langloisa3b21462016-08-04 16:01:51 +0100440 sources = [Glob(join(variant_dir_vixl, '*.cc'))]
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000441 if CanTargetAArch32(env):
Pierre Langloisa3b21462016-08-04 16:01:51 +0100442 variant_dir_aarch32 = PrepareVariantDir(join('src', 'aarch32'), build_dir)
443 sources.append(Glob(join(variant_dir_aarch32, '*.cc')))
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000444 if CanTargetAArch64(env):
Pierre Langloisa3b21462016-08-04 16:01:51 +0100445 variant_dir_aarch64 = PrepareVariantDir(join('src', 'aarch64'), build_dir)
446 sources.append(Glob(join(variant_dir_aarch64, '*.cc')))
armvixldb644342015-07-21 11:37:10 +0100447 return env.Library(join(build_dir, 'vixl'), sources)
448
449
450
451# Build ------------------------------------------------------------------------
452
453# The VIXL library, built by default.
Pierre Langlois287e6d12016-11-21 14:56:01 +0000454env = Environment(variables = vars,
455 BUILDERS = {
456 'Markdown': Builder(action = 'markdown $SOURCE > $TARGET',
457 suffix = '.html')
Anthony Barbierf2986e12019-02-28 16:49:23 +0000458 }, ENV = os.environ)
Alexandre Ramesf5de33d2016-10-25 09:51:11 +0100459# Abort the build if any command line option is unknown or invalid.
460unknown_build_options = vars.UnknownVariables()
461if unknown_build_options:
462 print 'Unknown build options:', unknown_build_options.keys()
463 Exit(1)
464
Anthony Barbierf2986e12019-02-28 16:49:23 +0000465if env['negative_testing'] == 'on' and env['mode'] != 'debug':
466 print 'negative_testing only works in debug mode'
467 Exit(1)
468
armvixldb644342015-07-21 11:37:10 +0100469ConfigureEnvironment(env)
armvixldb644342015-07-21 11:37:10 +0100470Help(vars.GenerateHelpText(env))
471libvixl = VIXLLibraryTarget(env)
472Default(libvixl)
473env.Alias('libvixl', libvixl)
474top_level_targets.Add('', 'Build the VIXL library.')
475
armvixl4a102ba2014-07-14 09:02:40 +0100476
Pierre Langloisa3b21462016-08-04 16:01:51 +0100477# Common test code.
armvixldb644342015-07-21 11:37:10 +0100478test_build_dir = PrepareVariantDir('test', TargetBuildDir(env))
Pierre Langlois88c46b82016-06-02 18:15:32 +0100479test_objects = [env.Object(Glob(join(test_build_dir, '*.cc')))]
480
Pierre Langloisa3b21462016-08-04 16:01:51 +0100481# AArch32 support
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000482if CanTargetAArch32(env):
Pierre Langloisa3b21462016-08-04 16:01:51 +0100483 # The examples.
484 aarch32_example_names = util.ListCCFilesWithoutExt(config.dir_aarch32_examples)
485 aarch32_examples_build_dir = PrepareVariantDir('examples/aarch32', TargetBuildDir(env))
486 aarch32_example_targets = []
487 for example in aarch32_example_names:
488 prog = env.Program(join(aarch32_examples_build_dir, example),
489 join(aarch32_examples_build_dir, example + '.cc'),
490 LIBS=[libvixl])
491 aarch32_example_targets.append(prog)
492 env.Alias('aarch32_examples', aarch32_example_targets)
493 top_level_targets.Add('aarch32_examples', 'Build the examples for AArch32.')
Pierre Langlois88c46b82016-06-02 18:15:32 +0100494
Vincent Belliard32cf2542016-07-14 10:04:09 -0700495 # The benchmarks
496 aarch32_benchmark_names = util.ListCCFilesWithoutExt(config.dir_aarch32_benchmarks)
497 aarch32_benchmarks_build_dir = PrepareVariantDir('benchmarks/aarch32', TargetBuildDir(env))
498 aarch32_benchmark_targets = []
499 for bench in aarch32_benchmark_names:
500 prog = env.Program(join(aarch32_benchmarks_build_dir, bench),
501 join(aarch32_benchmarks_build_dir, bench + '.cc'),
502 LIBS=[libvixl])
503 aarch32_benchmark_targets.append(prog)
504 env.Alias('aarch32_benchmarks', aarch32_benchmark_targets)
505 top_level_targets.Add('aarch32_benchmarks', 'Build the benchmarks for AArch32.')
506
Pierre Langloisa3b21462016-08-04 16:01:51 +0100507 # The tests.
508 test_aarch32_build_dir = PrepareVariantDir(join('test', 'aarch32'), TargetBuildDir(env))
509 test_objects.append(env.Object(
510 Glob(join(test_aarch32_build_dir, '*.cc')),
Anthony Barbier7b4df2b2019-03-12 17:36:15 +0000511 CPPPATH = env['CPPPATH'] + [config.dir_tests],
512 CCFLAGS = [flag for flag in env['CCFLAGS'] if flag != '-O3']))
Pierre Langlois88c46b82016-06-02 18:15:32 +0100513
Pierre Langloisa3b21462016-08-04 16:01:51 +0100514# AArch64 support
Rodolph Perfetta9a9331f2016-12-09 22:05:48 +0000515if CanTargetAArch64(env):
Pierre Langloisa3b21462016-08-04 16:01:51 +0100516 # The benchmarks.
517 aarch64_benchmark_names = util.ListCCFilesWithoutExt(config.dir_aarch64_benchmarks)
518 aarch64_benchmarks_build_dir = PrepareVariantDir('benchmarks/aarch64', TargetBuildDir(env))
519 aarch64_benchmark_targets = []
Jacob Bramley1d925c02019-06-17 16:51:23 +0100520 bench_utils = env.Object(join(aarch64_benchmarks_build_dir, 'bench-utils.o'),
521 join(aarch64_benchmarks_build_dir, 'bench-utils.cc'))
Pierre Langloisa3b21462016-08-04 16:01:51 +0100522 for bench in aarch64_benchmark_names:
Jacob Bramley1d925c02019-06-17 16:51:23 +0100523 if bench != 'bench-utils':
524 prog = env.Program(join(aarch64_benchmarks_build_dir, bench),
525 [join(aarch64_benchmarks_build_dir, bench + '.cc'), bench_utils],
526 LIBS=[libvixl])
527 aarch64_benchmark_targets.append(prog)
Pierre Langloisa3b21462016-08-04 16:01:51 +0100528 env.Alias('aarch64_benchmarks', aarch64_benchmark_targets)
529 top_level_targets.Add('aarch64_benchmarks', 'Build the benchmarks for AArch64.')
530
531 # The examples.
532 aarch64_example_names = util.ListCCFilesWithoutExt(config.dir_aarch64_examples)
533 aarch64_examples_build_dir = PrepareVariantDir('examples/aarch64', TargetBuildDir(env))
534 aarch64_example_targets = []
535 for example in aarch64_example_names:
536 prog = env.Program(join(aarch64_examples_build_dir, example),
537 join(aarch64_examples_build_dir, example + '.cc'),
538 LIBS=[libvixl])
539 aarch64_example_targets.append(prog)
540 env.Alias('aarch64_examples', aarch64_example_targets)
541 top_level_targets.Add('aarch64_examples', 'Build the examples for AArch64.')
542
543 # The tests.
544 test_aarch64_build_dir = PrepareVariantDir(join('test', 'aarch64'), TargetBuildDir(env))
545 test_objects.append(env.Object(
546 Glob(join(test_aarch64_build_dir, '*.cc')),
Anthony Barbier7b4df2b2019-03-12 17:36:15 +0000547 CPPPATH = env['CPPPATH'] + [config.dir_tests],
548 CCFLAGS = [flag for flag in env['CCFLAGS'] if flag != '-O3']))
Pierre Langloisa3b21462016-08-04 16:01:51 +0100549
550 # The test requires building the example files with specific options, so we
551 # create a separate variant dir for the example objects built this way.
552 test_aarch64_examples_vdir = join(TargetBuildDir(env), 'test', 'aarch64', 'test_examples')
553 VariantDir(test_aarch64_examples_vdir, '.')
554 test_aarch64_examples_obj = env.Object(
Jacob Bramley0f71a762018-08-30 12:09:34 +0100555 [Glob(join(test_aarch64_examples_vdir, join('test', 'aarch64', 'examples', '*.cc'))),
Pierre Langloisa3b21462016-08-04 16:01:51 +0100556 Glob(join(test_aarch64_examples_vdir, join('examples/aarch64', '*.cc')))],
557 CCFLAGS = env['CCFLAGS'] + ['-DTEST_EXAMPLES'],
558 CPPPATH = env['CPPPATH'] + [config.dir_aarch64_examples] + [config.dir_tests])
559 test_objects.append(test_aarch64_examples_obj)
Pierre Langlois88c46b82016-06-02 18:15:32 +0100560
561test = env.Program(join(test_build_dir, 'test-runner'), test_objects,
armvixldb644342015-07-21 11:37:10 +0100562 LIBS=[libvixl])
563env.Alias('tests', test)
564top_level_targets.Add('tests', 'Build the tests.')
armvixl4a102ba2014-07-14 09:02:40 +0100565
armvixl4a102ba2014-07-14 09:02:40 +0100566
armvixldb644342015-07-21 11:37:10 +0100567env.Alias('all', top_level_targets.targets)
568top_level_targets.Add('all', 'Build all the targets above.')
569
570Help('\n\nAvailable top level targets:\n' + top_level_targets.Help())
Pierre Langlois287e6d12016-11-21 14:56:01 +0000571
572extra_targets = VIXLTargets()
573
574# Build documentation
575doc = [
576 env.Markdown('README.md'),
577 env.Markdown('doc/changelog.md'),
578 env.Markdown('doc/aarch32/getting-started-aarch32.md'),
579 env.Markdown('doc/aarch32/design/code-generation-aarch32.md'),
580 env.Markdown('doc/aarch32/design/literal-pool-aarch32.md'),
581 env.Markdown('doc/aarch64/supported-instructions-aarch64.md'),
582 env.Markdown('doc/aarch64/getting-started-aarch64.md'),
583 env.Markdown('doc/aarch64/topics/ycm.md'),
584 env.Markdown('doc/aarch64/topics/extending-the-disassembler.md'),
585 env.Markdown('doc/aarch64/topics/index.md'),
586]
587env.Alias('doc', doc)
588extra_targets.Add('doc', 'Convert documentation to HTML (requires the '
589 '`markdown` program).')
590
591Help('\nAvailable extra targets:\n' + extra_targets.Help())