1 // Check that ld gets arch_multiple.
2 
3 // RUN: %clang -target i386-apple-darwin9 -arch i386 -arch x86_64 %s -### -o foo 2> %t.log
4 // RUN: grep '".*ld.*" .*"-arch_multiple" "-final_output" "foo"' %t.log
5 
6 // Make sure we run dsymutil on source input files.
7 // RUN: %clang -target i386-apple-darwin9 -### -g %s -o BAR 2> %t.log
8 // RUN: grep '".*dsymutil" "-o" "BAR.dSYM" "BAR"' %t.log
9 // RUN: %clang -target i386-apple-darwin9 -### -g -filelist FOO %s -o BAR 2> %t.log
10 // RUN: grep '".*dsymutil" "-o" "BAR.dSYM" "BAR"' %t.log
11 
12 // Check linker changes that came with new linkedit format.
13 // RUN: touch %t.o
14 // RUN: %clang -target i386-apple-darwin9 -### -arch armv6 -miphoneos-version-min=3.0 %t.o 2> %t.log
15 // RUN: %clang -target i386-apple-darwin9 -### -arch armv6 -miphoneos-version-min=3.0 -dynamiclib %t.o 2>> %t.log
16 // RUN: %clang -target i386-apple-darwin9 -### -arch armv6 -miphoneos-version-min=3.0 -bundle %t.o 2>> %t.log
17 // RUN: FileCheck -check-prefix=LINK_IPHONE_3_0 %s < %t.log
18 
19 // LINK_IPHONE_3_0: {{ld(.exe)?"}}
20 // LINK_IPHONE_3_0-NOT: -lcrt1.3.1.o
21 // LINK_IPHONE_3_0: -lcrt1.o
22 // LINK_IPHONE_3_0: -lSystem
23 // LINK_IPHONE_3_0: {{ld(.exe)?"}}
24 // LINK_IPHONE_3_0: -dylib
25 // LINK_IPHONE_3_0: -ldylib1.o
26 // LINK_IPHONE_3_0: -lSystem
27 // LINK_IPHONE_3_0: {{ld(.exe)?"}}
28 // LINK_IPHONE_3_0: -lbundle1.o
29 // LINK_IPHONE_3_0: -lSystem
30 
31 // RUN: %clang -target i386-apple-darwin9 -### -arch armv7 -miphoneos-version-min=3.1 %t.o 2> %t.log
32 // RUN: %clang -target i386-apple-darwin9 -### -arch armv7 -miphoneos-version-min=3.1 -dynamiclib %t.o 2>> %t.log
33 // RUN: %clang -target i386-apple-darwin9 -### -arch armv7 -miphoneos-version-min=3.1 -bundle %t.o 2>> %t.log
34 // RUN: FileCheck -check-prefix=LINK_IPHONE_3_1 %s < %t.log
35 
36 // LINK_IPHONE_3_1: {{ld(.exe)?"}}
37 // LINK_IPHONE_3_1-NOT: -lcrt1.o
38 // LINK_IPHONE_3_1: -lcrt1.3.1.o
39 // LINK_IPHONE_3_1: -lSystem
40 // LINK_IPHONE_3_1: {{ld(.exe)?"}}
41 // LINK_IPHONE_3_1: -dylib
42 // LINK_IPHONE_3_1-NOT: -ldylib1.o
43 // LINK_IPHONE_3_1: -lSystem
44 // LINK_IPHONE_3_1: {{ld(.exe)?"}}
45 // LINK_IPHONE_3_1-NOT: -lbundle1.o
46 // LINK_IPHONE_3_1: -lSystem
47 
48 // RUN: %clang -target i386-apple-darwin9 -### -fpie %t.o 2> %t.log
49 // RUN: FileCheck -check-prefix=LINK_EXPLICIT_PIE %s < %t.log
50 //
51 // LINK_EXPLICIT_PIE: {{ld(.exe)?"}}
52 // LINK_EXPLICIT_PIE: "-pie"
53 
54 // RUN: %clang -target i386-apple-darwin9 -### -fno-pie %t.o 2> %t.log
55 // RUN: FileCheck -check-prefix=LINK_EXPLICIT_NO_PIE %s < %t.log
56 //
57 // LINK_EXPLICIT_NO_PIE: {{ld(.exe)?"}}
58 // LINK_EXPLICIT_NO_PIE: "-no_pie"
59 
60 // RUN: %clang -target 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 //
64 // LINK_NEWER_DEMANGLE: {{ld(.exe)?"}}
65 // LINK_NEWER_DEMANGLE: "-demangle"
66 
67 // RUN: %clang -target 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 //
71 // LINK_NEWER_NODEMANGLE: {{ld(.exe)?"}}
72 // LINK_NEWER_NODEMANGLE-NOT: "-demangle"
73 // LINK_NEWER_NODEMANGLE: "-lSystem"
74 
75 // RUN: %clang -target 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 //
79 // LINK_OLDER_NODEMANGLE: {{ld(.exe)?"}}
80 // LINK_OLDER_NODEMANGLE-NOT: "-demangle"
81 // LINK_OLDER_NODEMANGLE: "-lSystem"
82 
83 // RUN: %clang -target x86_64-apple-darwin10 -### %s \
84 // RUN:   -mlinker-version=117 -flto 2> %t.log
85 // 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"
90 
91 // RUN: %clang -target 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"
98 
99 // RUN: %clang -target x86_64-apple-darwin10 -### %t.o \
100 // RUN:   -lazy_framework Framework 2> %t.log
101 //
102 // RUN: FileCheck -check-prefix=LINK_LAZY_FRAMEWORK %s < %t.log
103 // LINK_LAZY_FRAMEWORK: {{ld(.exe)?"}}
104 // LINK_LAZY_FRAMEWORK: "-lazy_framework" "Framework"
105 
106 // RUN: %clang -target x86_64-apple-darwin10 -### %t.o \
107 // RUN:   -lazy_library Library 2> %t.log
108 //
109 // RUN: FileCheck -check-prefix=LINK_LAZY_LIBRARY %s < %t.log
110 // LINK_LAZY_LIBRARY: {{ld(.exe)?"}}
111 // LINK_LAZY_LIBRARY: "-lazy_library" "Library"
112 
113 // RUN: %clang -target x86_64-apple-darwin10 -### %t.o 2> %t.log
114 // RUN: %clang -target x86_64-apple-macosx10.7 -### %t.o 2>> %t.log
115 // RUN: FileCheck -check-prefix=LINK_VERSION_MIN %s < %t.log
116 // LINK_VERSION_MIN: {{ld(.exe)?"}}
117 // LINK_VERSION_MIN: "-macosx_version_min" "10.6.0"
118 // LINK_VERSION_MIN: {{ld(.exe)?"}}
119 // LINK_VERSION_MIN: "-macosx_version_min" "10.7.0"
120 
121 // RUN: %clang -target x86_64-apple-darwin12 -### %t.o 2> %t.log
122 // RUN: FileCheck -check-prefix=LINK_NO_CRT1 %s < %t.log
123 // LINK_NO_CRT1-NOT: crt
124 
125 // RUN: %clang -target armv7-apple-ios6.0 -miphoneos-version-min=6.0 -### %t.o 2> %t.log
126 // RUN: FileCheck -check-prefix=LINK_NO_IOS_CRT1 %s < %t.log
127 // LINK_NO_IOS_CRT1-NOT: crt
128 
129 // RUN: %clang -target i386-apple-darwin12 -pg -### %t.o 2> %t.log
130 // RUN: FileCheck -check-prefix=LINK_PG %s < %t.log
131 // LINK_PG: -lgcrt1.o
132 // LINK_PG: -no_new_main
133 
134 // RUN: %clang -target x86_64-apple-darwin12 -rdynamic -### %t.o \
135 // RUN:   -mlinker-version=100 2> %t.log
136 // RUN: FileCheck -check-prefix=LINK_NO_EXPORT_DYNAMIC %s < %t.log
137 // LINK_NO_EXPORT_DYNAMIC: {{ld(.exe)?"}}
138 // LINK_NO_EXPORT_DYNAMIC-NOT: "-export_dynamic"
139 
140 // RUN: %clang -target x86_64-apple-darwin12 -rdynamic -### %t.o \
141 // RUN:   -mlinker-version=137 2> %t.log
142 // RUN: FileCheck -check-prefix=LINK_EXPORT_DYNAMIC %s < %t.log
143 // LINK_EXPORT_DYNAMIC: {{ld(.exe)?"}}
144 // LINK_EXPORT_DYNAMIC: "-export_dynamic"
145 
146 
147