Cmake support
This commit is contained in:
parent
a99ac59096
commit
da4ebcbe6c
19
README.md
19
README.md
|
@ -125,6 +125,25 @@ And then you can execute the simulator:
|
||||||
$ ./RISCV_TLM asm/BasicLoop.hex
|
$ ./RISCV_TLM asm/BasicLoop.hex
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Using cmake
|
||||||
|
|
||||||
|
It is possible to use cmake:
|
||||||
|
```
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake ..
|
||||||
|
make
|
||||||
|
```
|
||||||
|
|
||||||
|
note that SystemC must be compiled with cmake:
|
||||||
|
```
|
||||||
|
cd <systemc directory>
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake ../ -DCMAKE_CXX_STANDARD=17
|
||||||
|
make
|
||||||
|
```
|
||||||
|
|
||||||
### Arguments
|
### Arguments
|
||||||
-L loglevel: 3 for detailed (INFO) log, 0 to ERROR log level
|
-L loglevel: 3 for detailed (INFO) log, 0 to ERROR log level
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue