diff options
author | bpotter <brandon.potter@amd.com> | 2015-04-23 13:40:18 -0700 |
---|---|---|
committer | bpotter <brandon.potter@amd.com> | 2015-04-23 13:40:18 -0700 |
commit | 936768c8f4b266e5cc5317def6f34306def29c56 (patch) | |
tree | 8759683bfff774cf0177868153520cbb7a11f0bd /configs/example | |
parent | 483f873d0138a668f160ba06510600084cdc8473 (diff) | |
download | gem5-936768c8f4b266e5cc5317def6f34306def29c56.tar.xz |
config: enable setting SE-mode environment variables from file
Diffstat (limited to 'configs/example')
-rw-r--r-- | configs/example/se.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configs/example/se.py b/configs/example/se.py index a582d2976..5357ed7a2 100644 --- a/configs/example/se.py +++ b/configs/example/se.py @@ -94,6 +94,10 @@ def get_processes(options): process.executable = wrkld process.cwd = os.getcwd() + if options.env: + with open(options.env, 'r') as f: + process.env = [line.rstrip() for line in f] + if len(pargs) > idx: process.cmd = [wrkld] + pargs[idx].split() else: |