1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-26 13:10:46 +03:00
mold/test/elf/z-origin.sh
2022-10-06 12:07:31 +08:00

16 lines
292 B
Bash
Executable File

#!/bin/bash
. $(dirname $0)/common.inc
cat <<EOF | $CC -c -o $t/a.o -xc -
#include <stdio.h>
int main() {
printf("Hello world\n");
}
EOF
$CC -B. -o $t/exe $t/a.o -Wl,-z,origin
readelf --dynamic $t/exe | grep -Eq '\(FLAGS\)\s+ORIGIN'
readelf --dynamic $t/exe | grep -Eq 'Flags:.*ORIGIN'