Add gammaray test
This commit is contained in:
parent
cef2787c95
commit
d783d9302e
3 changed files with 19 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
.vscode
|
||||
build/
|
||||
.cache/
|
||||
.cache/
|
||||
.direnv/
|
||||
|
|
12
README.md
12
README.md
|
@ -4,3 +4,15 @@
|
|||
2. `cmakeConfigurePhase`
|
||||
3. `buildPhase`
|
||||
4. `./src/tutorial_kirigami2`
|
||||
|
||||
For use gammaray, you need to disable yama security.
|
||||
|
||||
```
|
||||
echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
|
||||
```
|
||||
|
||||
Then run with,
|
||||
|
||||
```
|
||||
gammaray ./src/tutorial_kirigami2
|
||||
```
|
||||
|
|
|
@ -22,6 +22,11 @@
|
|||
pkgs.ninja
|
||||
pkgs.cmake
|
||||
pkgs.gcc
|
||||
|
||||
# Not required at compile time
|
||||
pkgs.gammaray
|
||||
pkgs.gdb # Required for gammaray
|
||||
pkgs.lldb # Required for gammaray
|
||||
];
|
||||
|
||||
dontFixCmake = true;
|
||||
|
|
Loading…
Reference in a new issue