scons: Use conf to determine if some flags are supported.
[gem5.git] / SConstruct
1 # -*- mode:python -*-
2
3 # Copyright (c) 2013, 2015-2020 ARM Limited
4 # All rights reserved.
5 #
6 # The license below extends only to copyright in the software and shall
7 # not be construed as granting a license to any other intellectual
8 # property including but not limited to intellectual property relating
9 # to a hardware implementation of the functionality of the software
10 # licensed hereunder. You may use the software subject to the license
11 # terms below provided that you ensure that this notice is replicated
12 # unmodified and in its entirety in all distributions of the software,
13 # modified or unmodified, in source code or in binary form.
14 #
15 # Copyright (c) 2011 Advanced Micro Devices, Inc.
16 # Copyright (c) 2009 The Hewlett-Packard Development Company
17 # Copyright (c) 2004-2005 The Regents of The University of Michigan
18 # All rights reserved.
19 #
20 # Redistribution and use in source and binary forms, with or without
21 # modification, are permitted provided that the following conditions are
22 # met: redistributions of source code must retain the above copyright
23 # notice, this list of conditions and the following disclaimer;
24 # redistributions in binary form must reproduce the above copyright
25 # notice, this list of conditions and the following disclaimer in the
26 # documentation and/or other materials provided with the distribution;
27 # neither the name of the copyright holders nor the names of its
28 # contributors may be used to endorse or promote products derived from
29 # this software without specific prior written permission.
30 #
31 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
37 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42
43 ###################################################
44 #
45 # SCons top-level build description (SConstruct) file.
46 #
47 # While in this directory ('gem5'), just type 'scons' to build the default
48 # configuration (see below), or type 'scons build/<CONFIG>/<binary>'
49 # to build some other configuration (e.g., 'build/X86/gem5.opt' for
50 # the optimized full-system version).
51 #
52 # You can build gem5 in a different directory as long as there is a
53 # 'build/<CONFIG>' somewhere along the target path. The build system
54 # expects that all configs under the same build directory are being
55 # built for the same host system.
56 #
57 # Examples:
58 #
59 # The following two commands are equivalent. The '-u' option tells
60 # scons to search up the directory tree for this SConstruct file.
61 # % cd <path-to-src>/gem5 ; scons build/X86/gem5.debug
62 # % cd <path-to-src>/gem5/build/X86; scons -u gem5.debug
63 #
64 # The following two commands are equivalent and demonstrate building
65 # in a directory outside of the source tree. The '-C' option tells
66 # scons to chdir to the specified directory to find this SConstruct
67 # file.
68 # % cd <path-to-src>/gem5 ; scons /local/foo/build/X86/gem5.debug
69 # % cd /local/foo/build/X86; scons -C <path-to-src>/gem5 gem5.debug
70 #
71 # You can use 'scons -H' to print scons options. If you're in this
72 # 'gem5' directory (or use -u or -C to tell scons where to find this
73 # file), you can use 'scons -h' to print all the gem5-specific build
74 # options as well.
75 #
76 ###################################################
77
78 # Global Python includes
79 import atexit
80 import itertools
81 import os
82 import re
83 import shutil
84 import subprocess
85 import sys
86
87 from os import mkdir, environ
88 from os.path import abspath, basename, dirname, expanduser, normpath
89 from os.path import exists, isdir, isfile
90 from os.path import join as joinpath, split as splitpath
91 from re import match
92
93 # SCons includes
94 import SCons
95 import SCons.Node
96 import SCons.Node.FS
97
98 from m5.util import compareVersions, readCommand, readCommandWithReturn
99
100 AddOption('--colors', dest='use_colors', action='store_true',
101 help="Add color to abbreviated scons output")
102 AddOption('--no-colors', dest='use_colors', action='store_false',
103 help="Don't add color to abbreviated scons output")
104 AddOption('--with-cxx-config', action='store_true',
105 help="Build with support for C++-based configuration")
106 AddOption('--default',
107 help='Override which build_opts file to use for defaults')
108 AddOption('--ignore-style', action='store_true',
109 help='Disable style checking hooks')
110 AddOption('--gold-linker', action='store_true', help='Use the gold linker')
111 AddOption('--no-compress-debug', action='store_true',
112 help="Don't compress debug info in build files")
113 AddOption('--no-lto', action='store_true',
114 help='Disable Link-Time Optimization for fast')
115 AddOption('--verbose', action='store_true',
116 help='Print full tool command lines')
117 AddOption('--without-python', action='store_true',
118 help='Build without Python configuration support')
119 AddOption('--without-tcmalloc', action='store_true',
120 help='Disable linking against tcmalloc')
121 AddOption('--with-ubsan', action='store_true',
122 help='Build with Undefined Behavior Sanitizer if available')
123 AddOption('--with-asan', action='store_true',
124 help='Build with Address Sanitizer if available')
125 AddOption('--with-systemc-tests', action='store_true',
126 help='Build systemc tests')
127
128 from gem5_scons import Transform, error, warning, summarize_warnings
129 import gem5_scons
130
131 ########################################################################
132 #
133 # Set up the main build environment.
134 #
135 ########################################################################
136
137 main = Environment(tools=['default', 'git'])
138
139 from gem5_scons.util import get_termcap
140 termcap = get_termcap()
141
142 main_dict_keys = main.Dictionary().keys()
143
144 # Check that we have a C/C++ compiler
145 if not ('CC' in main_dict_keys and 'CXX' in main_dict_keys):
146 error("No C++ compiler installed (package g++ on Ubuntu and RedHat)")
147
148 ###################################################
149 #
150 # Figure out which configurations to set up based on the path(s) of
151 # the target(s).
152 #
153 ###################################################
154
155 # Find default configuration & binary.
156 Default(environ.get('M5_DEFAULT_BINARY', 'build/ARM/gem5.debug'))
157
158 # helper function: find last occurrence of element in list
159 def rfind(l, elt, offs = -1):
160 for i in range(len(l)+offs, 0, -1):
161 if l[i] == elt:
162 return i
163 raise ValueError("element not found")
164
165 # Take a list of paths (or SCons Nodes) and return a list with all
166 # paths made absolute and ~-expanded. Paths will be interpreted
167 # relative to the launch directory unless a different root is provided
168 def makePathListAbsolute(path_list, root=GetLaunchDir()):
169 return [abspath(joinpath(root, expanduser(str(p))))
170 for p in path_list]
171
172 # Each target must have 'build' in the interior of the path; the
173 # directory below this will determine the build parameters. For
174 # example, for target 'foo/bar/build/X86/arch/x86/blah.do' we
175 # recognize that X86 specifies the configuration because it
176 # follow 'build' in the build path.
177
178 # The funky assignment to "[:]" is needed to replace the list contents
179 # in place rather than reassign the symbol to a new list, which
180 # doesn't work (obviously!).
181 BUILD_TARGETS[:] = makePathListAbsolute(BUILD_TARGETS)
182
183 # Generate a list of the unique build roots and configs that the
184 # collected targets reference.
185 variant_paths = []
186 build_root = None
187 for t in BUILD_TARGETS:
188 path_dirs = t.split('/')
189 try:
190 build_top = rfind(path_dirs, 'build', -2)
191 except:
192 error("No non-leaf 'build' dir found on target path.", t)
193 this_build_root = joinpath('/',*path_dirs[:build_top+1])
194 if not build_root:
195 build_root = this_build_root
196 else:
197 if this_build_root != build_root:
198 error("build targets not under same build root\n"
199 " %s\n %s" % (build_root, this_build_root))
200 variant_path = joinpath('/',*path_dirs[:build_top+2])
201 if variant_path not in variant_paths:
202 variant_paths.append(variant_path)
203
204 # Make sure build_root exists (might not if this is the first build there)
205 if not isdir(build_root):
206 mkdir(build_root)
207 main['BUILDROOT'] = build_root
208
209 Export('main')
210
211 main.SConsignFile(joinpath(build_root, "sconsign"))
212
213 # Default duplicate option is to use hard links, but this messes up
214 # when you use emacs to edit a file in the target dir, as emacs moves
215 # file to file~ then copies to file, breaking the link. Symbolic
216 # (soft) links work better.
217 main.SetOption('duplicate', 'soft-copy')
218
219 #
220 # Set up global sticky variables... these are common to an entire build
221 # tree (not specific to a particular build like X86)
222 #
223
224 global_vars_file = joinpath(build_root, 'variables.global')
225
226 global_vars = Variables(global_vars_file, args=ARGUMENTS)
227
228 global_vars.AddVariables(
229 ('CC', 'C compiler', environ.get('CC', main['CC'])),
230 ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])),
231 ('CCFLAGS_EXTRA', 'Extra C and C++ compiler flags', ''),
232 ('LDFLAGS_EXTRA', 'Extra linker flags', ''),
233 ('MARSHAL_CCFLAGS_EXTRA', 'Extra C and C++ marshal compiler flags', ''),
234 ('MARSHAL_LDFLAGS_EXTRA', 'Extra marshal linker flags', ''),
235 ('PYTHON_CONFIG', 'Python config binary to use',
236 [ 'python3-config', 'python-config']
237 ),
238 ('PROTOC', 'protoc tool', environ.get('PROTOC', 'protoc')),
239 ('BATCH', 'Use batch pool for build and tests', False),
240 ('BATCH_CMD', 'Batch pool submission command name', 'qdo'),
241 ('M5_BUILD_CACHE', 'Cache built objects in this directory', False),
242 ('EXTRAS', 'Add extra directories to the compilation', '')
243 )
244
245 # Update main environment with values from ARGUMENTS & global_vars_file
246 global_vars.Update(main)
247 Help('''
248 Global build variables:
249 {help}
250 '''.format(help=global_vars.GenerateHelpText(main)), append=True)
251
252 # Save sticky variable settings back to current variables file
253 global_vars.Save(global_vars_file, main)
254
255 # Parse EXTRAS variable to build list of all directories where we're
256 # look for sources etc. This list is exported as extras_dir_list.
257 base_dir = Dir('#src').abspath
258 if main['EXTRAS']:
259 extras_dir_list = makePathListAbsolute(main['EXTRAS'].split(':'))
260 else:
261 extras_dir_list = []
262
263 Export('base_dir')
264 Export('extras_dir_list')
265
266 # the ext directory should be on the #includes path
267 main.Append(CPPPATH=[Dir('ext')])
268
269 # Add shared top-level headers
270 main.Prepend(CPPPATH=Dir('include'))
271
272 if GetOption('verbose'):
273 def MakeAction(action, string, *args, **kwargs):
274 return Action(action, *args, **kwargs)
275 else:
276 MakeAction = Action
277 main['CCCOMSTR'] = Transform("CC")
278 main['CXXCOMSTR'] = Transform("CXX")
279 main['ASCOMSTR'] = Transform("AS")
280 main['ARCOMSTR'] = Transform("AR", 0)
281 main['LINKCOMSTR'] = Transform("LINK", 0)
282 main['SHLINKCOMSTR'] = Transform("SHLINK", 0)
283 main['RANLIBCOMSTR'] = Transform("RANLIB", 0)
284 main['M4COMSTR'] = Transform("M4")
285 main['SHCCCOMSTR'] = Transform("SHCC")
286 main['SHCXXCOMSTR'] = Transform("SHCXX")
287 Export('MakeAction')
288
289 # Initialize the Link-Time Optimization (LTO) flags
290 main['LTO_CCFLAGS'] = []
291 main['LTO_LDFLAGS'] = []
292
293 # According to the readme, tcmalloc works best if the compiler doesn't
294 # assume that we're using the builtin malloc and friends. These flags
295 # are compiler-specific, so we need to set them after we detect which
296 # compiler we're using.
297 main['TCMALLOC_CCFLAGS'] = []
298
299 # Platform-specific configuration. Note again that we assume that all
300 # builds under a given build root run on the same host platform.
301 conf = gem5_scons.Configure(main)
302
303 CXX_version = readCommand([main['CXX'],'--version'], exception=False)
304 CXX_V = readCommand([main['CXX'],'-V'], exception=False)
305
306 main['GCC'] = CXX_version and CXX_version.find('g++') >= 0
307 main['CLANG'] = CXX_version and CXX_version.find('clang') >= 0
308 if main['GCC'] + main['CLANG'] > 1:
309 error('Two compilers enabled at once?')
310
311 # Set up default C++ compiler flags
312 if main['GCC'] or main['CLANG']:
313 # As gcc and clang share many flags, do the common parts here
314 main.Append(CCFLAGS=['-pipe'])
315 main.Append(CCFLAGS=['-fno-strict-aliasing'])
316 # Enable -Wall and -Wextra and then disable the few warnings that
317 # we consistently violate
318 main.Append(CCFLAGS=['-Wall', '-Wundef', '-Wextra',
319 '-Wno-sign-compare', '-Wno-unused-parameter'])
320 # We always compile using C++14
321 main.Append(CXXFLAGS=['-std=c++14'])
322 if sys.platform.startswith('freebsd'):
323 main.Append(CCFLAGS=['-I/usr/local/include'])
324 main.Append(CXXFLAGS=['-I/usr/local/include'])
325
326 conf.CheckLinkFlag('-Wl,--as-needed')
327 if GetOption('gold_linker'):
328 main.Append(LINKFLAGS='-fuse-ld=gold')
329
330 # Treat warnings as errors but white list some warnings that we
331 # want to allow (e.g., deprecation warnings).
332 main.Append(CCFLAGS=['-Werror',
333 '-Wno-error=deprecated-declarations',
334 '-Wno-error=deprecated',
335 ])
336 else:
337 error('\n'.join((
338 "Don't know what compiler options to use for your compiler.",
339 "compiler: " + main['CXX'],
340 "version: " + CXX_version.replace('\n', '<nl>') if
341 CXX_version else 'COMMAND NOT FOUND!',
342 "If you're trying to use a compiler other than GCC",
343 "or clang, there appears to be something wrong with your",
344 "environment.",
345 "",
346 "If you are trying to use a compiler other than those listed",
347 "above you will need to ease fix SConstruct and ",
348 "src/SConscript to support that compiler.")))
349
350 if main['GCC']:
351 gcc_version = readCommand([main['CXX'], '-dumpversion'], exception=False)
352 if compareVersions(gcc_version, "5") < 0:
353 error('gcc version 5 or newer required.\n'
354 'Installed version:', gcc_version)
355 Exit(1)
356
357 main['GCC_VERSION'] = gcc_version
358
359 # Add the appropriate Link-Time Optimization (LTO) flags
360 # unless LTO is explicitly turned off. Note that these flags
361 # are only used by the fast target.
362 if not GetOption('no_lto'):
363 # Pass the LTO flag when compiling to produce GIMPLE
364 # output, we merely create the flags here and only append
365 # them later
366 main['LTO_CCFLAGS'] = ['-flto=%d' % GetOption('num_jobs')]
367
368 # Use the same amount of jobs for LTO as we are running
369 # scons with
370 main['LTO_LDFLAGS'] = ['-flto=%d' % GetOption('num_jobs')]
371
372 main.Append(TCMALLOC_CCFLAGS=['-fno-builtin-malloc', '-fno-builtin-calloc',
373 '-fno-builtin-realloc', '-fno-builtin-free'])
374
375 elif main['CLANG']:
376 clang_version_re = re.compile(".* version (\d+\.\d+)")
377 clang_version_match = clang_version_re.search(CXX_version)
378 if (clang_version_match):
379 clang_version = clang_version_match.groups()[0]
380 if compareVersions(clang_version, "3.9") < 0:
381 error('clang version 3.9 or newer required.\n'
382 'Installed version:', clang_version)
383 else:
384 error('Unable to determine clang version.')
385
386 # clang has a few additional warnings that we disable, extraneous
387 # parantheses are allowed due to Ruby's printing of the AST,
388 # finally self assignments are allowed as the generated CPU code
389 # is relying on this
390 main.Append(CCFLAGS=['-Wno-parentheses',
391 '-Wno-self-assign',
392 # Some versions of libstdc++ (4.8?) seem to
393 # use struct hash and class hash
394 # interchangeably.
395 '-Wno-mismatched-tags',
396 ])
397 conf.CheckCxxFlag('-Wno-c99-designator')
398 conf.CheckCxxFlag('-Wno-defaulted-function-deleted')
399
400 main.Append(TCMALLOC_CCFLAGS=['-fno-builtin'])
401
402 # On Mac OS X/Darwin we need to also use libc++ (part of XCode) as
403 # opposed to libstdc++, as the later is dated.
404 if sys.platform == "darwin":
405 main.Append(CXXFLAGS=['-stdlib=libc++'])
406 main.Append(LIBS=['c++'])
407
408 # On FreeBSD we need libthr.
409 if sys.platform.startswith('freebsd'):
410 main.Append(LIBS=['thr'])
411
412 # Add sanitizers flags
413 sanitizers=[]
414 if GetOption('with_ubsan'):
415 sanitizers.append('undefined')
416 if GetOption('with_asan'):
417 # Available for gcc >= 5 or llvm >= 3.1 both a requirement
418 # by the build system
419 sanitizers.append('address')
420 suppressions_file = Dir('util').File('lsan-suppressions').get_abspath()
421 suppressions_opt = 'suppressions=%s' % suppressions_file
422 main['ENV']['LSAN_OPTIONS'] = ':'.join([suppressions_opt,
423 'print_suppressions=0'])
424 print()
425 warning('To suppress false positive leaks, set the LSAN_OPTIONS '
426 'environment variable to "%s" when running gem5' %
427 suppressions_opt)
428 warning('LSAN_OPTIONS=suppressions=%s' % suppressions_opt)
429 print()
430 if sanitizers:
431 sanitizers = ','.join(sanitizers)
432 if main['GCC'] or main['CLANG']:
433 main.Append(CCFLAGS=['-fsanitize=%s' % sanitizers,
434 '-fno-omit-frame-pointer'],
435 LINKFLAGS='-fsanitize=%s' % sanitizers)
436 else:
437 warning("Don't know how to enable %s sanitizer(s) for your "
438 "compiler." % sanitizers)
439
440 # Set up common yacc/bison flags (needed for Ruby)
441 main['YACCFLAGS'] = '-d'
442 main['YACCHXXFILESUFFIX'] = '.hh'
443
444 # Do this after we save setting back, or else we'll tack on an
445 # extra 'qdo' every time we run scons.
446 if main['BATCH']:
447 main['CC'] = main['BATCH_CMD'] + ' ' + main['CC']
448 main['CXX'] = main['BATCH_CMD'] + ' ' + main['CXX']
449 main['AS'] = main['BATCH_CMD'] + ' ' + main['AS']
450 main['AR'] = main['BATCH_CMD'] + ' ' + main['AR']
451 main['RANLIB'] = main['BATCH_CMD'] + ' ' + main['RANLIB']
452
453 if sys.platform == 'cygwin':
454 # cygwin has some header file issues...
455 main.Append(CCFLAGS=["-Wno-uninitialized"])
456
457
458 have_pkg_config = readCommand(['pkg-config', '--version'], exception='')
459
460 # Check for the protobuf compiler
461 try:
462 main['HAVE_PROTOC'] = True
463 protoc_version = readCommand([main['PROTOC'], '--version']).split()
464
465 # First two words should be "libprotoc x.y.z"
466 if len(protoc_version) < 2 or protoc_version[0] != 'libprotoc':
467 warning('Protocol buffer compiler (protoc) not found.\n'
468 'Please install protobuf-compiler for tracing support.')
469 main['HAVE_PROTOC'] = False
470 else:
471 # Based on the availability of the compress stream wrappers,
472 # require 2.1.0
473 min_protoc_version = '2.1.0'
474 if compareVersions(protoc_version[1], min_protoc_version) < 0:
475 warning('protoc version', min_protoc_version,
476 'or newer required.\n'
477 'Installed version:', protoc_version[1])
478 main['HAVE_PROTOC'] = False
479 else:
480 # Attempt to determine the appropriate include path and
481 # library path using pkg-config, that means we also need to
482 # check for pkg-config. Note that it is possible to use
483 # protobuf without the involvement of pkg-config. Later on we
484 # check go a library config check and at that point the test
485 # will fail if libprotobuf cannot be found.
486 if have_pkg_config:
487 try:
488 # Attempt to establish what linking flags to add for
489 # protobuf
490 # using pkg-config
491 main.ParseConfig(
492 'pkg-config --cflags --libs-only-L protobuf')
493 except:
494 warning('pkg-config could not get protobuf flags.')
495 except Exception as e:
496 warning('While checking protoc version:', str(e))
497 main['HAVE_PROTOC'] = False
498
499
500 # Cache build files in the supplied directory.
501 if main['M5_BUILD_CACHE']:
502 print('Using build cache located at', main['M5_BUILD_CACHE'])
503 CacheDir(main['M5_BUILD_CACHE'])
504
505 if not GetOption('no_compress_debug'):
506 if not conf.CheckCxxFlag('-gz'):
507 warning("Can't enable object file debug section compression")
508 if not conf.CheckLinkFlag('-gz'):
509 warning("Can't enable executable debug section compression")
510
511 main['USE_PYTHON'] = not GetOption('without_python')
512 if main['USE_PYTHON']:
513 # Find Python include and library directories for embedding the
514 # interpreter. We rely on python-config to resolve the appropriate
515 # includes and linker flags. ParseConfig does not seem to understand
516 # the more exotic linker flags such as -Xlinker and -export-dynamic so
517 # we add them explicitly below. If you want to link in an alternate
518 # version of python, see above for instructions on how to invoke
519 # scons with the appropriate PATH set.
520
521 python_config = main.Detect(main['PYTHON_CONFIG'])
522 if python_config is None:
523 error("Can't find a suitable python-config, tried %s" % \
524 main['PYTHON_CONFIG'])
525
526 print("Info: Using Python config: %s" % (python_config, ))
527
528 py_includes = readCommand([python_config, '--includes'],
529 exception='').split()
530 py_includes = list(filter(
531 lambda s: match(r'.*\/include\/.*',s), py_includes))
532 # Strip the -I from the include folders before adding them to the
533 # CPPPATH
534 py_includes = list(map(
535 lambda s: s[2:] if s.startswith('-I') else s, py_includes))
536 main.Append(CPPPATH=py_includes)
537
538 # Read the linker flags and split them into libraries and other link
539 # flags. The libraries are added later through the call the CheckLib.
540 # Note: starting in Python 3.8 the --embed flag is required to get the
541 # -lpython3.8 linker flag
542 retcode, cmd_stdout = readCommandWithReturn(
543 [python_config, '--ldflags', '--embed'], exception='')
544 if retcode != 0:
545 # If --embed isn't detected then we're running python <3.8
546 retcode, cmd_stdout = readCommandWithReturn(
547 [python_config, '--ldflags'], exception='')
548
549 # Checking retcode again
550 if retcode != 0:
551 error("Failing on python-config --ldflags command")
552
553 py_ld_flags = cmd_stdout.split()
554
555 py_libs = []
556 for lib in py_ld_flags:
557 if not lib.startswith('-l'):
558 main.Append(LINKFLAGS=[lib])
559 else:
560 lib = lib[2:]
561 if lib not in py_libs:
562 py_libs.append(lib)
563
564 # verify that this stuff works
565 if not conf.CheckHeader('Python.h', '<>'):
566 error("Check failed for Python.h header in",
567 ' '.join(py_includes), "\n"
568 "Two possible reasons:\n"
569 "1. Python headers are not installed (You can install the "
570 "package python-dev on Ubuntu and RedHat)\n"
571 "2. SCons is using a wrong C compiler. This can happen if "
572 "CC has the wrong value.\n"
573 "CC = %s" % main['CC'])
574
575 for lib in py_libs:
576 if not conf.CheckLib(lib):
577 error("Can't find library %s required by python." % lib)
578
579 main.Prepend(CPPPATH=Dir('ext/pybind11/include/'))
580
581 marshal_env = main.Clone()
582
583 # Bare minimum environment that only includes python
584 marshal_env.Append(CCFLAGS='$MARSHAL_CCFLAGS_EXTRA')
585 marshal_env.Append(LINKFLAGS='$MARSHAL_LDFLAGS_EXTRA')
586
587 py_version = conf.CheckPythonLib()
588 if not py_version:
589 error("Can't find a working Python installation")
590
591 # Found a working Python installation. Check if it meets minimum
592 # requirements.
593 if py_version[0] < 3 or \
594 (py_version[0] == 3 and py_version[1] < 6):
595 error('Python version too old. Version 3.6 or newer is required.')
596 elif py_version[0] > 3:
597 warning('Python version too new. Python 3 expected.')
598
599 # On Solaris you need to use libsocket for socket ops
600 if not conf.CheckLibWithHeader(None, 'sys/socket.h', 'C++', 'accept(0,0,0);'):
601 if not conf.CheckLibWithHeader('socket', 'sys/socket.h',
602 'C++', 'accept(0,0,0);'):
603 error("Can't find library with socket calls (e.g. accept()).")
604
605 # Check for zlib. If the check passes, libz will be automatically
606 # added to the LIBS environment variable.
607 if not conf.CheckLibWithHeader('z', 'zlib.h', 'C++','zlibVersion();'):
608 error('Did not find needed zlib compression library '
609 'and/or zlib.h header file.\n'
610 'Please install zlib and try again.')
611
612 # If we have the protobuf compiler, also make sure we have the
613 # development libraries. If the check passes, libprotobuf will be
614 # automatically added to the LIBS environment variable. After
615 # this, we can use the HAVE_PROTOBUF flag to determine if we have
616 # got both protoc and libprotobuf available.
617 main['HAVE_PROTOBUF'] = main['HAVE_PROTOC'] and \
618 conf.CheckLibWithHeader('protobuf', 'google/protobuf/message.h',
619 'C++', 'GOOGLE_PROTOBUF_VERIFY_VERSION;')
620
621 # Valgrind gets much less confused if you tell it when you're using
622 # alternative stacks.
623 main['HAVE_VALGRIND'] = conf.CheckCHeader('valgrind/valgrind.h')
624
625 # If we have the compiler but not the library, print another warning.
626 if main['HAVE_PROTOC'] and not main['HAVE_PROTOBUF']:
627 warning('Did not find protocol buffer library and/or headers.\n'
628 'Please install libprotobuf-dev for tracing support.')
629
630 # Check for librt.
631 have_posix_clock = \
632 conf.CheckLibWithHeader(None, 'time.h', 'C',
633 'clock_nanosleep(0,0,NULL,NULL);') or \
634 conf.CheckLibWithHeader('rt', 'time.h', 'C',
635 'clock_nanosleep(0,0,NULL,NULL);')
636
637 have_posix_timers = \
638 conf.CheckLibWithHeader([None, 'rt'], [ 'time.h', 'signal.h' ], 'C',
639 'timer_create(CLOCK_MONOTONIC, NULL, NULL);')
640
641 if not GetOption('without_tcmalloc'):
642 if conf.CheckLib('tcmalloc'):
643 main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS'])
644 elif conf.CheckLib('tcmalloc_minimal'):
645 main.Append(CCFLAGS=main['TCMALLOC_CCFLAGS'])
646 else:
647 warning("You can get a 12% performance improvement by "
648 "installing tcmalloc (libgoogle-perftools-dev package "
649 "on Ubuntu or RedHat).")
650
651
652 # Detect back trace implementations. The last implementation in the
653 # list will be used by default.
654 backtrace_impls = [ "none" ]
655
656 backtrace_checker = 'char temp;' + \
657 ' backtrace_symbols_fd((void*)&temp, 0, 0);'
658 if conf.CheckLibWithHeader(None, 'execinfo.h', 'C', backtrace_checker):
659 backtrace_impls.append("glibc")
660 elif conf.CheckLibWithHeader('execinfo', 'execinfo.h', 'C',
661 backtrace_checker):
662 # NetBSD and FreeBSD need libexecinfo.
663 backtrace_impls.append("glibc")
664 main.Append(LIBS=['execinfo'])
665
666 if backtrace_impls[-1] == "none":
667 default_backtrace_impl = "none"
668 warning("No suitable back trace implementation found.")
669
670 if not have_posix_clock:
671 warning("Can't find library for POSIX clocks.")
672
673 # Check for <fenv.h> (C99 FP environment control)
674 have_fenv = conf.CheckHeader('fenv.h', '<>')
675 if not have_fenv:
676 warning("Header file <fenv.h> not found.\n"
677 "This host has no IEEE FP rounding mode control.")
678
679 # Check for <png.h> (libpng library needed if wanting to dump
680 # frame buffer image in png format)
681 have_png = conf.CheckHeader('png.h', '<>')
682 if not have_png:
683 warning("Header file <png.h> not found.\n"
684 "This host has no libpng library.\n"
685 "Disabling support for PNG framebuffers.")
686
687 # Check if we should enable KVM-based hardware virtualization. The API
688 # we rely on exists since version 2.6.36 of the kernel, but somehow
689 # the KVM_API_VERSION does not reflect the change. We test for one of
690 # the types as a fall back.
691 have_kvm = conf.CheckHeader('linux/kvm.h', '<>')
692 if not have_kvm:
693 print("Info: Compatible header file <linux/kvm.h> not found, "
694 "disabling KVM support.")
695
696 # Check if the TUN/TAP driver is available.
697 have_tuntap = conf.CheckHeader('linux/if_tun.h', '<>')
698 if not have_tuntap:
699 print("Info: Compatible header file <linux/if_tun.h> not found.")
700
701 # x86 needs support for xsave. We test for the structure here since we
702 # won't be able to run new tests by the time we know which ISA we're
703 # targeting.
704 have_kvm_xsave = conf.CheckTypeSize('struct kvm_xsave',
705 '#include <linux/kvm.h>') != 0
706
707 # Check if the requested target ISA is compatible with the host
708 def is_isa_kvm_compatible(isa):
709 try:
710 import platform
711 host_isa = platform.machine()
712 except:
713 warning("Failed to determine host ISA.")
714 return False
715
716 if not have_posix_timers:
717 warning("Can not enable KVM, host seems to lack support "
718 "for POSIX timers")
719 return False
720
721 if isa == "arm":
722 return host_isa in ( "armv7l", "aarch64" )
723 elif isa == "x86":
724 if host_isa != "x86_64":
725 return False
726
727 if not have_kvm_xsave:
728 warning("KVM on x86 requires xsave support in kernel headers.")
729 return False
730
731 return True
732 else:
733 return False
734
735
736 # Check if the exclude_host attribute is available. We want this to
737 # get accurate instruction counts in KVM.
738 main['HAVE_PERF_ATTR_EXCLUDE_HOST'] = conf.CheckMember(
739 'linux/perf_event.h', 'struct perf_event_attr', 'exclude_host')
740
741 def check_hdf5():
742 return \
743 conf.CheckLibWithHeader('hdf5', 'hdf5.h', 'C',
744 'H5Fcreate("", 0, 0, 0);') and \
745 conf.CheckLibWithHeader('hdf5_cpp', 'H5Cpp.h', 'C++',
746 'H5::H5File("", 0);')
747
748 def check_hdf5_pkg(name):
749 print("Checking for %s using pkg-config..." % name, end="")
750 if not have_pkg_config:
751 print(" pkg-config not found")
752 return False
753
754 try:
755 main.ParseConfig('pkg-config --cflags-only-I --libs-only-L %s' % name)
756 print(" yes")
757 return True
758 except:
759 print(" no")
760 return False
761
762 # Check if there is a pkg-config configuration for hdf5. If we find
763 # it, setup the environment to enable linking and header inclusion. We
764 # don't actually try to include any headers or link with hdf5 at this
765 # stage.
766 if not check_hdf5_pkg('hdf5-serial'):
767 check_hdf5_pkg('hdf5')
768
769 # Check if the HDF5 libraries can be found. This check respects the
770 # include path and library path provided by pkg-config. We perform
771 # this check even if there isn't a pkg-config configuration for hdf5
772 # since some installations don't use pkg-config.
773 have_hdf5 = check_hdf5()
774 if not have_hdf5:
775 print("Warning: Couldn't find any HDF5 C++ libraries. Disabling")
776 print(" HDF5 support.")
777
778 ######################################################################
779 #
780 # Finish the configuration
781 #
782 main = conf.Finish()
783
784 ######################################################################
785 #
786 # Collect all non-global variables
787 #
788
789 # Define the universe of supported ISAs
790 all_isa_list = [ ]
791 all_gpu_isa_list = [ ]
792 Export('all_isa_list')
793 Export('all_gpu_isa_list')
794
795 class CpuModel(object):
796 '''The CpuModel class encapsulates everything the ISA parser needs to
797 know about a particular CPU model.'''
798
799 # Dict of available CPU model objects. Accessible as CpuModel.dict.
800 dict = {}
801
802 # Constructor. Automatically adds models to CpuModel.dict.
803 def __init__(self, name, default=False):
804 self.name = name # name of model
805
806 # This cpu is enabled by default
807 self.default = default
808
809 # Add self to dict
810 if name in CpuModel.dict:
811 raise AttributeError("CpuModel '%s' already registered" % name)
812 CpuModel.dict[name] = self
813
814 Export('CpuModel')
815
816 # Sticky variables get saved in the variables file so they persist from
817 # one invocation to the next (unless overridden, in which case the new
818 # value becomes sticky).
819 sticky_vars = Variables(args=ARGUMENTS)
820 Export('sticky_vars')
821
822 # Sticky variables that should be exported
823 export_vars = []
824 Export('export_vars')
825
826 # For Ruby
827 all_protocols = []
828 Export('all_protocols')
829 protocol_dirs = []
830 Export('protocol_dirs')
831 slicc_includes = []
832 Export('slicc_includes')
833
834 # Walk the tree and execute all SConsopts scripts that wil add to the
835 # above variables
836 if GetOption('verbose'):
837 print("Reading SConsopts")
838 for bdir in [ base_dir ] + extras_dir_list:
839 if not isdir(bdir):
840 error("Directory '%s' does not exist." % bdir)
841 for root, dirs, files in os.walk(bdir):
842 if 'SConsopts' in files:
843 if GetOption('verbose'):
844 print("Reading", joinpath(root, 'SConsopts'))
845 SConscript(joinpath(root, 'SConsopts'))
846
847 all_isa_list.sort()
848 all_gpu_isa_list.sort()
849
850 sticky_vars.AddVariables(
851 EnumVariable('TARGET_ISA', 'Target ISA', 'null', all_isa_list),
852 EnumVariable('TARGET_GPU_ISA', 'Target GPU ISA', 'gcn3', all_gpu_isa_list),
853 ListVariable('CPU_MODELS', 'CPU models',
854 sorted(n for n,m in CpuModel.dict.items() if m.default),
855 sorted(CpuModel.dict.keys())),
856 BoolVariable('EFENCE', 'Link with Electric Fence malloc debugger',
857 False),
858 BoolVariable('USE_SSE2',
859 'Compile for SSE2 (-msse2) to get IEEE FP on x86 hosts',
860 False),
861 BoolVariable('USE_POSIX_CLOCK', 'Use POSIX Clocks', have_posix_clock),
862 BoolVariable('USE_FENV', 'Use <fenv.h> IEEE mode control', have_fenv),
863 BoolVariable('USE_PNG', 'Enable support for PNG images', have_png),
864 BoolVariable('USE_KVM', 'Enable hardware virtualized (KVM) CPU models',
865 have_kvm),
866 BoolVariable('USE_TUNTAP',
867 'Enable using a tap device to bridge to the host network',
868 have_tuntap),
869 BoolVariable('BUILD_GPU', 'Build the compute-GPU model', False),
870 EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'None',
871 all_protocols),
872 EnumVariable('BACKTRACE_IMPL', 'Post-mortem dump implementation',
873 backtrace_impls[-1], backtrace_impls),
874 ('NUMBER_BITS_PER_SET', 'Max elements in set (default 64)',
875 64),
876 BoolVariable('USE_HDF5', 'Enable the HDF5 support', have_hdf5),
877 )
878
879 # These variables get exported to #defines in config/*.hh (see src/SConscript).
880 export_vars += ['USE_FENV', 'TARGET_ISA', 'TARGET_GPU_ISA',
881 'USE_POSIX_CLOCK', 'USE_KVM', 'USE_TUNTAP', 'PROTOCOL',
882 'HAVE_PROTOBUF', 'HAVE_VALGRIND',
883 'HAVE_PERF_ATTR_EXCLUDE_HOST', 'USE_PNG',
884 'NUMBER_BITS_PER_SET', 'USE_HDF5']
885
886 ###################################################
887 #
888 # Define a SCons builder for configuration flag headers.
889 #
890 ###################################################
891
892 # This function generates a config header file that #defines the
893 # variable symbol to the current variable setting (0 or 1). The source
894 # operands are the name of the variable and a Value node containing the
895 # value of the variable.
896 def build_config_file(target, source, env):
897 (variable, value) = [s.get_contents().decode('utf-8') for s in source]
898 with open(str(target[0].abspath), 'w') as f:
899 print('#define', variable, value, file=f)
900 return None
901
902 # Combine the two functions into a scons Action object.
903 config_action = MakeAction(build_config_file, Transform("CONFIG H", 2))
904
905 # The emitter munges the source & target node lists to reflect what
906 # we're really doing.
907 def config_emitter(target, source, env):
908 # extract variable name from Builder arg
909 variable = str(target[0])
910 # True target is config header file
911 target = Dir('config').File(variable.lower() + '.hh')
912 val = env[variable]
913 if isinstance(val, bool):
914 # Force value to 0/1
915 val = int(val)
916 elif isinstance(val, str):
917 val = '"' + val + '"'
918
919 # Sources are variable name & value (packaged in SCons Value nodes)
920 return [target], [Value(variable), Value(val)]
921
922 config_builder = Builder(emitter=config_emitter, action=config_action)
923
924 main.Append(BUILDERS = { 'ConfigFile' : config_builder })
925
926 def add_local_rpath(env, *targets):
927 '''Set up an RPATH for a library which lives in the build directory.
928
929 The construction environment variable BIN_RPATH_PREFIX should be set to
930 the relative path of the build directory starting from the location of the
931 binary.'''
932 for target in targets:
933 target = env.Entry(target)
934 if not isinstance(target, SCons.Node.FS.Dir):
935 target = target.dir
936 relpath = os.path.relpath(target.abspath, env['BUILDDIR'])
937 components = [
938 '\\$$ORIGIN',
939 '${BIN_RPATH_PREFIX}',
940 relpath
941 ]
942 env.Append(RPATH=[env.Literal(os.path.join(*components))])
943
944 if sys.platform != "darwin":
945 main.Append(LINKFLAGS=Split('-z origin'))
946
947 main.AddMethod(add_local_rpath, 'AddLocalRPATH')
948
949 # builds in ext are shared across all configs in the build root.
950 ext_dir = Dir('#ext').abspath
951 ext_build_dirs = []
952 for root, dirs, files in os.walk(ext_dir):
953 if 'SConscript' in files:
954 build_dir = os.path.relpath(root, ext_dir)
955 ext_build_dirs.append(build_dir)
956 main.SConscript(joinpath(root, 'SConscript'),
957 variant_dir=joinpath(build_root, build_dir))
958
959 gdb_xml_dir = joinpath(ext_dir, 'gdb-xml')
960 Export('gdb_xml_dir')
961
962 ###################################################
963 #
964 # This builder and wrapper method are used to set up a directory with
965 # switching headers. Those are headers which are in a generic location and
966 # that include more specific headers from a directory chosen at build time
967 # based on the current build settings.
968 #
969 ###################################################
970
971 def build_switching_header(target, source, env):
972 path = str(target[0])
973 subdir = str(source[0])
974 dp, fp = os.path.split(path)
975 dp = os.path.relpath(os.path.realpath(dp),
976 os.path.realpath(env['BUILDDIR']))
977 with open(path, 'w') as hdr:
978 print('#include "%s/%s/%s"' % (dp, subdir, fp), file=hdr)
979
980 switching_header_action = MakeAction(build_switching_header,
981 Transform('GENERATE'))
982
983 switching_header_builder = Builder(action=switching_header_action,
984 source_factory=Value,
985 single_source=True)
986
987 main.Append(BUILDERS = { 'SwitchingHeader': switching_header_builder })
988
989 def switching_headers(self, headers, source):
990 for header in headers:
991 self.SwitchingHeader(header, source)
992
993 main.AddMethod(switching_headers, 'SwitchingHeaders')
994
995 ###################################################
996 #
997 # Define build environments for selected configurations.
998 #
999 ###################################################
1000
1001 for variant_path in variant_paths:
1002 if not GetOption('silent'):
1003 print("Building in", variant_path)
1004
1005 # Make a copy of the build-root environment to use for this config.
1006 env = main.Clone()
1007 env['BUILDDIR'] = variant_path
1008
1009 # variant_dir is the tail component of build path, and is used to
1010 # determine the build parameters (e.g., 'X86')
1011 (build_root, variant_dir) = splitpath(variant_path)
1012
1013 # Set env variables according to the build directory config.
1014 sticky_vars.files = []
1015 # Variables for $BUILD_ROOT/$VARIANT_DIR are stored in
1016 # $BUILD_ROOT/variables/$VARIANT_DIR so you can nuke
1017 # $BUILD_ROOT/$VARIANT_DIR without losing your variables settings.
1018 current_vars_file = joinpath(build_root, 'variables', variant_dir)
1019 if isfile(current_vars_file):
1020 sticky_vars.files.append(current_vars_file)
1021 if not GetOption('silent'):
1022 print("Using saved variables file %s" % current_vars_file)
1023 elif variant_dir in ext_build_dirs:
1024 # Things in ext are built without a variant directory.
1025 continue
1026 else:
1027 # Build dir-specific variables file doesn't exist.
1028
1029 # Make sure the directory is there so we can create it later
1030 opt_dir = dirname(current_vars_file)
1031 if not isdir(opt_dir):
1032 mkdir(opt_dir)
1033
1034 # Get default build variables from source tree. Variables are
1035 # normally determined by name of $VARIANT_DIR, but can be
1036 # overridden by '--default=' arg on command line.
1037 default = GetOption('default')
1038 opts_dir = Dir('#build_opts').abspath
1039 if default:
1040 default_vars_files = [joinpath(build_root, 'variables', default),
1041 joinpath(opts_dir, default)]
1042 else:
1043 default_vars_files = [joinpath(opts_dir, variant_dir)]
1044 existing_files = list(filter(isfile, default_vars_files))
1045 if existing_files:
1046 default_vars_file = existing_files[0]
1047 sticky_vars.files.append(default_vars_file)
1048 print("Variables file %s not found,\n using defaults in %s"
1049 % (current_vars_file, default_vars_file))
1050 else:
1051 error("Cannot find variables file %s or default file(s) %s"
1052 % (current_vars_file, ' or '.join(default_vars_files)))
1053 Exit(1)
1054
1055 # Apply current variable settings to env
1056 sticky_vars.Update(env)
1057
1058 Help('''
1059 Build variables for {dir}:
1060 {help}
1061 '''.format(dir=variant_dir, help=sticky_vars.GenerateHelpText(env)),
1062 append=True)
1063
1064 # Process variable settings.
1065
1066 if not have_fenv and env['USE_FENV']:
1067 warning("<fenv.h> not available; forcing USE_FENV to False in",
1068 variant_dir + ".")
1069 env['USE_FENV'] = False
1070
1071 if not env['USE_FENV']:
1072 warning("No IEEE FP rounding mode control in", variant_dir + ".\n"
1073 "FP results may deviate slightly from other platforms.")
1074
1075 if not have_png and env['USE_PNG']:
1076 warning("<png.h> not available; forcing USE_PNG to False in",
1077 variant_dir + ".")
1078 env['USE_PNG'] = False
1079
1080 if env['USE_PNG']:
1081 env.Append(LIBS=['png'])
1082
1083 if env['EFENCE']:
1084 env.Append(LIBS=['efence'])
1085
1086 if env['USE_KVM']:
1087 if not have_kvm:
1088 warning("Can not enable KVM, host seems to lack KVM support")
1089 env['USE_KVM'] = False
1090 elif not is_isa_kvm_compatible(env['TARGET_ISA']):
1091 print("Info: KVM support disabled due to unsupported host and "
1092 "target ISA combination")
1093 env['USE_KVM'] = False
1094
1095 if env['USE_TUNTAP']:
1096 if not have_tuntap:
1097 warning("Can't connect EtherTap with a tap device.")
1098 env['USE_TUNTAP'] = False
1099
1100 if env['BUILD_GPU']:
1101 env.Append(CPPDEFINES=['BUILD_GPU'])
1102
1103 # Warn about missing optional functionality
1104 if env['USE_KVM']:
1105 if not main['HAVE_PERF_ATTR_EXCLUDE_HOST']:
1106 warning("perf_event headers lack support for the exclude_host "
1107 "attribute. KVM instruction counts will be inaccurate.")
1108
1109 # Save sticky variable settings back to current variables file
1110 sticky_vars.Save(current_vars_file, env)
1111
1112 if env['USE_SSE2']:
1113 env.Append(CCFLAGS=['-msse2'])
1114
1115 env.Append(CCFLAGS='$CCFLAGS_EXTRA')
1116 env.Append(LINKFLAGS='$LDFLAGS_EXTRA')
1117
1118 exports=['env']
1119 if main['USE_PYTHON']:
1120 exports.append('marshal_env')
1121
1122 # The src/SConscript file sets up the build rules in 'env' according
1123 # to the configured variables. It returns a list of environments,
1124 # one for each variant build (debug, opt, etc.)
1125 SConscript('src/SConscript', variant_dir=variant_path, exports=exports)
1126
1127 atexit.register(summarize_warnings)