mirror of
https://github.com/rui314/mold.git
synced 2024-11-11 05:46:58 +03:00
41 lines
695 B
Bash
Executable File
41 lines
695 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo -n "Testing $(basename -s .sh $0) ... "
|
|
t=$(pwd)/tmp/$(basename -s .sh $0)
|
|
mkdir -p $t
|
|
|
|
cat <<EOF | clang -fPIC -c -o $t/a.o -x assembler -
|
|
.globl fn1, fn2
|
|
fn1:
|
|
call fn2@PLT
|
|
ret
|
|
EOF
|
|
|
|
clang -shared -fuse-ld=`pwd`/../mold -o $t/b.so $t/a.o
|
|
|
|
readelf --dyn-syms $t/b.so > $t/log
|
|
|
|
grep -q '0000000000000000 0 NOTYPE GLOBAL DEFAULT UND fn2' $t/log
|
|
grep -q '000000000000111c 0 NOTYPE GLOBAL DEFAULT 17 fn1' $t/log
|
|
|
|
cat <<EOF | clang -fPIC -c -o $t/c.o -xc -
|
|
#include <stdio.h>
|
|
|
|
int fn1();
|
|
|
|
void fn2() {
|
|
printf("hello\n");
|
|
}
|
|
|
|
int main() {
|
|
fn1();
|
|
return 0;
|
|
}
|
|
EOF
|
|
|
|
clang -fuse-ld=`pwd`/../mold -o $t/exe $t/c.o $t/b.so
|
|
exit 0
|
|
$t/exe | grep -q hello
|
|
|
|
echo OK
|