27 lines · c
1// RUN: touch %t.o2 3// RUN: %clang -target arm64-apple-ios12.3 -fuse-ld= \4// RUN: -isysroot %S/Inputs/iPhoneOS13.0.sdk -mlinker-version=400 \5// RUN: -### %t.o 2>&1 \6// RUN: | FileCheck --check-prefix=LINKER-OLD %s7// RUN: %clang -target arm64-apple-ios12.3 -fuse-ld= \8// RUN: -isysroot %S/Inputs/iPhoneOS13.0.sdk -mlinker-version=520 \9// RUN: -### %t.o 2>&1 \10// RUN: | FileCheck --check-prefix=LINKER-NEW %s11// RUN: %clang -target arm64-apple-ios12.3 -fuse-ld=lld \12// RUN: -isysroot %S/Inputs/iPhoneOS13.0.sdk -mlinker-version=0 \13// RUN: -### %t.o -B%S/Inputs/lld 2>&1 \14// RUN: | FileCheck --check-prefix=LINKER-NEW %s15// RUN: %clang -target x86_64-apple-ios13-simulator -fuse-ld= \16// RUN: -isysroot %S/Inputs/iPhoneOS13.0.sdk -mlinker-version=520 \17// RUN: -### %t.o 2>&1 \18// RUN: | FileCheck --check-prefix=SIMUL %s19// RUN: %clang -target x86_64-apple-ios13-simulator -fuse-ld=lld \20// RUN: -isysroot %S/Inputs/iPhoneOS13.0.sdk -mlinker-version=0 \21// RUN: -### %t.o -B%S/Inputs/lld 2>&1 \22// RUN: | FileCheck --check-prefix=SIMUL %s23 24// LINKER-OLD: "-iphoneos_version_min" "12.3.0"25// LINKER-NEW: "-platform_version" "ios" "12.3.0" "13.0"26// SIMUL: "-platform_version" "ios-simulator" "13.0.0" "13.0"27