xref: /llvm-project/clang/test/Driver/target-override.c (revision 0d7eba1aeed853798bd8012f786c305e83a97b67)
1 // REQUIRES: shell
2 // REQUIRES: x86-registered-target
3 
4 // RUN: rm -rf %t && mkdir %t
5 // RUN: ln -s %clang %t/i386-clang
6 // RUN: ln -s %clang %t/x86_64-pc-freebsd13.1-clang
7 
8 // Check if invocation of "foo-clang" adds option "-target foo".
9 //
10 // RUN: %t/i386-clang -c -### %s 2>&1 | FileCheck -check-prefix CHECK-TG1 %s
11 // CHECK-TG1: Target: i386
12 
13 // Check if invocation of "foo-clang --target=bar" overrides option "-target foo".
14 //
15 // RUN: %t/i386-clang -c --target=x86_64 -### %s 2>&1 | FileCheck -check-prefix CHECK-TG2 %s
16 // CHECK-TG2: Target: x86_64
17 
18 /// Check if invocation of "arch-vendor-osX.Y-clang" adds option "-target arch-vendor-osX.Y".
19 // RUN: %t/x86_64-pc-freebsd13.1-clang -c -### %s 2>&1 | FileCheck -check-prefix CHECK-TG3 %s
20 // CHECK-TG3: Target: x86_64-pc-freebsd13.1
21