Pass -m32/-m64 on to gcc when assembling and linking

This commit is contained in:
Frits van Bommel 2009-03-01 22:59:03 +01:00
parent 100815c097
commit a742c59a67
2 changed files with 6 additions and 0 deletions

View file

@ -320,6 +320,9 @@ int linkObjToExecutable(const char* argv0)
//FIXME: enforce 64 bit
if (global.params.is64bit)
args.push_back("-m64");
else
// Assume 32-bit?
args.push_back("-m32");
// print link command?
if (!quiet || global.params.verbose)

View file

@ -333,6 +333,9 @@ void assemble(const llvm::sys::Path& asmpath, const llvm::sys::Path& objpath)
//FIXME: enforce 64 bit
if (global.params.is64bit)
args.push_back("-m64");
else
// Assume 32-bit?
args.push_back("-m32");
// Now that "args" owns all the std::strings for the arguments, call the c_str
// method to get the underlying string array. We do this game so that the