1
1
mirror of https://github.com/rui314/mold.git synced 2024-11-15 14:36:25 +03:00
mold/test/tlsdesc.sh
Rui Ueyama 96589d4acf Allow to put local symbols to .dynsym
We used to write only global symbols to .dynsym because, in most
use cases, .dynsym are used for resolving inter-module dependencies.
However, we need to put local symbols to .dynsym if they are thread-
local symbols.
2021-08-22 19:28:37 +09:00

53 lines
975 B
Bash
Executable File

#!/bin/bash
set -e
cd $(dirname $0)
mold=`pwd`/../mold
echo -n "Testing $(basename -s .sh $0) ... "
t=$(pwd)/tmp/$(basename -s .sh $0)
mkdir -p $t
cat <<EOF | gcc -fPIC -mtls-dialect=gnu2 -c -o $t/a.o -xc -
extern _Thread_local int foo;
int get_foo() {
return foo;
}
static _Thread_local int bar = 5;
int get_bar() {
return bar;
}
EOF
cat <<EOF | clang -fPIC -c -o $t/b.o -xc -
#include <stdio.h>
_Thread_local int foo;
int get_foo();
int get_bar();
int main() {
foo = 42;
printf("%d %d\n", get_foo(), get_bar());
return 0;
}
EOF
clang -fuse-ld=$mold -o $t/exe $t/a.o $t/b.o
$t/exe | grep -q '42 5'
clang -fuse-ld=$mold -o $t/exe $t/a.o $t/b.o -Wl,-no-relax
$t/exe | grep -q '42 5'
clang -fuse-ld=$mold -shared -o $t/c.so $t/a.o
clang -fuse-ld=$mold -o $t/exe $t/b.o $t/c.so
$t/exe | grep -q '42 5'
clang -fuse-ld=$mold -shared -o $t/c.so $t/a.o -Wl,-no-relax
clang -fuse-ld=$mold -o $t/exe $t/b.o $t/c.so -Wl,-no-relax
$t/exe | grep -q '42 5'
echo OK