Pull in r177252 from upstream clang trunk:

Make sure to use same EABI version for external assembler as for
 integrated as.

This allows us to use gcc on a world built with clang on ARM.
This commit is contained in:
andrew 2013-03-20 08:34:30 +00:00
parent ca2bfdcda7
commit 24e611a89b

View File

@ -5438,6 +5438,7 @@ void freebsd::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
switch(getToolChain().getTriple().getEnvironment()) {
case llvm::Triple::GNUEABI:
case llvm::Triple::EABI:
CmdArgs.push_back("-meabi=5");
break;
default: