diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-12-05 02:50:08 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-12-05 02:50:08 -0500 |
commit | 8032339c59da9eb162fa735ed3c99c10dc0f8ce0 (patch) | |
tree | e0fcdac182bdc16bdaacd6e3c79bd6c1b459b9f0 /tools | |
parent | 6ed62fe94531f2e56c58d1d7891e099de0a26663 (diff) | |
download | roux-8032339c59da9eb162fa735ed3c99c10dc0f8ce0.tar.gz |
disable pie (default on some os)
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/unit.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/unit.sh b/tools/unit.sh index d665d09..ded1b29 100755 --- a/tools/unit.sh +++ b/tools/unit.sh @@ -59,7 +59,7 @@ once() { LNK="$ASM" fi - if ! cc -g -o $BIN $LNK + if ! cc -no-pie -g -o $BIN $LNK then echo "[cc fail]" return 1 |