if (A->getOption().hasForwardToGCC()) {
// It is unfortunate that we have to claim here, as this means
// we will basically never report anything interesting for
- // platforms using a generic gcc.
+ // platforms using a generic gcc, even if we are just using gcc
+ // to get to the assembler.
A->claim();
A->render(Args, CmdArgs);
}
CmdArgs.push_back(Str);
}
+ // Try to force gcc to match the tool chain we want, if we recognize
+ // the arch.
+ const char *Str = getToolChain().getArchName().c_str();
+ if (strcmp(Str, "i386") == 0 || strcmp(Str, "powerpc") == 0)
+ CmdArgs.push_back("-m32");
+ else if (strcmp(Str, "x86_64") == 0 || strcmp(Str, "powerpc64") == 0)
+ CmdArgs.push_back("-m64");
+
if (Output.isPipe()) {
CmdArgs.push_back("-o");
CmdArgs.push_back("-");
--- /dev/null
+// RUN: clang -ccc-host-triple x86_64-unknown-unknown -c -x assembler %s -### 2> %t.log &&
+// RUN: grep '.*gcc.*"-m64"' %t.log &&
+// RUN: clang -ccc-host-triple x86_64-unknown-unknown -c -x assembler %s -### -m32 2> %t.log &&
+// RUN: grep '.*gcc.*"-m32"' %t.log &&
+// RUN: clang -ccc-host-triple i386-unknown-unknown -c -x assembler %s -### 2> %t.log &&
+// RUN: grep '.*gcc.*"-m32"' %t.log &&
+// RUN: clang -ccc-host-triple i386-unknown-unknown -c -x assembler %s -### -m64 2> %t.log &&
+// RUN: grep '.*gcc.*"-m64"' %t.log