We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 314983c commit bccf15bCopy full SHA for bccf15b
scripts/allow_ptrace.c
@@ -3,5 +3,4 @@
3
4
__attribute__((constructor)) void allow_ptrace() {
5
prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY);
6
- fprintf(stderr, "allow_ptrace: called\n");
7
}
scripts/launch_r.sh
@@ -1,6 +1,5 @@
1
#!/bin/bash
2
-WORK_DIR=$PWD
-export LD_PRELOAD="$WORK_DIR/scripts/allow_ptrace.so"
-# exec "$WORK_DIR/build/r-devel/bin/R" "$@"
+export LD_PRELOAD="./scripts/allow_ptrace.so"
+# # `which_r.sh` sets the R binary used in the command below
exec /usr/bin/R "$@"
0 commit comments