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

41 lines
897 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++}"
testname=$(basename -s .sh "$0")
echo -n "Testing $testname ... "
cd "$(dirname "$0")"/../..
mold="$(pwd)/ld64.mold"
t="$(pwd)/out/test/macho/$testname"
mkdir -p "$t"
2021-12-01 07:30:45 +03:00
mkdir -p "$t"/Foo.framework
2021-12-01 07:30:45 +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
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
cd "$t"
2021-12-01 07:30:45 +03:00
clang -fuse-ld="$mold" -o "$t"/exe "$t"/a.o -Wl,-F. -Wl,-needed_framework,Foo \
2021-12-01 07:30:45 +03:00
-Wl,-dead_strip_dylibs
otool -l "$t"/exe | grep -A3 'cmd LC_LOAD_DYLIB' | fgrep -q Foo.framework/Foo
2021-12-01 07:30:45 +03:00
clang -fuse-ld="$mold" -o "$t"/exe "$t"/a.o -Wl,-F. -Wl,-framework,Foo \
2021-12-01 07:30:45 +03:00
-Wl,-dead_strip_dylibs
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