Lines Matching full:arch
1 // RUN: %clang -target x86_64-apple-darwin -save-temps -arch x86_64 %s -### 2>&1 \
13 // RUN: %clang -target x86_64-apple-darwin -save-temps=cwd -arch x86_64 %s -### 2>&1 \
24 // RUN: %clang -target x86_64-apple-darwin -arch x86_64 -S %s -### 2>&1 \
30 // RUN: %clang -target x86_64-apple-darwin -save-temps -arch i386 -arch x86_64 %s -### 2>&1 \
31 // RUN: | FileCheck %s -check-prefix=MULT-ARCH
32 // MULT-ARCH: "-o" "save-temps-i386.i"
33 // MULT-ARCH: "-o" "save-temps-i386.bc"
34 // MULT-ARCH: "-o" "save-temps-i386.s"
35 // MULT-ARCH: "-o" "save-temps-i386.o"
36 // MULT-ARCH: "-o" "a.out-i386"
37 // MULT-ARCH: "-o" "save-temps-x86_64.i"
38 // MULT-ARCH: "-o" "save-temps-x86_64.bc"
39 // MULT-ARCH: "-o" "save-temps-x86_64.s"
40 // MULT-ARCH: "-o" "save-temps-x86_64.o"
41 // MULT-ARCH: "-o" "a.out-x86_64"
42 // MULT-ARCH: lipo
43 // MULT-ARCH: "-create" "-output" "a.out" "a.out-i386" "a.out-x86_64"
45 // RUN: %clang -target x86_64-apple-darwin -save-temps=cwd -arch i386 -arch x86_64 %s -### 2>&1 \
46 // RUN: | FileCheck %s -check-prefix=MULT-ARCH-CWD
47 // MULT-ARCH-CWD: "-o" "save-temps-i386.i"
48 // MULT-ARCH-CWD: "-o" "save-temps-i386.bc"
49 // MULT-ARCH-CWD: "-o" "save-temps-i386.s"
50 // MULT-ARCH-CWD: "-o" "save-temps-i386.o"
51 // MULT-ARCH-CWD: "-o" "a.out-i386"
52 // MULT-ARCH-CWD: "-o" "save-temps-x86_64.i"
53 // MULT-ARCH-CWD: "-o" "save-temps-x86_64.bc"
54 // MULT-ARCH-CWD: "-o" "save-temps-x86_64.s"
55 // MULT-ARCH-CWD: "-o" "save-temps-x86_64.o"
56 // MULT-ARCH-CWD: "-o" "a.out-x86_64"
57 // MULT-ARCH-CWD: lipo
58 // MULT-ARCH-CWD: "-create" "-output" "a.out" "a.out-i386" "a.out-x86_64"
63 // RUN: %clang -target x86_64-apple-darwin -save-temps=obj -o obj/dir/a.out -arch x86_64 %s -### 2>…
72 // RUN: %clang -target x86_64-apple-darwin -save-temps=obj -arch x86_64 %s -### 2>&1 \