blob: 1fa2e1d499bc68bdfe9958d549e39781a477fb84 (
plain)
1
2
3
4
5
6
7
8
9
|
In case you arrive at a segmentation fault when working on rose, you can use valgrind.
To do this, you can compile rose with the `DEBUG` value in `build.sh` set to `-g`
and then:
```
valgrind --track-origins=yes ./rose
```
|