1 // This test check that orbis-ld is used for linker all the time. Specifying 2 // linker using -fuse-ld causes a error message emitted and compilation fail. 3 4 // REQUIRES: system-windows, x86-registered-target 5 6 // RUN: mkdir -p %t 7 // RUN: touch %t/orbis-ld.exe 8 9 // RUN: env "PATH=%t;%PATH%;" %clang -target x86_64-scei-ps4 %s -### 2>&1 \ 10 // RUN: | FileCheck --check-prefix=CHECK-PS4-LINKER %s 11 // RUN: env "PATH=%t;%PATH%;" %clang -target x86_64-scei-ps4 %s -shared -### 2>&1 \ 12 // RUN: | FileCheck --check-prefix=CHECK-PS4-LINKER %s 13 14 // CHECK-PS4-LINKER: \\orbis-ld 15 16 // RUN: env "PATH=%t;%PATH%;" %clang -target x86_64-scei-ps4 %s -fuse-ld=gold -### 2>&1 \ 17 // RUN: | FileCheck --check-prefix=ERROR %s 18 19 // ERROR: error: unsupported option '-fuse-ld' for target 'x86_64-scei-ps4' 20