1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 08:37:28 +03:00
mold/test/macho/tbd-install-name.sh

43 lines
1010 B
Bash
Raw Normal View History

#!/bin/bash
export LC_ALL=C
set -e
testname=$(basename "$0" .sh)
echo -n "Testing $testname ... "
2022-08-22 14:35:09 +03:00
t=out/test/macho/$(uname -m)/$testname
mkdir -p $t
cat > $t/libfoo.tbd <<'EOF'
--- !tapi-tbd
tbd-version: 4
targets: [ x86_64-macos, arm64-macos ]
uuids:
- target: x86_64-macos
value: 00000000-0000-0000-0000-000000000000
- target: arm64-macos
value: 00000000-0000-0000-0000-000000000000
install-name: '/foo'
current-version: 0
compatibility-version: 0
exports:
- targets: [ x86_64-macos, arm64-macos ]
symbols: [ '$ld$install_name$os25.0$/bar', _foo ]
...
EOF
2022-08-22 14:35:09 +03:00
cat <<EOF | cc -o $t/a.o -c -xc -
void foo();
int main() { foo(); }
EOF
2022-08-22 14:35:09 +03:00
cc --ld-path=./ld64 -o $t/exe1 $t/libfoo.tbd $t/a.o \
-Wl,-platform_version,macos,20.0,20.0 >& /dev/null
otool -L $t/exe1 | grep -q /foo
2022-08-22 14:35:09 +03:00
cc --ld-path=./ld64 -o $t/exe2 $t/libfoo.tbd $t/a.o \
-Wl,-platform_version,macos,25.0,21.0 >& /dev/null
otool -L $t/exe2 | grep -q /bar
echo OK