Bob Wilson | 5ad5a95 | 2012-11-09 01:59:30 +0000 | [diff] [blame] | 1 | // RUN: %clang -### -x objective-c -target i386-apple-darwin10 -arch i386 -mios-simulator-version-min=4.2.1 -fobjc-arc -fsyntax-only %s 2>&1 | FileCheck -check-prefix=CHECK-OPTIONS1 %s |
| 2 | // RUN: %clang -### -x objective-c -target i386-apple-darwin10 -arch i386 -mios-simulator-version-min=5.0.0 -fobjc-arc -fsyntax-only %s 2>&1 | FileCheck -check-prefix=CHECK-OPTIONS2 %s |
John McCall | 17b4c83 | 2011-06-16 01:18:08 +0000 | [diff] [blame] | 3 | // |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4 | |
Bob Wilson | 5ad5a95 | 2012-11-09 01:59:30 +0000 | [diff] [blame] | 5 | // CHECK-OPTIONS1: i386-apple-ios4.2.1 |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 6 | // CHECK-OPTIONS1: -fobjc-runtime=ios-4.2.1 |
Bob Wilson | 5ad5a95 | 2012-11-09 01:59:30 +0000 | [diff] [blame] | 7 | // CHECK-OPTIONS2: i386-apple-ios5.0.0 |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 8 | // CHECK-OPTIONS2: -fobjc-runtime=ios-5.0.0 |
Tim Northover | 756447a | 2015-10-30 16:30:36 +0000 | [diff] [blame] | 9 | |
| 10 | // RUN: %clang -### -x objective-c -target x86_64-apple-darwin -mtvos-simulator-version-min=8.3.0 -fobjc-arc -fsyntax-only %s 2>&1 | FileCheck -check-prefix=CHECK-OPTIONS3 %s |
| 11 | // CHECK-OPTIONS3: x86_64-apple-tvos8.3.0 |
| 12 | // CHECK-OPTIONS3: -fobjc-runtime=ios-8.3.0 |
| 13 | |
| 14 | // RUN: %clang -### -x objective-c -target x86_64-apple-darwin -mwatchos-simulator-version-min=2.0.0 -fobjc-arc -fsyntax-only %s 2>&1 | FileCheck -check-prefix=CHECK-OPTIONS4 %s |
| 15 | // CHECK-OPTIONS4: x86_64-apple-watchos2.0.0 |
| 16 | // CHECK-OPTIONS4: -fobjc-runtime=watchos-2.0.0 |