mirror of
https://github.com/rui314/mold.git
synced 2024-11-12 23:48:51 +03:00
16 lines
292 B
Bash
Executable File
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'
|