Fix object file writing in llvm-lto on Windows.

We were writing in text mode.

Patch by Greg Bedwell.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191985 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola
2013-10-04 21:40:54 +00:00
parent 8e48edcf3d
commit ec2ac89856
3 changed files with 3 additions and 5 deletions

View File

@@ -136,7 +136,8 @@ int main(int argc, char **argv) {
return 1;
}
raw_fd_ostream FileStream(OutputFilename.c_str(), ErrorInfo);
raw_fd_ostream FileStream(OutputFilename.c_str(), ErrorInfo,
sys::fs::F_Binary);
if (!ErrorInfo.empty()) {
errs() << argv[0] << ": error opening the file '" << OutputFilename
<< "': " << ErrorInfo << "\n";