1 // RUN: touch %t.o 2 3 // RUN: %clang -target arm64_32-apple-watchos5.2 -fuse-ld= \ 4 // RUN: -isysroot %S/Inputs/WatchOS6.0.sdk -mlinker-version=0 \ 5 // RUN: -### %t.o 2>&1 \ 6 // RUN: | FileCheck --check-prefix=LINKER-OLD %s 7 // RUN: %clang -target arm64_32-apple-watchos5.2 -fuse-ld= \ 8 // RUN: -isysroot %S/Inputs/WatchOS6.0.sdk -mlinker-version=400 \ 9 // RUN: -### %t.o 2>&1 \ 10 // RUN: | FileCheck --check-prefix=LINKER-OLD %s 11 // RUN: %clang -target arm64_32-apple-watchos5.2 -fuse-ld=lld.darwinnew \ 12 // RUN: -isysroot %S/Inputs/WatchOS6.0.sdk -mlinker-version=0 \ 13 // RUN: -### %t.o -B%S/Inputs/lld 2>&1 \ 14 // RUN: | FileCheck --check-prefix=LINKER-NEW %s 15 // RUN: %clang -target arm64_32-apple-watchos5.2 -fuse-ld= \ 16 // RUN: -isysroot %S/Inputs/WatchOS6.0.sdk -mlinker-version=520 \ 17 // RUN: -### %t.o 2>&1 \ 18 // RUN: | FileCheck --check-prefix=LINKER-NEW %s 19 // RUN: %clang -target x86_64-apple-watchos6-simulator -fuse-ld= \ 20 // RUN: -isysroot %S/Inputs/WatchOS6.0.sdk -mlinker-version=520 \ 21 // RUN: -### %t.o 2>&1 \ 22 // RUN: | FileCheck --check-prefix=SIMUL %s 23 24 // LINKER-OLD: "-watchos_version_min" "5.2.0" 25 // LINKER-NEW: "-platform_version" "watchos" "5.2.0" "6.0.0" 26 // SIMUL: "-platform_version" "watchos-simulator" "6.0.0" "6.0.0" 27