configure: make qemu and gem5 steps optional

This commit is contained in:
Ciro Santilli
2018-03-08 08:41:00 +00:00
parent ef287e985e
commit 5d5c6b954c
2 changed files with 43 additions and 20 deletions

View File

@@ -1501,12 +1501,14 @@ To get started, have a look at the "Hardware device drivers" secion under link:k
== gem5
=== gem5 getting started
gem5 is a system simulator, much <<gem5-vs-qemu,like QEMU>>: http://gem5.org/
For the most part, just add the `-g` option to the QEMU commands and everything should magically work:
....
./configure && ./build -a arm -g
./configure -gq && ./build -a arm -g
./run -a arm -g
....
@@ -1839,7 +1841,7 @@ We have ported the PARSEC benchmark http://parsec.cs.princeton.edu for cross com
This repo makes it trivial to get started with it:
....
configure -p && ./build -a arm -g -i buildroot_config_fragment_parsec
configure -gpq && ./build -a arm -g -i buildroot_config_fragment_parsec
./run -a arm -g
....