mirror of
https://github.com/rui314/mold.git
synced 2024-11-15 14:36:25 +03:00
fe26dad744
You can now build mold with the following commands: $ mkdir -p out/debug $ cd out/debug $ cmake -GNinja -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Debug ../.. $ ninja To run tests, use the following commands: $ cd out/debug $ ctest -j$(nproc)
50 lines
1.1 KiB
Bash
Executable File
50 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
mold=$1
|
|
cd $(dirname $0)
|
|
echo -n "Testing $(basename -s .sh $0) ... "
|
|
t=$(pwd)/tmp/$(basename -s .sh $0)
|
|
mkdir -p $t
|
|
|
|
echo 'int main() {}' | cc -m32 -o $t/exe -xc - >& /dev/null \
|
|
|| { echo skipped; exit; }
|
|
|
|
cat <<EOF | cc -m32 -c -o $t/a.o -xc -
|
|
char hello[] = "Hello world";
|
|
EOF
|
|
|
|
mkdir -p $t/lib32
|
|
ar crs $t/lib32/libfoo.a $t/a.o
|
|
clang -m32 -shared -o $t/lib32/libfoo.so $t/a.o
|
|
|
|
cat <<EOF | cc -c -o $t/d.o -xc -
|
|
char hello[] = "Hello world";
|
|
EOF
|
|
|
|
mkdir -p $t/lib64
|
|
ar crs $t/lib64/libfoo.a $t/d.o
|
|
clang -shared -o $t/lib64/libfoo.so $t/d.o
|
|
|
|
cat <<EOF | cc -c -o $t/e.o -xc -
|
|
#include <stdio.h>
|
|
|
|
extern char hello[];
|
|
|
|
int main() {
|
|
printf("%s\n", hello);
|
|
}
|
|
EOF
|
|
|
|
mkdir -p $t/script
|
|
echo 'OUTPUT_FORMAT(elf32-i386)' > $t/script/libfoo.so
|
|
|
|
clang -fuse-ld=$mold -o $t/exe -L$t/script -L$t/lib32 -L$t/lib64 \
|
|
$t/e.o -lfoo -rpath $t/lib64 >& $t/log
|
|
|
|
grep -q 'script/libfoo.so: skipping incompatible file' $t/log
|
|
grep -q 'lib32/libfoo.so: skipping incompatible file' $t/log
|
|
grep -q 'lib32/libfoo.a: skipping incompatible file' $t/log
|
|
$t/exe | grep -q 'Hello world'
|
|
|
|
echo OK
|