1 | // Check that we extract --no-demangle from '-Xlinker' and '-Wl,', since that |
2 | // was a collect2 argument. |
3 | |
4 | // RUN: %clang -target i386-apple-darwin9 -### \ |
5 | // RUN: -Xlinker one -Xlinker --no-demangle \ |
6 | // RUN: -Wl,two,--no-demangle,three -Xlinker four -z five -r %s 2> %t |
7 | // RUN: FileCheck -check-prefix=DARWIN < %t %s |
8 | // |
9 | // RUN: %clang -target x86_64-pc-linux-gnu -### \ |
10 | // RUN: -Xlinker one -Xlinker --no-demangle \ |
11 | // RUN: -Wl,two,--no-demangle,three -Xlinker four -z five -r %s 2> %t |
12 | // RUN: FileCheck -check-prefix=LINUX < %t %s |
13 | // |
14 | // DARWIN-NOT: --no-demangle |
15 | // DARWIN: "one" "two" "three" "four" "-z" "five" "-r" |
16 | // LINUX: "--no-demangle" "one" "two" "three" "four" "-z" "five" "-r" |
17 | |
18 | // Check that we forward '-Xlinker' and '-Wl,' on Windows. |
19 | // RUN: %clang -target i686-pc-win32 -### \ |
20 | // RUN: -Xlinker one -Wl,two %s 2>&1 | \ |
21 | // RUN: FileCheck -check-prefix=WIN %s |
22 | // WIN: link.exe |
23 | // WIN: "one" |
24 | // WIN: "two" |
25 | |