diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2016-10-26 14:50:54 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2016-10-26 14:50:54 -0400 |
commit | 90b087171b048aa226be96dc32d73624f957b793 (patch) | |
tree | 6492ef9c4ff47d889c24fc22d96d65e9305829cc /configs/example/ruby_gpu_random_test.py | |
parent | 607c2772915628c2c67c1c5bfdefaa33ae66a06e (diff) | |
download | gem5-90b087171b048aa226be96dc32d73624f957b793.tar.xz |
config: Break out base options for usage with NULL ISA
This patch breaks out the most basic configuration options into a set
of base options, to allow them to be used also by scripts that do not
involve any ISA, and thus no actual CPUs or devices.
The patch also fixes a few modules so that they can be imported in a
NULL build, and avoid dragging in FSConfig every time Options is
imported.
Diffstat (limited to 'configs/example/ruby_gpu_random_test.py')
-rw-r--r-- | configs/example/ruby_gpu_random_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/example/ruby_gpu_random_test.py b/configs/example/ruby_gpu_random_test.py index 08eac583a..80aecf90e 100644 --- a/configs/example/ruby_gpu_random_test.py +++ b/configs/example/ruby_gpu_random_test.py @@ -50,7 +50,7 @@ config_root = os.path.dirname(config_path) m5_root = os.path.dirname(config_root) parser = optparse.OptionParser() -Options.addCommonOptions(parser) +Options.addNoISAOptions(parser) parser.add_option("--maxloads", metavar="N", default=100, help="Stop after N loads") |