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