mirror of
https://github.com/rui314/mold.git
synced 2024-11-15 14:36:25 +03:00
31 lines
602 B
Bash
Executable File
31 lines
602 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 | cc -o $t/a.o -c -xc -
|
|
void foo() {}
|
|
EOF
|
|
|
|
mkdir -p $t/foo/bar
|
|
rm -f $t/foo/bar/libfoo.a
|
|
ar rcs $t/foo/bar/libfoo.a $t/a.o
|
|
|
|
cat <<EOF > $t/foo/bar/b.script
|
|
INPUT(/foo/bar/libfoo.a)
|
|
EOF
|
|
|
|
cat <<EOF | cc -o $t/c.o -c -xc -
|
|
void foo();
|
|
int main() { foo(); }
|
|
EOF
|
|
|
|
clang -fuse-ld=$mold -o $t/exe $t/c.o -Wl,--sysroot=$t/ $t/foo/bar/b.script
|
|
|
|
clang -fuse-ld=$mold -o $t/exe $t/c.o -Wl,--sysroot=tmp/$(basename -s .sh $0)/ $t/foo/bar/b.script
|
|
|
|
echo OK
|