summaryrefslogtreecommitdiff
path: root/examples/landscape.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 /examples/landscape.c
parent7966948062e55fac965d1a6a13b848dc0df78a9f (diff)
downloadreduced_system_layer-674f8aa8f7a4e5a7197eae49c116727f4d681831.zip
Remove shstk option
Diffstat (limited to 'examples/landscape.c')
-rwxr-xr-xexamples/landscape.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/examples/landscape.c b/examples/landscape.c
index 94b868f..9ee2e98 100755
--- a/examples/landscape.c
+++ b/examples/landscape.c
@@ -9,18 +9,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 \
- -lX11 -lm \
- -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 \
+ -lX11 -lm \
+ -o $BIN $SRC && \
./$BIN $@ && rm $BIN
exit $? # */
#endif