diff options
| author | Bob Wilson <bob.wilson@apple.com> | 2014-10-10 19:38:34 +0000 |
|---|---|---|
| committer | Bob Wilson <bob.wilson@apple.com> | 2014-10-10 19:38:34 +0000 |
| commit | 771b7cd8123880e1dd7bb05c519c59f15c87f1bc (patch) | |
| tree | 2ec1bc26aada28a378eafecaf61b09fff68a9e40 /clang/test/Driver/darwin-ld.c | |
| parent | d824405011b2f2a948dc3c0c5e078e035d8f6c09 (diff) | |
| download | bcm5719-llvm-771b7cd8123880e1dd7bb05c519c59f15c87f1bc.tar.gz bcm5719-llvm-771b7cd8123880e1dd7bb05c519c59f15c87f1bc.zip | |
Remove a FIXME: use the ios_simulator_version_min linker option consistently.
This was previously only used when explicitly requested with a command line
option because it had to work with some old versions of the linker when it
was first introduced. That is ancient history now, and it should be safe to
use the correct option even when using the IPHONEOS_DEPLOYMENT_TARGET
environment variable to specify that the target is the iOS simulator.
Besides updating the test for this, I also added a few more tests for the
iOS linker options.
llvm-svn: 219527
Diffstat (limited to 'clang/test/Driver/darwin-ld.c')
| -rw-r--r-- | clang/test/Driver/darwin-ld.c | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/clang/test/Driver/darwin-ld.c b/clang/test/Driver/darwin-ld.c index 2da0d30b500..d3d0f1da197 100644 --- a/clang/test/Driver/darwin-ld.c +++ b/clang/test/Driver/darwin-ld.c @@ -17,6 +17,8 @@ // RUN: FileCheck -check-prefix=LINK_IPHONE_3_0 %s < %t.log // LINK_IPHONE_3_0: {{ld(.exe)?"}} +// LINK_IPHONE_3_0: -iphoneos_version_min +// LINK_IPHONE_3_0: 3.0.0 // LINK_IPHONE_3_0-NOT: -lcrt1.3.1.o // LINK_IPHONE_3_0: -lcrt1.o // LINK_IPHONE_3_0: -lSystem @@ -34,6 +36,8 @@ // RUN: FileCheck -check-prefix=LINK_IPHONE_3_1 %s < %t.log // LINK_IPHONE_3_1: {{ld(.exe)?"}} +// LINK_IPHONE_3_1: -iphoneos_version_min +// LINK_IPHONE_3_1: 3.1.0 // LINK_IPHONE_3_1-NOT: -lcrt1.o // LINK_IPHONE_3_1: -lcrt1.3.1.o // LINK_IPHONE_3_1: -lSystem @@ -51,6 +55,8 @@ // RUN: FileCheck -check-prefix=LINK_IOSSIM_3_0 %s < %t.log // LINK_IOSSIM_3_0: {{ld(.exe)?"}} +// LINK_IOSSIM_3_0: -ios_simulator_version_min +// LINK_IOSSIM_3_0: 3.0.0 // LINK_IOSSIM_3_0-NOT: -lcrt1.o // LINK_IOSSIM_3_0: -lSystem // LINK_IOSSIM_3_0: {{ld(.exe)?"}} @@ -187,10 +193,14 @@ // LINK_X86_64H_MULTIARCH: {{ld(.exe)?"}} // LINK_X86_64H_MULTIARCH: "x86_64h" -// Check that clang passes -iphoneos_version_min to the linker when building -// for the iOS simulator but when -mios-simulator-version-min is not -// explicitly specified (<rdar://problem/15959009>). +// Check for the linker options to specify the iOS version when the +// IPHONEOS_DEPLOYMENT_TARGET variable is used instead of the command-line +// deployment target options. // RUN: env IPHONEOS_DEPLOYMENT_TARGET=7.0 \ -// RUN: %clang -target i386-apple-darwin -### %t.o 2> %t.log +// RUN: %clang -target arm64-apple-darwin -### %t.o 2> %t.log // RUN: FileCheck -check-prefix=LINK_IPHONEOS_VERSION_MIN %s < %t.log +// RUN: env IPHONEOS_DEPLOYMENT_TARGET=7.0 \ +// RUN: %clang -target i386-apple-darwin -### %t.o 2> %t.log +// RUN: FileCheck -check-prefix=LINK_IOS_SIMULATOR_VERSION_MIN %s < %t.log // LINK_IPHONEOS_VERSION_MIN: -iphoneos_version_min +// LINK_IOS_SIMULATOR_VERSION_MIN: -ios_simulator_version_min |

