blob: e5ddc23a21fbf2069a67d37d0c969a17f1f41926 [file] [log] [blame]
Daniel Dunbarce341cb2009-03-26 16:29:05 +00001// Check that ld gets arch_multiple.
2
Daniel Dunbar80737ad2009-12-15 22:01:24 +00003// RUN: %clang -ccc-host-triple i386-apple-darwin9 -arch i386 -arch x86_64 %s -### -o foo 2> %t.log
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00004// RUN: grep '".*ld.*" .*"-arch_multiple" "-final_output" "foo"' %t.log
Daniel Dunbarce341cb2009-03-26 16:29:05 +00005
Daniel Dunbar0b46e1b2009-04-04 00:55:30 +00006// Make sure we run dsymutil on source input files.
Daniel Dunbar80737ad2009-12-15 22:01:24 +00007// RUN: %clang -ccc-host-triple i386-apple-darwin9 -### -g %s -o BAR 2> %t.log
Daniel Dunbar03e92302011-05-09 17:23:16 +00008// RUN: grep '".*dsymutil" "-o" "BAR.dSYM" "BAR"' %t.log
Daniel Dunbar80737ad2009-12-15 22:01:24 +00009// RUN: %clang -ccc-host-triple i386-apple-darwin9 -### -g -filelist FOO %s -o BAR 2> %t.log
Daniel Dunbar03e92302011-05-09 17:23:16 +000010// RUN: grep '".*dsymutil" "-o" "BAR.dSYM" "BAR"' %t.log
Daniel Dunbar0b46e1b2009-04-04 00:55:30 +000011
Daniel Dunbarcacb0f02010-01-27 00:56:56 +000012// Check linker changes that came with new linkedit format.
13// RUN: touch %t.o
Daniel Dunbarf2dd48c2010-01-27 04:03:51 +000014// RUN: %clang -ccc-host-triple i386-apple-darwin9 -### -arch armv6 -miphoneos-version-min=3.0 %t.o 2> %t.log
15// RUN: %clang -ccc-host-triple i386-apple-darwin9 -### -arch armv6 -miphoneos-version-min=3.0 -dynamiclib %t.o 2>> %t.log
16// RUN: %clang -ccc-host-triple i386-apple-darwin9 -### -arch armv6 -miphoneos-version-min=3.0 -bundle %t.o 2>> %t.log
Daniel Dunbarcacb0f02010-01-27 00:56:56 +000017// RUN: FileCheck -check-prefix=LINK_IPHONE_3_0 %s < %t.log
Daniel Dunbarce341cb2009-03-26 16:29:05 +000018
Francois Pichet880cf252010-09-11 20:43:12 +000019// LINK_IPHONE_3_0: {{ld(.exe)?"}}
Daniel Dunbarcacb0f02010-01-27 00:56:56 +000020// LINK_IPHONE_3_0-NOT: -lcrt1.3.1.o
21// LINK_IPHONE_3_0: -lcrt1.o
22// LINK_IPHONE_3_0: -lSystem
Francois Pichet880cf252010-09-11 20:43:12 +000023// LINK_IPHONE_3_0: {{ld(.exe)?"}}
Daniel Dunbarcacb0f02010-01-27 00:56:56 +000024// LINK_IPHONE_3_0: -dylib
25// LINK_IPHONE_3_0: -ldylib1.o
26// LINK_IPHONE_3_0: -lSystem
Francois Pichet880cf252010-09-11 20:43:12 +000027// LINK_IPHONE_3_0: {{ld(.exe)?"}}
Daniel Dunbarcacb0f02010-01-27 00:56:56 +000028// LINK_IPHONE_3_0: -lbundle1.o
29// LINK_IPHONE_3_0: -lSystem
Daniel Dunbarce341cb2009-03-26 16:29:05 +000030
Daniel Dunbarf2dd48c2010-01-27 04:03:51 +000031// RUN: %clang -ccc-host-triple i386-apple-darwin9 -### -arch armv7 -miphoneos-version-min=3.1 %t.o 2> %t.log
32// RUN: %clang -ccc-host-triple i386-apple-darwin9 -### -arch armv7 -miphoneos-version-min=3.1 -dynamiclib %t.o 2>> %t.log
33// RUN: %clang -ccc-host-triple i386-apple-darwin9 -### -arch armv7 -miphoneos-version-min=3.1 -bundle %t.o 2>> %t.log
Daniel Dunbarcacb0f02010-01-27 00:56:56 +000034// RUN: FileCheck -check-prefix=LINK_IPHONE_3_1 %s < %t.log
35
Francois Pichet880cf252010-09-11 20:43:12 +000036// LINK_IPHONE_3_1: {{ld(.exe)?"}}
Daniel Dunbarcacb0f02010-01-27 00:56:56 +000037// LINK_IPHONE_3_1-NOT: -lcrt1.o
38// LINK_IPHONE_3_1: -lcrt1.3.1.o
39// LINK_IPHONE_3_1: -lSystem
Francois Pichet880cf252010-09-11 20:43:12 +000040// LINK_IPHONE_3_1: {{ld(.exe)?"}}
Daniel Dunbarcacb0f02010-01-27 00:56:56 +000041// LINK_IPHONE_3_1: -dylib
42// LINK_IPHONE_3_1-NOT: -ldylib1.o
43// LINK_IPHONE_3_1: -lSystem
Francois Pichet880cf252010-09-11 20:43:12 +000044// LINK_IPHONE_3_1: {{ld(.exe)?"}}
Daniel Dunbarcacb0f02010-01-27 00:56:56 +000045// LINK_IPHONE_3_1-NOT: -lbundle1.o
46// LINK_IPHONE_3_1: -lSystem
Daniel Dunbar47e879d2010-07-13 23:31:40 +000047
48// RUN: %clang -ccc-host-triple i386-apple-darwin9 -### -fpie %t.o 2> %t.log
49// RUN: FileCheck -check-prefix=LINK_EXPLICIT_PIE %s < %t.log
50//
Francois Pichet880cf252010-09-11 20:43:12 +000051// LINK_EXPLICIT_PIE: {{ld(.exe)?"}}
Daniel Dunbar47e879d2010-07-13 23:31:40 +000052// LINK_EXPLICIT_PIE: "-pie"
53
54// RUN: %clang -ccc-host-triple i386-apple-darwin9 -### -fno-pie %t.o 2> %t.log
55// RUN: FileCheck -check-prefix=LINK_EXPLICIT_NO_PIE %s < %t.log
56//
Francois Pichet880cf252010-09-11 20:43:12 +000057// LINK_EXPLICIT_NO_PIE: {{ld(.exe)?"}}
Daniel Dunbar47e879d2010-07-13 23:31:40 +000058// LINK_EXPLICIT_NO_PIE: "-no_pie"
Daniel Dunbarb18dc5b2010-08-11 23:07:50 +000059
60// RUN: %clang -ccc-host-triple x86_64-apple-darwin10 -### %t.o \
61// RUN: -mlinker-version=100 2> %t.log
62// RUN: FileCheck -check-prefix=LINK_NEWER_DEMANGLE %s < %t.log
63//
Francois Pichet880cf252010-09-11 20:43:12 +000064// LINK_NEWER_DEMANGLE: {{ld(.exe)?"}}
Daniel Dunbarb18dc5b2010-08-11 23:07:50 +000065// LINK_NEWER_DEMANGLE: "-demangle"
66
67// RUN: %clang -ccc-host-triple x86_64-apple-darwin10 -### %t.o \
68// RUN: -mlinker-version=100 -Wl,--no-demangle 2> %t.log
69// RUN: FileCheck -check-prefix=LINK_NEWER_NODEMANGLE %s < %t.log
70//
Francois Pichet880cf252010-09-11 20:43:12 +000071// LINK_NEWER_NODEMANGLE: {{ld(.exe)?"}}
Daniel Dunbarb18dc5b2010-08-11 23:07:50 +000072// LINK_NEWER_NODEMANGLE-NOT: "-demangle"
Daniel Dunbar673745f2010-08-23 20:58:55 +000073// LINK_NEWER_NODEMANGLE: "-lSystem"
Daniel Dunbarb18dc5b2010-08-11 23:07:50 +000074
75// RUN: %clang -ccc-host-triple x86_64-apple-darwin10 -### %t.o \
76// RUN: -mlinker-version=95 2> %t.log
77// RUN: FileCheck -check-prefix=LINK_OLDER_NODEMANGLE %s < %t.log
78//
Francois Pichet880cf252010-09-11 20:43:12 +000079// LINK_OLDER_NODEMANGLE: {{ld(.exe)?"}}
Daniel Dunbarb18dc5b2010-08-11 23:07:50 +000080// LINK_OLDER_NODEMANGLE-NOT: "-demangle"
Daniel Dunbar673745f2010-08-23 20:58:55 +000081// LINK_OLDER_NODEMANGLE: "-lSystem"
Daniel Dunbar5bfa6562011-06-21 20:55:11 +000082
83// RUN: %clang -ccc-host-triple x86_64-apple-darwin10 -### %t.o \
Daniel Dunbara68e1c32011-06-21 21:18:32 +000084// RUN: -mlinker-version=117 -flto 2> %t.log
Daniel Dunbar5bfa6562011-06-21 20:55:11 +000085// RUN: cat %t.log
86// RUN: FileCheck -check-prefix=LINK_OBJECT_LTO_PATH %s < %t.log
87//
88// LINK_OBJECT_LTO_PATH: {{ld(.exe)?"}}
89// LINK_OBJECT_LTO_PATH: "-object_path_lto"
Daniel Dunbar99ca47b2011-06-28 20:16:02 +000090
91// RUN: %clang -ccc-host-triple x86_64-apple-darwin10 -### %t.o \
92// RUN: -force_load a -force_load b 2> %t.log
93// RUN: cat %t.log
94// RUN: FileCheck -check-prefix=FORCE_LOAD %s < %t.log
95//
96// FORCE_LOAD: {{ld(.exe)?"}}
97// FORCE_LOAD: "-force_load" "a" "-force_load" "b"