Displaying 10 results from an estimated 10 matches for "michael_reichenbach".
2008 Sep 17
4
[LLVMdev] bc file only with llvm-gcc3?
Dale Johannesen schrieb:
> On Sep 17, 2008, at 2:36 PMPDT, Michael Reichenbach wrote:
>> No matter if I try "
>> llvm-g++ a.cpp -c -emit-llvm
>> " with "LLVM-GCC 4.2 Front End Binaries for Mingw32/x86" on Windows XP
>> or if I am trying it on Ubuntu...
>>
>> Only the a.o file will be created without any error messages. The .bc
>>
2008 Sep 17
0
[LLVMdev] bc file only with llvm-gcc3?
...6 are the only architectures supported by the jit compiler right now but it should work fine from Windows. The C output backend needs some work since C isn't a low-level language enough to compile the abstractions of LLVM Assembly code.
--Sam Crow
--- On Wed, 9/17/08, Michael Reichenbach <michael_reichenbach at freenet.de> wrote:
> From: Michael Reichenbach <michael_reichenbach at freenet.de>
> Subject: Re: [LLVMdev] bc file only with llvm-gcc3?
> To: "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu>
> Date: Wednesday, September 17, 2008, 5:39 PM
> Dale Jo...
2008 Sep 17
2
[LLVMdev] bc file only with llvm-gcc3?
question about:
http://llvm.org/docs/FAQ.html#translatec++
"With llvm-gcc3, this will generate program and program.bc."
Is this llvm-gcc3 only out of date of is it really only llvm-gcc3?
I have 'llvm-g++ (GCC) 4.2.1 (Based on Apple Inc. build 5546) (LLVM
build)' installed on Ubuntu and followed that guide and it creates
indeed no .bc file.
Regards,
-mr
2008 Sep 17
0
[LLVMdev] bc file only with llvm-gcc3?
On Wed, Sep 17, 2008 at 1:31 PM, Michael Reichenbach
<michael_reichenbach at freenet.de> wrote:
> question about:
> http://llvm.org/docs/FAQ.html#translatec++
> "With llvm-gcc3, this will generate program and program.bc."
>
> Is this llvm-gcc3 only out of date of is it really only llvm-gcc3?
Those instructions are out of date; the current ver...
2008 Sep 17
0
[LLVMdev] bc file only with llvm-gcc3?
On Wed, Sep 17, 2008 at 3:39 PM, Michael Reichenbach
<michael_reichenbach at freenet.de> wrote:
> program.c will contain some non-human generated code. But it doesn't
> compile with gcc. There is an error, gcc complaints about undefined
> reference to std::cout and such (the code was just a very small example
> with cout).
>
> It hasn't be co...
2008 Sep 17
1
[LLVMdev] bc file not for Windows? Is this feature planed?
Hi!
question about:
http://llvm.org/docs/GettingStartedVS.html#tutorial
"Note: while you cannot do this step on Windows, you can do it on a Unix
system and transfer hello.bc to Windows. Important: transfer as a binary
file!"
Is this feature also planed for Windows?
Regards,
-mr
2008 Sep 18
2
[LLVMdev] bc file only with llvm-gcc3?
Eli Friedman schrieb:
> On Wed, Sep 17, 2008 at 3:39 PM, Michael Reichenbach
> <michael_reichenbach at freenet.de> wrote:
>> program.c will contain some non-human generated code. But it doesn't
>> compile with gcc. There is an error, gcc complaints about undefined
>> reference to std::cout and such (the code was just a very small example
>> with cout).
>>
>...
2009 Feb 25
1
[Feature-Request] syslinux in linux kernel format
Hi
It would be pretty useful to have syslinux in linux kernel format so it
can be chainloaded easy and directly by other bootloaders such as grub4dos.
related topics:
http://www.boot-land.net/forums/index.php?showtopic=7013
http://www.boot-land.net/forums/index.php?s=&showtopic=6119&view=findpost&p=59236
2008 Sep 17
2
[LLVMdev] bc file only with llvm-gcc3?
Eli Friedman schrieb:
> On Wed, Sep 17, 2008 at 1:31 PM, Michael Reichenbach
> <michael_reichenbach at freenet.de> wrote:
>> question about:
>> http://llvm.org/docs/FAQ.html#translatec++
>> "With llvm-gcc3, this will generate program and program.bc."
>>
>> Is this llvm-gcc3 only out of date of is it really only llvm-gcc3?
>
> Those instructions ar...
2008 Sep 18
2
[LLVMdev] converting C++ to C question
Please bare with me. :) Just to ensure I got nothing wrong.
I can write in C++ + use C++ std lib + use other C++ libs and see if it
compiles with a C++ compiler.
After it's working I use llvm to do some magic and I get C code that I
can compile with a standard C compiler on any platform? That's what I
planed to do.
Regards,
-mr