1*f4a2713aSLionel Sambuc // RUN: %clang -### -B%S/Inputs/prefixed_tools_tree -o %t.o -no-integrated-as \ 2*f4a2713aSLionel Sambuc // RUN: -target x86_64--linux %s 2>&1 | \ 3*f4a2713aSLionel Sambuc // RUN: FileCheck --check-prefix=CHECK-M64 %s 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc // RUN: %clang -### -B%S/Inputs/prefixed_tools_tree -o %t.o -no-integrated-as \ 6*f4a2713aSLionel Sambuc // RUN: -m32 -target x86_64--linux %s 2>&1 | \ 7*f4a2713aSLionel Sambuc // RUN: FileCheck --check-prefix=CHECK-M32 %s 8*f4a2713aSLionel Sambuc 9*f4a2713aSLionel Sambuc // CHECK-M64: "{{.*}}{{[/\\]}}prefixed_tools_tree{{[/\\]}}x86_64--linux-as" 10*f4a2713aSLionel Sambuc // CHECK-M64: "{{.*}}{{[/\\]}}prefixed_tools_tree{{[/\\]}}x86_64--linux-ld" 11*f4a2713aSLionel Sambuc // CHECK-M32: "{{.*}}{{[/\\]}}prefixed_tools_tree{{[/\\]}}x86_64--linux-as" 12*f4a2713aSLionel Sambuc // CHECK-M32: "{{.*}}{{[/\\]}}prefixed_tools_tree{{[/\\]}}x86_64--linux-ld" 13