[gem5-users] Re: Custom Output Directory

2024-02-08 Thread Samuel Thomas via gem5-users
This used to be true in older versions (I would use this in my older projects), but it seems as though the “outdir” flag is no longer in Options.py for version 23.1.0.0. Which version are you working from? > On Feb 8, 2024, at 6:56 PM, muke101 wrote: > > Hi, you need the --outdir flag and it

[gem5-users] Re: Custom Output Directory

2024-02-08 Thread muke101 via gem5-users
Hi, you need the --outdir flag and it has to come before you specify the config script (like se.py), so it's passed to the gem5 binary directly:) so: ./build/X86/gem5.fast --outdir=results configs/example/se.py Sent from Proton Mail mobile Original Message On 8 Feb 2024,

[gem5-users] Custom Output Directory

2024-02-08 Thread Thomas, Samuel via gem5-users
Hi all, This may be a really dumb question, but I've been a user of v22.0.0.2 for a while and need to use v23.1.0.0 for a new project. How am I supposed to send the output from a simulation to a custom directory (previously "-d ") in this new version? Do I have to add an option in my config script