1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-26 21:20:46 +03:00
mold/test/elf/x86_64_warn-execstack.sh
Rui Ueyama 4e3364ddd3 Format
2024-03-27 18:42:55 +09:00

13 lines
253 B
Bash
Executable File

#!/bin/bash
. $(dirname $0)/common.inc
cat <<EOF | $CC -o $t/a.o -c -xassembler -
.section .note.GNU-stack, "x"
EOF
cat <<EOF | $CC -o $t/b.o -c -xc -
int main() {}
EOF
$GCC -B. -o $t/exe $t/a.o $t/b.o 2>&1 | grep -q 'may cause a segmentation fault'