|
4 | 4 | // FIXME: Replace DEFAULT_OPENMP_LIB below with the value chosen at configure time.
|
5 | 5 | //
|
6 | 6 | // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
7 |
| -// RUN: -fopenmp -target i386-unknown-linux -rtlib=platform \ |
| 7 | +// RUN: -fopenmp -target i386-unknown-linux -rtlib=platform --unwindlib=platform \ |
8 | 8 | // RUN: | FileCheck --check-prefix=CHECK-LD-32 %s
|
9 | 9 | // CHECK-LD-32: "{{.*}}ld{{(.exe)?}}"
|
10 | 10 | // CHECK-LD-32: "-l[[DEFAULT_OPENMP_LIB:[^"]*]]"
|
11 | 11 | // CHECK-LD-32: "-lpthread" "-lc"
|
12 | 12 | //
|
13 | 13 | // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
14 |
| -// RUN: -fopenmp -target x86_64-unknown-linux -rtlib=platform \ |
| 14 | +// RUN: -fopenmp -target x86_64-unknown-linux -rtlib=platform --unwindlib=platform \ |
15 | 15 | // RUN: | FileCheck --check-prefix=CHECK-LD-64 %s
|
16 | 16 | // CHECK-LD-64: "{{.*}}ld{{(.exe)?}}"
|
17 | 17 | // CHECK-LD-64: "-l[[DEFAULT_OPENMP_LIB:[^"]*]]"
|
18 | 18 | // CHECK-LD-64: "-lpthread" "-lc"
|
19 | 19 | //
|
20 | 20 | // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
21 |
| -// RUN: -fopenmp=libgomp -target i386-unknown-linux -rtlib=platform \ |
| 21 | +// RUN: -fopenmp=libgomp -target i386-unknown-linux -rtlib=platform --unwindlib=platform \ |
22 | 22 | // RUN: | FileCheck --check-prefix=CHECK-GOMP-LD-32 %s
|
23 | 23 |
|
24 |
| -// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 -fopenmp-simd -target i386-unknown-linux -rtlib=platform | FileCheck --check-prefix SIMD-ONLY2 %s |
| 24 | +// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 -fopenmp-simd -target i386-unknown-linux -rtlib=platform --unwindlib=platform | FileCheck --check-prefix SIMD-ONLY2 %s |
25 | 25 | // SIMD-ONLY2-NOT: lgomp
|
26 | 26 | // SIMD-ONLY2-NOT: lomp
|
27 | 27 | // SIMD-ONLY2-NOT: liomp
|
28 | 28 | // CHECK-GOMP-LD-32: "{{.*}}ld{{(.exe)?}}"
|
29 | 29 | // CHECK-GOMP-LD-32: "-lgomp" "-lrt"
|
30 | 30 | // CHECK-GOMP-LD-32: "-lpthread" "-lc"
|
31 | 31 |
|
32 |
| -// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 -fopenmp-simd -target i386-unknown-linux -rtlib=platform | FileCheck --check-prefix SIMD-ONLY2 %s |
| 32 | +// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 -fopenmp-simd -target i386-unknown-linux -rtlib=platform --unwindlib=platform | FileCheck --check-prefix SIMD-ONLY2 %s |
33 | 33 | // SIMD-ONLY2-NOT: lgomp
|
34 | 34 | // SIMD-ONLY2-NOT: lomp
|
35 | 35 | // SIMD-ONLY2-NOT: liomp
|
36 | 36 | //
|
37 | 37 | // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
38 |
| -// RUN: -fopenmp=libgomp -target x86_64-unknown-linux -rtlib=platform \ |
| 38 | +// RUN: -fopenmp=libgomp -target x86_64-unknown-linux -rtlib=platform --unwindlib=platform \ |
39 | 39 | // RUN: | FileCheck --check-prefix=CHECK-GOMP-LD-64 %s
|
40 | 40 | // CHECK-GOMP-LD-64: "{{.*}}ld{{(.exe)?}}"
|
41 | 41 | // CHECK-GOMP-LD-64: "-lgomp" "-lrt"
|
42 | 42 | // CHECK-GOMP-LD-64: "-lpthread" "-lc"
|
43 | 43 | //
|
44 | 44 | // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
45 |
| -// RUN: -fopenmp -target i386-unknown-linux -rtlib=platform \ |
| 45 | +// RUN: -fopenmp -target i386-unknown-linux -rtlib=platform --unwindlib=platform \ |
46 | 46 | // RUN: | FileCheck --check-prefix=CHECK-IOMP5-LD-32 %s
|
47 | 47 | // CHECK-IOMP5-LD-32: "{{.*}}ld{{(.exe)?}}"
|
48 | 48 | // CHECK-IOMP5-LD-32: "-l[[DEFAULT_OPENMP_LIB:[^"]*]]"
|
49 | 49 | // CHECK-IOMP5-LD-32: "-lpthread" "-lc"
|
50 | 50 | //
|
51 | 51 | // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
52 |
| -// RUN: -fopenmp -target x86_64-unknown-linux -rtlib=platform \ |
| 52 | +// RUN: -fopenmp -target x86_64-unknown-linux -rtlib=platform --unwindlib=platform \ |
53 | 53 | // RUN: | FileCheck --check-prefix=CHECK-IOMP5-LD-64 %s
|
54 | 54 | // CHECK-IOMP5-LD-64: "{{.*}}ld{{(.exe)?}}"
|
55 | 55 | // CHECK-IOMP5-LD-64: "-l[[DEFAULT_OPENMP_LIB:[^"]*]]"
|
|
67 | 67 | //
|
68 | 68 | // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
69 | 69 | // RUN: -fopenmp -fopenmp=libgomp -target i386-unknown-linux \
|
70 |
| -// RUN: -rtlib=platform \ |
| 70 | +// RUN: -rtlib=platform --unwindlib=platform \ |
71 | 71 | // RUN: | FileCheck --check-prefix=CHECK-LD-OVERRIDE-32 %s
|
72 | 72 | // CHECK-LD-OVERRIDE-32: "{{.*}}ld{{(.exe)?}}"
|
73 | 73 | // CHECK-LD-OVERRIDE-32: "-lgomp" "-lrt"
|
74 | 74 | // CHECK-LD-OVERRIDE-32: "-lpthread" "-lc"
|
75 | 75 | //
|
76 | 76 | // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
|
77 | 77 | // RUN: -fopenmp -fopenmp=libgomp -target x86_64-unknown-linux \
|
78 |
| -// RUN: -rtlib=platform \ |
| 78 | +// RUN: -rtlib=platform --unwindlib=platform \ |
79 | 79 | // RUN: | FileCheck --check-prefix=CHECK-LD-OVERRIDE-64 %s
|
80 | 80 | // CHECK-LD-OVERRIDE-64: "{{.*}}ld{{(.exe)?}}"
|
81 | 81 | // CHECK-LD-OVERRIDE-64: "-lgomp" "-lrt"
|
82 | 82 | // CHECK-LD-OVERRIDE-64: "-lpthread" "-lc"
|
83 | 83 | //
|
84 | 84 | // RUN: %clang -no-canonical-prefixes -fuse-ld=link %s -### -o %t.o 2>&1 \
|
85 |
| -// RUN: -fopenmp=libomp -target x86_64-msvc-win32 -rtlib=platform \ |
| 85 | +// RUN: -fopenmp=libomp -target x86_64-msvc-win32 -rtlib=platform --unwindlib=platform \ |
86 | 86 | // RUN: | FileCheck --check-prefix=CHECK-MSVC-LINK-64 %s
|
87 | 87 | // CHECK-MSVC-LINK-64: link.exe
|
88 | 88 | // CHECK-MSVC-LINK-64-SAME: -nodefaultlib:vcomp.lib
|
89 | 89 | // CHECK-MSVC-LINK-64-SAME: -nodefaultlib:vcompd.lib
|
90 | 90 | // CHECK-MSVC-LINK-64-SAME: -libpath:{{.+}}/../lib
|
91 | 91 | // CHECK-MSVC-LINK-64-SAME: -defaultlib:libomp.lib
|
92 | 92 |
|
93 |
| -// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 -fopenmp-simd -target x86_64-msvc-win32 -rtlib=platform | FileCheck --check-prefix SIMD-ONLY11 %s |
| 93 | +// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 -fopenmp-simd -target x86_64-msvc-win32 -rtlib=platform --unwindlib=platform | FileCheck --check-prefix SIMD-ONLY11 %s |
94 | 94 | // SIMD-ONLY11-NOT: libiomp
|
95 | 95 | // SIMD-ONLY11-NOT: libomp
|
96 | 96 | // SIMD-ONLY11-NOT: libgomp
|
97 | 97 | //
|
98 | 98 | // RUN: %clang -no-canonical-prefixes %s -fuse-ld=link -### -o %t.o 2>&1 \
|
99 |
| -// RUN: -fopenmp=libiomp5 -target x86_64-msvc-win32 -rtlib=platform \ |
| 99 | +// RUN: -fopenmp=libiomp5 -target x86_64-msvc-win32 -rtlib=platform --unwindlib=platform \ |
100 | 100 | // RUN: | FileCheck --check-prefix=CHECK-MSVC-ILINK-64 %s
|
101 | 101 |
|
102 |
| -// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 -fopenmp-simd -target x86_64-msvc-win32 -rtlib=platform | FileCheck --check-prefix SIMD-ONLY11 %s |
| 102 | +// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 -fopenmp-simd -target x86_64-msvc-win32 -rtlib=platform --unwindlib=platform | FileCheck --check-prefix SIMD-ONLY11 %s |
103 | 103 | // SIMD-ONLY11-NOT: libiomp
|
104 | 104 | // SIMD-ONLY11-NOT: libomp
|
105 | 105 | // SIMD-ONLY11-NOT: libgomp
|
|
0 commit comments