1
1
mirror of https://github.com/rui314/mold.git synced 2024-11-20 20:37:49 +03:00
mold/test/symtab-section-symbols.sh
2024-08-14 16:23:25 +09:00

13 lines
219 B
Bash
Executable File

#!/bin/bash
. $(dirname $0)/common.inc
cat <<EOF | $CC -o $t/a.o -c -xc -
#include <stdio.h>
int main() {
printf("Hello world\n");
}
EOF
$CC -B. -o $t/exe $t/a.o
readelf -s $t/exe | grep -q 'SECTION LOCAL DEFAULT'