Displaying 7 results from an estimated 7 matches for "changestdouttobinari".
Did you mean:
changestdouttobinary
2008 Jun 04
1
[LLVMdev] Standard output binary mode on windows
Hello,
On windows, the standard output is not set to binary mode by default so
all '\n' characters are replaced with '\r\n'. This is a pain for any
command using stdout, like "llvm-as < input.ll > out.bc", because out.bc
is then most likely corrupted.
This is an old story, fixed a while ago:
http://llvm.org/bugs/show_bug.cgi?id=787
And here is the thread on
2006 Jun 24
2
[LLVMdev] LLVM build error
Hi,
While attempting to build the LLVM code from CVS today using gcc 4.1, I
encountered the following error. Any idea how to proceed with the build?
llvm[2]: Linking Debug executable llvm-as
/home/ll/programs/source/scm/cvs/llvm/Debug/lib/libLLVMAsmParser.a(llvmAsmParser.o):
In function `__static_initialization_and_destruction_0':
2009 Jul 17
1
[LLVMdev] [PATCH 2/2] Make Program::ExecuteNoWait return a process ID.
---
include/llvm/System/Program.h | 14 ++++++++++----
lib/System/Unix/Program.inc | 17 +++++++++--------
lib/System/Win32/Program.inc | 16 +++++++++-------
3 files changed, 28 insertions(+), 19 deletions(-)
diff --git a/include/llvm/System/Program.h b/include/llvm/System/Program.h
index 14f9e9e..05c73ac 100644
--- a/include/llvm/System/Program.h
+++ b/include/llvm/System/Program.h
@@
2008 Jun 06
0
[LLVMdev] Standard output binary mode on windows
Hello, Julien
> Unfortunately, this bug is back. ChangeStdoutToBinary is never called in
> the current LLVM tree. I guess the call was lost during the
> Bytecode->Bitcode transition.
Applied, thanks!
--
With best regards, Anton Korobeynikov.
Faculty of Mathematics & Mechanics, Saint Petersburg State University.
2006 Jun 24
0
[LLVMdev] LLVM build error
It looks to me like your libLLVMSupport.a didn't get built or you didn't
update all of LLVM. Please make sure you update from the root of the
tree with the command:
cvs update -ARPd
Reid.
On Sat, 2006-06-24 at 13:16 +0100, Lexington Luthor wrote:
> Hi,
>
> While attempting to build the LLVM code from CVS today using gcc 4.1, I
> encountered the following error. Any idea
2009 Jul 17
0
[LLVMdev] [PATCH 2/2] Make Program::ExecuteNoWait return a process ID.
I don't think this is the right direction for the system library to
go. The System library is supposed to expose generic OS independent
interfaces, not be a generic way for clients to get OS information.
Ultimately I think a better API would be to provide a generic class
which represents an executed operating system process, and includes
operations to wait for its completion, redirect its IO,
2009 Jul 17
3
[LLVMdev] [PATCH 1/2] Trailing whitespace.
---
include/llvm/System/Program.h | 8 ++++----
lib/System/Unix/Program.inc | 30 +++++++++++++++---------------
2 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/include/llvm/System/Program.h b/include/llvm/System/Program.h
index 49de7cf..14f9e9e 100644
--- a/include/llvm/System/Program.h
+++ b/include/llvm/System/Program.h
@@ -97,12 +97,12 @@ namespace sys {
///