aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System/Unix
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-06-07 23:18:34 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-06-07 23:18:34 +0000
commit32f5553c03dc97912b0aa77583a23972e1a882e1 (patch)
tree1e7c40368d2b3994ed0b9b4f297996a0eba21ac2 /lib/System/Unix
parent2991b01b183abb12ae7e29544e427f794d64b14c (diff)
downloadexternal_llvm-32f5553c03dc97912b0aa77583a23972e1a882e1.zip
external_llvm-32f5553c03dc97912b0aa77583a23972e1a882e1.tar.gz
external_llvm-32f5553c03dc97912b0aa77583a23972e1a882e1.tar.bz2
For PR787:
Provide new llvm::sys::Program facilities for converting the stdout and stdin to binary mode. There is no standard way to do this and the available mechanisms are platform specific. Adjust the bytecode reader and writer to use these methods when their input is stdin or output is stdout. THis avoids the problem with \n writing CRLF to a bytecode file on windows. Patch Contributed by Michael Smith. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28722 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix')
-rw-r--r--lib/System/Unix/Program.inc8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/System/Unix/Program.inc b/lib/System/Unix/Program.inc
index 47810bd..01eefe0 100644
--- a/lib/System/Unix/Program.inc
+++ b/lib/System/Unix/Program.inc
@@ -227,4 +227,12 @@ Program::ExecuteAndWait(const Path& path,
}
+void Program::ChangeStdinToBinary(){
+ // Do nothing, as Unix doesn't differentiate between text and binary.
+}
+
+void Program::ChangeStdoutToBinary(){
+ // Do nothing, as Unix doesn't differentiate between text and binary.
+}
+
}