1 // RUN: touch %t.o 2 // RUN: mkdir -p %t.tmpdir/Xcode.app/Contents/Developers/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk 3 // RUN: not %clang -### -target x86_64-apple-darwin10 -fobjc-link-runtime -lfoo -mmacos-version-min=10.10 %t.o \ 4 // RUN: -isysroot %t.tmpdir/Xcode.app/Contents/Developers/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk 2>&1 | FileCheck -check-prefix=CHECK-ARCLITE-OSX %s 5 // RUN: %clang -### -target x86_64-apple-darwin10 -fobjc-link-runtime -mmacos-version-min=10.11 %t.o 2>&1 | FileCheck -check-prefix=CHECK-NOARCLITE %s 6 // RUN: %clang -### -target i386-apple-darwin10 -fobjc-link-runtime -mmacos-version-min=10.7 %t.o 2>&1 | FileCheck -check-prefix=CHECK-NOARCLITE %s 7 // RUN: %clang -### -target x86_64-apple-darwin10 -fobjc-link-runtime -nostdlib %t.o 2>&1 | FileCheck -check-prefix=CHECK-NOSTDLIB %s 8 9 // CHECK-ARCLITE-OSX: .tmpdir/Xcode.app/{{.*}}libarclite_macosx.a'; 10 // CHECK-ARCLITE-OSX: try increasing the minimum deployment target 11 // CHECK-ARCLITE-OSX: -lfoo 12 // CHECK-ARCLITE-OSX: libarclite_macosx.a 13 // CHECK-ARCLITE-OSX: -framework 14 // CHECK-ARCLITE-OSX: Foundation 15 // CHECK-ARCLITE-OSX: -lobjc 16 // CHECK-NOARCLITE-NOT: libarclite 17 // CHECK-NOSTDLIB-NOT: -lobjc 18 19 // RUN: not %clang -### -target x86_64-apple-darwin10 -fobjc-link-runtime -fobjc-arc -mmacos-version-min=10.10 %s 2>&1 | FileCheck -check-prefix=CHECK-UNUSED %s 20 21 // CHECK-UNUSED-NOT: warning: argument unused during compilation: '-fobjc-link-runtime' 22 23 // RUN: %clang -### -target arm64e-apple-ios8 -fobjc-link-runtime %t.o 2>&1 | FileCheck -check-prefix=CHECK-ARCLITE-ARM64E %s 24 // CHECK-ARCLITE-ARM64E-NOT: libarclite 25 26 // RUN: %clang -### -target arm64-apple-macos10.8 -fobjc-link-runtime %t.o 2>&1 | FileCheck -check-prefix=CHECK-ARCLITE-ARM-MAC %s 27 // CHECK-ARCLITE-ARM-MAC-NOT: libarclite 28