diff options
author | Gabe Black <gabeblack@google.com> | 2018-03-05 22:05:47 -0800 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2018-03-06 23:39:01 +0000 |
commit | 0bb50e6745b35c785c4d8051eb43f6bc419fb924 (patch) | |
tree | 97dfd086d6e4b3f4252aec459091ff6dad19f2b6 /ext | |
parent | 10e5646dbbe46aa317ec568cb2a58968ca867575 (diff) | |
download | gem5-0bb50e6745b35c785c4d8051eb43f6bc419fb924.tar.xz |
scons: Switch from the print statement to the print function.
Starting with version 3, scons imposes using the print function instead
of the print statement in code it processes. To get things building
again, this change moves all python code within gem5 to use the
function version. Another change by another author separately made this
same change to the site_tools and site_init.py files.
Change-Id: I2de7dc3b1be756baad6f60574c47c8b7e80ea3b0
Reviewed-on: https://gem5-review.googlesource.com/8761
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'ext')
-rw-r--r-- | ext/libelf/SConscript | 6 | ||||
-rw-r--r-- | ext/systemc/SConscript | 6 | ||||
-rw-r--r-- | ext/systemc/src/sysc/kernel/SConscript.sc | 4 | ||||
-rw-r--r-- | ext/systemc/src/sysc/qt/SConscript.sc | 6 |
4 files changed, 15 insertions, 7 deletions
diff --git a/ext/libelf/SConscript b/ext/libelf/SConscript index 85820acb3..45f809da9 100644 --- a/ext/libelf/SConscript +++ b/ext/libelf/SConscript @@ -28,6 +28,8 @@ # # Authors: Nathan Binkert +from __future__ import print_function + import os, subprocess Import('main') @@ -114,8 +116,8 @@ if m4env.Detect('gm4'): # Check that m4 is available import SCons.Tool.m4 if not SCons.Tool.m4.exists(m4env): - print "Error: Can't find version of M4 macro processor. " + \ - "Please install M4 and try again." + print("Error: Can't find version of M4 macro processor. " + + "Please install M4 and try again.") Exit(1) m4env.Append(M4FLAGS=['-DSRCDIR=%s' % Dir('.').path]) diff --git a/ext/systemc/SConscript b/ext/systemc/SConscript index c2e67ae1c..cb0c61db4 100644 --- a/ext/systemc/SConscript +++ b/ext/systemc/SConscript @@ -23,6 +23,8 @@ # Authors: Christian Menard # Matthias Jung +from __future__ import print_function + import os from m5.util.terminal import get_termcap @@ -57,8 +59,8 @@ elif conf.CheckDeclaration('__x86_64__'): arch = 'x86_64' else: termcap = get_termcap(GetOption('use_colors')) - print termcap.Yellow + termcap.Bold + \ - "Warning: Unrecognized architecture for systemc." + termcap.Normal + print(termcap.Yellow + termcap.Bold + + "Warning: Unrecognized architecture for systemc." + termcap.Normal) conf.Finish() diff --git a/ext/systemc/src/sysc/kernel/SConscript.sc b/ext/systemc/src/sysc/kernel/SConscript.sc index 0db22a6ad..ac79c2fb5 100644 --- a/ext/systemc/src/sysc/kernel/SConscript.sc +++ b/ext/systemc/src/sysc/kernel/SConscript.sc @@ -23,6 +23,8 @@ # Authors: Christian Menard # Matthias Jung +from __future__ import print_function + Import('systemc', 'SystemCSource') SystemCSource( @@ -63,5 +65,5 @@ elif coroutine_lib == 'pthreads': elif coroutine_lib == 'fiber': SystemCSource('sc_cor_fiber.cpp') else: - print 'Unrecognized threading implementation \'%s\'' % coroutine_lib + print('Unrecognized threading implementation \'%s\'' % coroutine_lib) Exit(1) diff --git a/ext/systemc/src/sysc/qt/SConscript.sc b/ext/systemc/src/sysc/qt/SConscript.sc index 5ffb0d3aa..c2e8baf8e 100644 --- a/ext/systemc/src/sysc/qt/SConscript.sc +++ b/ext/systemc/src/sysc/qt/SConscript.sc @@ -23,6 +23,8 @@ # Authors: Christian Menard # Matthias Jung +from __future__ import print_function + import os Import('systemc', 'SystemCSource') @@ -32,11 +34,11 @@ if systemc['COROUTINE_LIB'] == 'qt': qt_arch = systemc.get('QT_ARCH', None) if not qt_arch: - print 'No architecture selected for the QT coroutine library.' + print('No architecture selected for the QT coroutine library.') Exit(1) if qt_arch in ('i386', 'iX86_64'): SystemCSource(os.path.join('md', qt_arch + '.s')) else: - print 'Don\'t know what to do for QT arch %s.' % qt_arch + print('Don\'t know what to do for QT arch %s.' % qt_arch) Exit(1) |