mirror of
https://github.com/rui314/mold.git
synced 2024-11-11 05:46:58 +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)
58 lines
1.3 KiB
Bash
Executable File
58 lines
1.3 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
|
|
|
|
cat <<'EOF' | clang -c -o $t/a.o -xc -
|
|
#include <stdio.h>
|
|
__attribute__((constructor(10000))) void init4() { printf("1"); }
|
|
EOF
|
|
|
|
cat <<'EOF' | clang -c -o $t/b.o -xc -
|
|
#include <stdio.h>
|
|
__attribute__((constructor(100))) void init3() { printf("2"); }
|
|
EOF
|
|
|
|
cat <<'EOF' | clang -c -o $t/c.o -xc -
|
|
#include <stdio.h>
|
|
__attribute__((constructor)) void init1() { printf("3"); }
|
|
EOF
|
|
|
|
cat <<'EOF' | clang -c -o $t/d.o -xc -
|
|
#include <stdio.h>
|
|
__attribute__((constructor)) void init2() { printf("4"); }
|
|
EOF
|
|
|
|
cat <<'EOF' | clang -c -o $t/e.o -xc -
|
|
#include <stdio.h>
|
|
__attribute__((destructor(10000))) void fini4() { printf("5"); }
|
|
EOF
|
|
|
|
cat <<'EOF' | clang -c -o $t/f.o -xc -
|
|
#include <stdio.h>
|
|
__attribute__((destructor(100))) void fini3() { printf("6"); }
|
|
EOF
|
|
|
|
cat <<'EOF' | clang -c -o $t/g.o -xc -
|
|
#include <stdio.h>
|
|
__attribute__((destructor)) void fini1() { printf("7"); }
|
|
EOF
|
|
|
|
cat <<'EOF' | clang -c -o $t/h.o -xc -
|
|
#include <stdio.h>
|
|
__attribute__((destructor)) void fini2() { printf("8"); }
|
|
EOF
|
|
|
|
cat <<EOF | clang -c -o $t/i.o -xc -
|
|
int main() {}
|
|
EOF
|
|
|
|
clang -fuse-ld=$mold -o $t/exe $t/a.o $t/b.o $t/c.o $t/d.o \
|
|
$t/e.o $t/f.o $t/g.o $t/h.o $t/i.o
|
|
$t/exe | grep -q '21348756'
|
|
|
|
echo OK
|