diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2011-08-02 00:10:08 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2011-08-02 00:10:08 -0500 |
commit | 1b49c56679b18b068e04cfe074bf984897fe656b (patch) | |
tree | 200a63d9313333626c7a2138892ce7aaf1f44f35 /tests/SConscript | |
parent | 206c2e9a0ee04e00100dde25da9b15cbfbaac0d6 (diff) | |
download | gem5-1b49c56679b18b068e04cfe074bf984897fe656b.tar.xz |
Scons: Drop RUBY as compile time option.
This patch drops RUBY as a compile time option. Instead the PROTOCOL option
is used to figure out whether or not to build Ruby. If the specified protocol
is 'None', then Ruby is not compiled.
Diffstat (limited to 'tests/SConscript')
-rw-r--r-- | tests/SConscript | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/SConscript b/tests/SConscript index 2316d9092..58a959669 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -289,16 +289,6 @@ else: 'inorder-timing', 'rubytest'] if env['RUBY']: - # With Ruby, A protocol must be specified in the environment - assert(env['PROTOCOL']) - - # - # Is there a way to determine what is Protocol EnumVariable - # default and eliminate the need to hard code the default protocol below? - # - # If the binary includes the default ruby protocol, run both ruby and - # non-ruby versions of the tests. Otherwise just run the ruby versions. - # if env['PROTOCOL'] == 'MI_example': configs += [c + "-ruby" for c in configs] else: |