summaryrefslogtreecommitdiff
path: root/rf64.c
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2024-11-13 22:43:04 +0100
committerMitya Selivanov <automainint@guattari.tech>2024-11-13 22:43:04 +0100
commit674f8aa8f7a4e5a7197eae49c116727f4d681831 (patch)
tree4cdcd9cac33117d344b45a53a29792939a3372bd /rf64.c
parent7966948062e55fac965d1a6a13b848dc0df78a9f (diff)
downloadreduced_system_layer-674f8aa8f7a4e5a7197eae49c116727f4d681831.zip
Remove shstk option
Diffstat (limited to 'rf64.c')
-rwxr-xr-xrf64.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/rf64.c b/rf64.c
index aeba85a..0a70794 100755
--- a/rf64.c
+++ b/rf64.c
@@ -15,18 +15,18 @@
#/
SRC=${0##*./}
BIN=${SRC%.*}
-gcc \
- -Wall -Wextra -Werror -pedantic \
- -Wno-old-style-declaration \
- -Wno-missing-braces \
- -Wno-unused-variable \
- -Wno-unused-but-set-variable \
- -Wno-unused-parameter \
- -Wno-overlength-strings \
- -O3 \
- -fsanitize=undefined,address,leak -mshstk \
- -D RF64_TESTS \
- -o $BIN $SRC && \
+gcc \
+ -Wall -Wextra -Werror -pedantic \
+ -Wno-old-style-declaration \
+ -Wno-missing-braces \
+ -Wno-unused-variable \
+ -Wno-unused-but-set-variable \
+ -Wno-unused-parameter \
+ -Wno-overlength-strings \
+ -O3 \
+ -fsanitize=undefined,address,leak \
+ -D RF64_TESTS \
+ -o $BIN $SRC && \
./$BIN $@ && rm $BIN
exit $? # */
#endif