-
Notifications
You must be signed in to change notification settings - Fork 104
/
build_all.py
executable file
·758 lines (617 loc) · 24.8 KB
/
build_all.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
#!/usr/bin/env python3
# Script to build all benchmarks
# Copyright (C) 2017, 2019 Embecosm Limited
#
# Contributor: Graham Markall <[email protected]>
# Contributor: Jeremy Bennett <[email protected]>
#
# This file is part of Embench.
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Build all Embench programs.
"""
import argparse
import os
import shutil
import subprocess
import sys
sys.path.append(
os.path.join(os.path.abspath(os.path.dirname(__file__)), 'pylib')
)
from embench_core import check_python_version
from embench_core import log
from embench_core import gp
from embench_core import setup_logging
from embench_core import log_args
from embench_core import find_benchmarks
from embench_core import log_benchmarks
from embench_core import arglist_to_str
def build_parser():
"""Build a parser for all the arguments"""
parser = argparse.ArgumentParser(description='Build all the benchmarks')
parser.add_argument(
'--builddir',
default='bd',
help='Directory in which to build benchmarks and support code',
)
parser.add_argument(
'--logdir',
default='logs',
help='Directory in which to store logs',
)
parser.add_argument(
'--arch',
required=True,
help='The architecture for which to build',
)
parser.add_argument(
'--chip',
default='generic',
help='The chip for which to build',
)
parser.add_argument(
'--board',
default='generic',
help='The board for which to build',
)
parser.add_argument('--cc', help='C compiler to use')
parser.add_argument('--ld', help='Linker to use')
parser.add_argument('--cflags', help='Additional C compiler flags to use')
parser.add_argument('--ldflags', help='Additional linker flags to use')
parser.add_argument(
'--env',
help='additional environment vars, format <V>=<val> [,<V>=<value>]...',
)
parser.add_argument(
'--cc-define1-pattern',
help='Pattern to define constant for compiler',
)
parser.add_argument(
'--cc-define2-pattern',
help='Pattern to define constant to a specific value for compiler',
)
parser.add_argument(
'--cc-incdir-pattern',
help='Pattern to specify include directory for the compiler',
)
parser.add_argument(
'--cc-input-pattern', help='Pattern to specify compiler input file',
)
parser.add_argument(
'--cc-output-pattern', help='Pattern to specify compiler output file',
)
parser.add_argument(
'--ld-input-pattern', help='Pattern to specify linker input file',
)
parser.add_argument(
'--ld-output-pattern', help='Pattern to specify linker output file',
)
parser.add_argument('--user-libs', help='Additional libraries to use')
parser.add_argument(
'--dummy-libs', help='Dummy libraries to build and link'
)
parser.add_argument(
'--cpu-mhz', type=int, help='Processor clock speed in MHz'
)
parser.add_argument(
'--warmup-heat',
type=int,
help='Number of warmup loops to execute before benchmark',
)
parser.add_argument(
'-v', '--verbose', action='store_true', help='More messages'
)
parser.add_argument(
'--clean', action='store_true', help='Rebuild everything'
)
parser.add_argument(
'--timeout',
type=int,
default=5,
help='Timeout used for the compiler and linker invocations'
)
return parser
def validate_args(args):
"""Check that supplied args are all valid. By definition logging is
working when we get here. Don't bother with build directory, since
that will be checked when we create it.
Update the gp dictionary with all the useful info"""
gp['configdir'] = os.path.join(gp['rootdir'], 'config')
gp['bd_configdir'] = os.path.join(gp['bd'], 'config')
# Architecture
if not args.arch:
log.error('ERROR: Null achitecture not permitted: exiting')
sys.exit(1)
gp['archdir'] = os.path.join(gp['configdir'], args.arch)
gp['bd_archdir'] = os.path.join(gp['bd_configdir'], args.arch)
if not os.path.isdir(gp['archdir']):
choices = sorted(os.listdir(gp['configdir']))
_s = 'ERROR: Architecture "{arch}" not found. Valid choices are "{choices}": exiting'
log.error(_s.format(arch=args.arch, choices='", "'.join(choices)))
sys.exit(1)
if not os.access(gp['archdir'], os.R_OK):
log.error('ERROR: Unable to read achitecture "{arch}": exiting'.format(arch=args.arch))
sys.exit(1)
# Chip
if not args.chip:
log.error('ERROR: Null chip not permitted: exiting')
gp['chipdir'] = os.path.join(gp['archdir'], 'chips', args.chip)
gp['bd_chipdir'] = os.path.join(gp['bd_archdir'], 'chips', args.chip)
if not os.path.isdir(gp['chipdir']):
choices = sorted(os.listdir(os.path.join(gp['archdir'], 'chips')))
_s = 'ERROR: Chip "{chip}" not found for architecture "{arch}". Valid choices are "{choices}": exiting'
log.error(_s.format(chip = args.chip,
arch = args.arch,
choices = '", "'.join(choices)))
sys.exit(1)
if not os.access(gp['chipdir'], os.R_OK):
log.error(
'ERROR: Unable to read chip "{chip}" for architecture "{arch}": exiting'.format(chip=args.chip, arch=args.arch)
)
sys.exit(1)
# Board
if not args.board:
log.error('ERROR: Null board not permitted: exiting')
gp['boarddir'] = os.path.join(gp['archdir'], 'boards', args.board)
gp['bd_boarddir'] = os.path.join(gp['bd_archdir'], 'boards', args.board)
if not os.path.isdir(gp['boarddir']):
choices = sorted(os.listdir(os.path.join(gp['archdir'], 'boards')))
_s = 'ERROR: Board "{board}" not found for architecture "{arch}". Valid choices are "{choices}": exiting'
log.error(_s.format(board = args.board,
arch = args.arch,
choices = '", "'.join(choices)))
sys.exit(1)
if not os.access(gp['boarddir'], os.R_OK):
log.error(
'ERROR: Unable to read board "{board}" for architecture "{arch}": exiting'.format(board=args.board, arch=args.arch)
)
sys.exit(1)
# The supplementary environment
gp['env'] = dict()
if args.env:
envlist = args.env.split(',')
for envarg in envlist:
var, val = envarg.split('=', 1)
gp['env'][var] = val
# Other args validated later.
def create_builddir(builddir, clean):
"""Create the build directory, which can be relative to the current
directory or absolute. If the "clean" is True, delete any existing
build directory"""
if os.path.isabs(builddir):
gp['bd'] = builddir
else:
gp['bd'] = os.path.join(gp['rootdir'], builddir)
if os.path.isdir(gp['bd']) and clean:
try:
shutil.rmtree(gp['bd'])
except PermissionError:
log.error(
'ERROR: Unable to clean build directory "{bd}: exiting'.format(bd=gp["bd"])
)
sys.exit(1)
if not os.path.isdir(gp['bd']):
try:
os.makedirs(gp['bd'])
except PermissionError:
log.error(
'ERROR: Unable to create build directory {bd}: exiting'.format(bd=gp["bd"])
)
sys.exit(1)
if not os.access(gp['bd'], os.W_OK):
log.error(
'ERROR: Unable to write to build directory {bd}, exiting'.format(bd=gp["bd"])
)
sys.exit(1)
def populate_defaults():
"""Return a dictionary of default configuration parameters."""
conf = {}
conf['cc'] = 'cc'
# ld is not set, to allow it to default to 'cc'
conf['cflags'] = {}
conf['ldflags'] = {}
conf['cc_define1_pattern'] = '-D{0}'
conf['cc_define2_pattern'] = '-D{0}={1}'
conf['cc_incdir_pattern'] = '-I{0}'
conf['cc_input_pattern'] = '{0}'
conf['cc_output_pattern'] = '-o {0}'
conf['ld_input_pattern'] = '{0}'
conf['ld_output_pattern'] = '-o {0}'
conf['user_libs'] = {}
conf['dummy_libs'] = {}
conf['cpu_mhz'] = 1
conf['warmup_heat'] = 1
conf['timeout'] = 5
return conf
def populate_user_commands(conf, args):
"""Populate a dictionary of configuration command parameters, "conf", from
values supplied on the command line in the structure, "args"."""
if args.cc:
conf['cc'] = args.cc
if args.ld:
conf['ld'] = args.ld
return conf
def populate_user_flags(conf, args):
"""Populate a dictionary of configuration flag parameters, "conf", from
values supplied on the command line in the structure, "args"."""
if args.cflags:
conf['cflags'] = args.cflags.split()
if args.ldflags:
conf['ldflags'] = args.ldflags.split()
return conf
def populate_user_patterns(conf, args):
"""Populate a dictionary of configuration pattern parameters, "conf", from
values supplied on the command line in the structure, "args"."""
if args.cc_define1_pattern:
conf['cc_define1_pattern'] = args.cc_define1_pattern
if args.cc_define2_pattern:
conf['cc_define2_pattern'] = args.cc_define2_pattern
if args.cc_incdir_pattern:
conf['cc_incdir_pattern'] = args.cc_incdir_pattern
if args.cc_input_pattern:
conf['cc_input_pattern'] = args.cc_input_pattern
if args.cc_output_pattern:
conf['cc_output_pattern'] = args.cc_output_pattern
if args.ld_input_pattern:
conf['ld_input_pattern'] = args.ld_input_pattern
if args.ld_output_pattern:
conf['ld_output_pattern'] = args.ld_output_pattern
return conf
def populate_user_libs(conf, args):
"""Populate a dictionary of configuration library parameters, "conf", from
values supplied on the command line in the structure, "args"."""
if args.user_libs:
conf['user_libs'] = args.user_libs.split()
if args.dummy_libs:
conf['dummy_libs'] = args.dummy_libs.split()
return conf
def populate_user_defs(conf, args):
"""Populate a dictionary of configuration definition parameters, "conf", from
values supplied on the command line in the structure, "args"."""
if args.cpu_mhz:
conf['cpu_mhz'] = args.cpu_mhz
if args.warmup_heat:
conf['warmup_heat'] = args.warmup_heat
if args.timeout:
conf['timeout'] = args.timeout
return conf
def populate_user(args):
"""Return a dictionary of configuration parameters, from values supplied
on the command line in the structure, "args"."""
conf = {}
populate_user_commands(conf, args)
populate_user_flags(conf, args)
populate_user_patterns(conf, args)
populate_user_libs(conf, args)
populate_user_defs(conf, args)
return conf
def add_internal_flags():
"""Add internal flag values to the command line."""
for dirname in ['supportdir', 'boarddir', 'chipdir', 'archdir']:
flag = gp['cc_incdir_pattern'].format(gp[dirname]).split()
gp['cflags'].extend(flag)
for dirname in ['cpu_mhz', 'warmup_heat']:
dir_u = dirname.upper()
flagstr = gp['cc_define2_pattern'].format(dir_u, gp[dirname])
flag = flagstr.split()
gp['cflags'].extend(flag)
def validate_tools():
"""Check the compiler and linker are available."""
# Validate C compiler
if not shutil.which(gp['cc']):
log.error('ERROR: Compiler {cc} not found on path: exiting'.format(cc=gp["cc"]))
sys.exit(1)
# Validate linker
if not shutil.which(gp['ld']):
log.error('ERROR: Linker {ld} not found on path: exiting'.format(ld=gp["ld"]))
sys.exit(1)
def set_parameters(args):
"""Determine all remaining parameters"""
# Directories we need
gp['supportdir'] = os.path.join(gp['rootdir'], 'support')
gp['bd_supportdir'] = os.path.join(gp['bd'], 'support')
# Default values of parameters
config = {}
config['default'] = populate_defaults()
# Read each config file. Note that we pass in the config file itself as
# local dictionary, since then it won't get filled with global variables.
for conf in ['arch', 'chip', 'board']:
config[conf] = {}
conf_file = os.path.join(gp[conf + 'dir'], conf + '.cfg')
if os.path.isfile(conf_file):
with open(conf_file) as fileh:
try:
exec(fileh.read(), globals(), config[conf])
except PermissionError:
log.error('ERROR: Corrupt config file {conf_file}: exiting')
sys.exit(1)
# Populate user values from the command line
config['user'] = populate_user(args)
# Priority is in increasing priority: default, arch, chip, board,
# user. Flags are different in that they are additive. All others later
# values replace earlier ones.
gp['cflags'] = []
gp['ldflags'] = []
for conf in ['default', 'arch', 'chip', 'board', 'user']:
for key, val in config[conf].items():
if (key == 'cflags') or (key == 'ldflags'):
gp[key].extend(val)
else:
gp[key] = val
# Linker should match compiler if it hasn't been set
if 'ld' not in gp:
gp['ld'] = gp['cc']
# Add our own flags to the command line, then validate the tools
add_internal_flags()
validate_tools()
def log_parameters():
"""Record all the global parameters in the log"""
log.debug('Global parameters')
log.debug('=================')
for key, val in gp.items():
log.debug('{key:<21}: {val}'.format(key=key, val=val))
log.debug('')
def set_environ():
"""Add additional environment variables, if any"""
for key in gp['env']:
os.environ[key] = gp['env'][key]
def compile_file(f_root, srcdir, bindir, suffix='.c'):
"""Compile a single C or assembler file, with the given file root, "f_root",
suffix "suffix", from the source directory, "srcdir", in to the bin
directory, "bindir" using the general preprocessor and C compilation
flags.
Return True if the compilation success, False if it fails. Log
everything in the event of failure
"""
abs_src = os.path.join(srcdir, '{root}{suff}'.format(root=f_root, suff=suffix))
abs_bin = os.path.join(bindir, '{root}.o'.format(root=f_root))
# Construct the argument list
arglist = [gp["cc"]]
arglist.extend(gp['cflags'])
arglist.extend(gp['cc_output_pattern'].format('{root}.o'.format(root=f_root)).split())
arglist.extend(gp['cc_input_pattern'].format(abs_src).split())
# Run the compilation, but only if the source file is newer than the
# binary.
succeeded = True
res = None
if not os.path.isfile(abs_bin) or (
os.path.getmtime(abs_src) > os.path.getmtime(abs_bin)
):
if gp['verbose']:
log.debug('Compiling in directory {bin}'.format(bin=bindir))
log.debug(arglist_to_str(arglist))
try:
res = subprocess.run(
arglist,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
cwd=bindir,
timeout=gp['timeout'],
)
if res.returncode != 0:
log.warning(
'Warning: Compilation of {root}{suff} from source directory {src} to binary directory {bin} failed'
.format(root=f_root, suff=suffix, src=srcdir, bin=bindir)
)
succeeded = False
except subprocess.TimeoutExpired:
log.warning(
'Warning: Compilation of {root}{suff} from source directory {src} to binary directory {bin} timed out'
.format(root=f_root, suff=suffix, src=srcdir, bin=bindir)
)
succeeded = False
if not succeeded:
log.debug('Command was:')
log.debug(arglist_to_str(arglist))
log.debug(res.stdout.decode('utf-8'))
log.debug(res.stderr.decode('utf-8'))
return succeeded
def compile_benchmark(bench):
"""Compile the benchmark, "bench".
Return True if all files compile successfully, False otherwise."""
abs_src_b = os.path.join(gp['benchdir'], bench)
abs_bd_b = os.path.join(gp['bd_benchdir'], bench)
succeeded = True
if not os.path.isdir(abs_bd_b):
try:
os.makedirs(abs_bd_b)
except PermissionError:
log.warning(
'Warning: Unable to create build directory for benchmark {bench}'.format(bench=bench)
)
return False
# Compile each file in the benchmark
for filename in os.listdir(abs_src_b):
f_root, ext = os.path.splitext(filename)
if ext == '.c':
succeeded &= compile_file(f_root, abs_src_b, abs_bd_b)
return succeeded
def compile_support():
"""Compile all the support code.
Return True if all files compile successfully, False otherwise."""
succeeded = True
# First the general support
if not os.path.isdir(gp['bd_supportdir']):
try:
os.makedirs(gp['bd_supportdir'])
except PermissionError:
log.warning(
'Warning: Unable to create support build directory {supportdir}'.format(supportdir=gp["bd_supportdir"])
)
return False
# Compile each general support file in the benchmark
succeeded &= compile_file('beebsc', gp['supportdir'], gp['bd_supportdir'])
succeeded &= compile_file('main', gp['supportdir'], gp['bd_supportdir'])
# Compile dummy files that are needed
for dlib in gp['dummy_libs']:
succeeded &= compile_file(
'dummy-' + dlib, gp['supportdir'], gp['bd_supportdir']
)
# Compile architecture, chip and board specific files. Note that we only
# create the build directory if it is needed here.
for dirtype in ['arch', 'chip', 'board']:
# Support directory we are interested in
dirname = gp[dirtype + 'dir']
# List of files/subdirectories in that directory
filelist = os.listdir(dirname)
# Compile every C or assembler source file
for filename in filelist:
root, ext = os.path.splitext(filename)
full_fn = os.path.join(dirname, filename)
if (os.path.isfile(full_fn) and
(ext == '.c' or ext == '.s' or ext == '.S')):
# Create build directory
builddir = gp['bd_' + dirtype + 'dir']
if not os.path.isdir(builddir):
try:
os.makedirs(builddir)
except PermissionError:
log.warning(
'Warning: Unable to create build directory for {dirname}, {builddir}'.format(dirname=dirname, builddir=builddir)
)
return False
succeeded &= compile_file(root, dirname, builddir, suffix=ext)
return succeeded
def create_link_binlist(abs_bd):
"""
Create a list of all the binaries to be linked, including those in the
specified absolute directory, abs_bd. The binaries in this directory can
be specified as relative filenames. All others will all be absolute
addresses, since ultimately we will link in the abs_bd directory. Return
the result binlist, or an empty list on failure.
There is a nasty gotcha here. The ordering of files matters, since that is
the order they will get packed into the executable, which in turn may
affect branch distances. We therefore explicitly order files.
"""
# Find the object files in alphabetical order
binlist = []
for binf in sorted(os.listdir(abs_bd), key=lambda objf: objf):
if binf.endswith('.o'):
binlist.extend(gp['ld_input_pattern'].format(binf).split())
# Add arch, chip and board binaries
for dirtype in ['arch', 'chip', 'board']:
# Build directory
bindir = gp['bd_{dirtype}dir'.format(dirtype=dirtype)]
# List of files in the build directory in alphabetical order
filelist = sorted(os.listdir(bindir), key=lambda objf: objf)
# Add every object file
for filename in filelist:
root, ext = os.path.splitext(filename)
binf = os.path.join(bindir, filename)
if (os.path.isfile(binf) and (ext == '.o')):
binlist.extend(
gp['ld_input_pattern'].format(binf).split()
)
# Add generic support
for supp in ['main.o', 'beebsc.o']:
binf = os.path.join(gp['bd_supportdir'], supp)
if os.path.isfile(binf):
binlist.extend(gp['ld_input_pattern'].format(binf).split())
else:
log.warning('Warning: Unable to find support library {binf}'.format(binf=binf))
return []
# Add dummy binaries. These must be sorted in alphabetical order
for dlib in sorted(gp['dummy_libs'], key=lambda lib: lib):
binf = os.path.join(gp['bd_supportdir'], 'dummy-{dlib}.o'.format(dlib=dlib))
if os.path.isfile(binf):
binlist.extend(gp['ld_input_pattern'].format(binf).split())
else:
log.warning('Warning: Unable to find dummy library {binf}'.format(binf=binf))
return []
return binlist
def create_link_arglist(bench, binlist):
"""Create the argument list for linking benchmark, "bench", from the binaries
in "binlist"."""
arglist = [gp['ld']]
arglist.extend(gp['ldflags'])
arglist.extend(gp['ld_output_pattern'].format(bench).split())
arglist.extend(binlist)
arglist.extend(gp['user_libs'])
return arglist
def link_benchmark(bench):
"""Link the benchmark, "bench".
Return True if link is successful, False otherwise."""
abs_bd_b = os.path.join(gp['bd_benchdir'], bench)
if not os.path.isdir(abs_bd_b):
log.warning(
'Warning: Unable to find build directory for benchmark {bench}'.format(bench=bench)
)
return False
# Use a flag to track warnings, but keep going through warnings.
succeeded = True
# Create the argument list
binlist = create_link_binlist(abs_bd_b)
if not binlist:
succeeded = False
arglist = create_link_arglist(bench, binlist)
# Run the link
if gp['verbose']:
log.debug('Linking in directory {abs_bd_b}'.format(abs_bd_b=abs_bd_b))
log.debug(arglist_to_str(arglist))
try:
res = subprocess.run(
arglist,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
cwd=abs_bd_b,
timeout=gp['timeout'],
)
if res.returncode != 0:
log.warning('Warning: Link of benchmark "{bench}" failed'.format(bench=bench))
succeeded = False
log.debug(res.stdout.decode('utf-8'))
log.debug(res.stderr.decode('utf-8'))
except subprocess.TimeoutExpired:
log.warning('Warning: link of benchmark "{bench}" timed out'.format(bench=bench))
succeeded = False
if not succeeded:
log.debug('In directory "' + abs_bd_b + '"')
log.debug('Command was:')
log.debug(arglist_to_str(arglist))
return succeeded
def main():
"""Main program to drive building of benchmarks."""
# Establish the root directory of the repository, since we know this file is
# in that directory.
gp['rootdir'] = os.path.abspath(os.path.dirname(__file__))
# Parse arguments using standard technology
parser = build_parser()
args = parser.parse_args()
# Establish logging, using "build" as the log file prefix.
gp['verbose'] = args.verbose
setup_logging(args.logdir, 'build')
log_args(args)
# Establish build directory
create_builddir(args.builddir, args.clean)
# Check args are OK (have to have logging and build directory set up first)
validate_args(args)
# Find the benchmarks
benchmarks = find_benchmarks()
log_benchmarks(benchmarks)
# Establish other global parameters
set_parameters(args)
log_parameters()
log.debug('General log')
log.debug('===========')
# Set up additional environment variables.
set_environ()
# Track success
successful = compile_support()
if successful:
log.debug('Compilation of support files successful')
for bench in benchmarks:
res = compile_benchmark(bench)
successful &= res
if res:
log.debug('Compilation of benchmark "{bench}" successful'.format(bench=bench))
res = link_benchmark(bench)
successful &= res
if res:
log.debug('Linking of benchmark "{bench}" successful'.format(bench=bench))
log.info(bench)
if successful:
log.info('All benchmarks built successfully')
# Make sure we have new enough Python and only run if this is the main package
check_python_version(3, 6)
if __name__ == '__main__':
sys.exit(main())