aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/050.sh
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-08-13 02:25:32 +0900
committernsfisis <nsfisis@gmail.com>2025-08-15 10:06:21 +0900
commita5ab4f4dfacd1938a64df4d07df346774f62c541 (patch)
tree2eca028cfb7afbca9bb3668e89685d6768174e92 /tests/050.sh
parentd38303ba5860cdfb3f2532a3cc1e787a8cccbafd (diff)
downloadducc-a5ab4f4dfacd1938a64df4d07df346774f62c541.tar.gz
ducc-a5ab4f4dfacd1938a64df4d07df346774f62c541.tar.zst
ducc-a5ab4f4dfacd1938a64df4d07df346774f62c541.zip
feat: output .note.GNU-stack section and remove "-z noexecstack" from ld flags
Diffstat (limited to 'tests/050.sh')
-rw-r--r--tests/050.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/050.sh b/tests/050.sh
index 295ac2d..7e05ec2 100644
--- a/tests/050.sh
+++ b/tests/050.sh
@@ -17,7 +17,7 @@ if [[ $? -ne 0 ]]; then
cat main.s >&2
exit 1
fi
-gcc -Wl,-z,noexecstack -o a.out main.s
+gcc -o a.out main.s
./a.out "$@" > output
exit_code=$?