1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-05 00:57:08 +03:00
mold/test/macho/needed-framework.sh

39 lines
854 B
Bash
Raw Normal View History

2021-12-01 07:30:45 +03:00
#!/bin/bash
export LANG=
2021-12-01 07:30:45 +03:00
set -e
CC="${CC:-cc}"
CXX="${CXX:-c++}"
2022-01-24 04:21:08 +03:00
testname=$(basename "$0" .sh)
echo -n "Testing $testname ... "
cd "$(dirname "$0")"/../..
mold="$(pwd)/ld64.mold"
2022-01-07 12:06:53 +03:00
t=out/test/macho/$testname
mkdir -p $t
2021-12-01 07:30:45 +03:00
2022-01-07 12:06:53 +03:00
mkdir -p $t/Foo.framework
2021-12-01 07:30:45 +03:00
2022-01-07 12:06:53 +03:00
cat <<EOF | $CC -o $t/Foo.framework/Foo -shared -xc -
2021-12-01 07:30:45 +03:00
#include <stdio.h>
void hello() {
printf("Hello world\n");
}
EOF
2022-01-07 12:06:53 +03:00
cat <<EOF | $CC -o $t/a.o -c -xc -
2021-12-01 07:30:45 +03:00
#include <stdio.h>
int main() {
printf("Hello world\n");
}
EOF
2022-01-07 12:12:40 +03:00
clang -fuse-ld="$mold" -o $t/exe $t/a.o -Wl,-F$t -Wl,-needed_framework,Foo \
2021-12-01 07:30:45 +03:00
-Wl,-dead_strip_dylibs
2022-01-07 12:06:53 +03:00
otool -l $t/exe | grep -A3 'cmd LC_LOAD_DYLIB' | fgrep -q Foo.framework/Foo
2021-12-01 07:30:45 +03:00
2022-01-07 12:12:40 +03:00
clang -fuse-ld="$mold" -o $t/exe $t/a.o -Wl,-F$t -Wl,-framework,Foo \
2021-12-01 07:30:45 +03:00
-Wl,-dead_strip_dylibs
2022-01-07 12:06:53 +03:00
otool -l $t/exe | grep -A3 'cmd LC_LOAD_DYLIB' >& $t/log
! fgrep -q Foo.framework/Foo $t/log || false
2021-12-01 07:30:45 +03:00
echo OK