Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/simple_system/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ with different configurations of Ibex, specified by parameters. To build the
"small" configuration, run the following command from the Ibex repository root.


```
fusesoc --cores-root=. run --target=sim --setup --build \
lowrisc:ibex:ibex_simple_system $(util/ibex_config.py small fusesoc_opts)
```sh
util/ibex_config.py small fusesoc_opts | fusesoc --cores-root=. run --target=sim --setup \
--build lowrisc:ibex:ibex_simple_system
```

To see performance counters other than the total number of instructions
Expand Down
2 changes: 1 addition & 1 deletion examples/sw/benchmarks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ All of these benchmarks run on Simple System. A verilator simulation suitable
for running them can be built with:

```
fusesoc --cores-root=. run --target=sim --setup --build lowrisc:ibex:ibex_simple_system `./util/ibex_config.py maxperf fusesoc_opts`
util/ibex_config.py maxperf fusesoc_opts | fusesoc --cores-root=. run --target=sim --setup --build lowrisc:ibex:ibex_simple_system
```

This will build a simulation of Ibex in the 'maxperf' configuration.
Expand Down
2 changes: 1 addition & 1 deletion util/ibex_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def output(self, config, args):
fusesoc_cmd = []
for fld, typ in Config.known_fields:
val = config.params[fld]
fusesoc_cmd.append(shlex.quote(f'--{fld}={val}'))
fusesoc_cmd.append(f'--{fld} {val}')

return ' '.join(fusesoc_cmd)

Expand Down
Loading