Displaying 20 results from an estimated 1000 matches similar to: "[LLVMdev] cfrontend"
2005 Jun 13
3
[LLVMdev] problem compiling the cfrontend on Linux/PPC
Hi,
When compiling the cfrontend for Linux/PPC architecture on a powermac G5, i got
the following error :
-------------------------------Compilation error listing
if [ -f stmp-dirs ]; then true; else touch stmp-dirs; fi
make
GCC_FOR_TARGET="/usr/local/home/cyrille/project/llvm/cfrontend/build/gcc/xgcc
-B/usr/local/home/cyrille/project/llvm/cfrontend/build/gcc/
2005 Jun 13
2
[LLVMdev] problem compiling the cfrontend on Linux/PPC
> Okay, I took a closer look at your output.
>
> I was correct in that gccas is attempting to assemble a native PPC
> assembly language file. However, this appears to be happening because
> the assembly file is generated by the GCC Makefiles for libgcc2 (in
> llvm-gcc/gcc/config/rs6000/t-ppccomm, I think).
>
> The first thing I would try is Marco's suggestion: add
2005 Jun 13
0
[LLVMdev] problem compiling the cfrontend on Linux/PPC
Cyrille Mescam wrote:
> Hi,
>
>
> When compiling the cfrontend for Linux/PPC architecture on a powermac
> G5, i got
> the following error :
I hate to ask a silly question, but are you using "make bootstrap" to
build the cfrontend? Your output looks like gccas is being given a
native code assembly language file to parse, and I seem to recall that
that happens if
2005 Aug 08
2
[LLVMdev] cfrontend building
Am Montag, 8. August 2005 18:12 schrieb Reid Spencer:
> Stephan,
>
> I've seen this before. It happens when you do "make bootstrap" in llvm-gcc.
> While "make bootstrap" is the correct way to build GCC, its not the correct
> way to build llvm-gcc.
>
> Based on my experience with this, I suggest you completely erase your build
> tree and then follow
2005 Jun 13
2
[LLVMdev] problem compiling the cfrontend on Linux/PPC
On Mon, Jun 13, 2005 at 11:02:10AM -0500, John Criswell wrote:
> Cyrille Mescam wrote:
> >Hi,
> >
> >
> >When compiling the cfrontend for Linux/PPC architecture on a powermac
> >G5, i got
> >the following error :
>
> I hate to ask a silly question, but are you using "make bootstrap" to
> build the cfrontend? Your output looks like gccas
2004 Oct 04
1
[LLVMdev] cfrontend-1.3.source: Compilation error
This is a forward of a question from the SourceForge LLVM forum. If
anyone has experience with Cygwin and building the C front-end there,
please reply and CC Alex.
--- Post by Alex Vinokur below ---
===============
Windows 2000
GNU gcc 3.3.3 (cygwin special)
===============
./configure
./make
I have got compilation error
-------------------------------
make[1]: Entering directory
2006 May 11
1
[LLVMdev] using cfrontend-1.6 and llvm-1.7
Is it safe to use the LLVM cfrontend 1.6 with LLVM 1.7 or the latest
LLVM from CVS? I am running OS X 10.3.9, which I believe corresponds to
Darwin kernel version 7.9.0. When I tried to use the 1.7 cfrontend, I
could not get LLVM 1.7 or the LLVM from CVS to compile. However, when I
used the 1.6 cfrontend (which is additionally labeled Darwin 7.9.0), I
was able to get them to compile.
2005 Aug 08
0
[LLVMdev] cfrontend building
Answers inline ..
Stephan Wienczny wrote:
>
> Hallo,
>
> do you know if bootstrap is the default target?
No, "all" is the default.
>
> This is what I'm doing:
> <code>
> inherit eutils
>
> DESCRIPTION="C, C++ Frontend for Low Level Virtual _Machine"
> HOMEPAGE="http://llvm.org/"
>
2004 Nov 02
5
[LLVMdev] LLVM tools sufficient to build the cfrontend for windows from MinGW?
Hi,
I'm able to build the llvm tools on the MinGW platform: burg, fpcmp, tblgen,
llvm-as, llvm-dis, opt, gccas, llc, llvm-link, lli, gccld, llvm-stub,
analyze and extract.
I wonder if these tools are sufficient to start build the cfrontend?
Henrik.
_________________________________________________________________
Undg� pop-ups med MSN Toolbar - http://toolbar.msn.dk hent den gratis!
2004 Nov 02
0
[LLVMdev] LLVM tools sufficient to build the cfrontend for windows from MinGW?
The problem with building the frontend on Windows is that gcc cannot be
bootstrapped using Window's native compiler -- i.e. VC++ -- unlike every
other platform. It can be built on Windows using gcc, of course, but
even then only if the entire GNU environment is present.
The real problem is that the bootstrapped frontend binaries built using
gcc may not properly link with LLVM binaries built
2005 Aug 08
2
[LLVMdev] cfrontend building
Hallo,
I'm trying to write an gentoo ebuild for the c frontend. When make runs
libstdc++/configure I get some problems:
configure tries to determine the object extensionbut fails. This is the
output:
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... checking for perl... perl
checking build system type...
2004 Nov 02
1
[LLVMdev] LLVM tools sufficient to build the cfrontend for windows from MinGW?
On Tue, 2 Nov 2004, Jeff Cohen wrote:
> The problem with building the frontend on Windows is that gcc cannot be
> bootstrapped using Window's native compiler -- i.e. VC++ -- unlike every
> other platform. It can be built on Windows using gcc, of course, but
> even then only if the entire GNU environment is present.
Yeah, annoying. Unfortunately we're not up to fixing GCC :)
2005 Jun 13
0
[LLVMdev] problem compiling the cfrontend on Linux/PPC
Cyrille Mescam wrote:
> On Mon, Jun 13, 2005 at 11:02:10AM -0500, John Criswell wrote:
>
>>Cyrille Mescam wrote:
>>
[snip]
>
> In fact, i am using the CFE build procedures. I am on instructions 5.
>
> cyrille
>
Okay, I took a closer look at your output.
I was correct in that gccas is attempting to assemble a native PPC
assembly language file. However,
2006 Jun 16
1
[LLVMdev] Which version of gcc should be used to compile the cfrontend version 1.7?
Which version of gcc should be used to compile the cfrontend version 1.7?
Thank you for your time,
James Supancic
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20060616/2b382d09/attachment.html>
2005 Aug 08
0
[LLVMdev] cfrontend building
Stephan,
I've seen this before. It happens when you do "make bootstrap" in llvm-gcc.
While "make bootstrap" is the correct way to build GCC, its not the correct way
to build llvm-gcc.
Based on my experience with this, I suggest you completely erase your build
tree and then follow the CFEBuildInstr.html instructions *to the letter* with
zero deviations.
If you
2005 May 19
2
[LLVMdev] Building LLVM cfrontend
Hi, I am still new to LLVM and also GNU softwares.
I am doing a project using LLVM.
I was building cfrontend on my windows cygwin, however I encountered
this problem, may I now what is the cause?
********************************
my configuration output is:
bash-2.05b$ ../src/configure --prefix=$CFEINSTALL --disable-threads --disable-n
ls --disable-shared --enable-languages=c,c++
loading
2005 Aug 08
2
[LLVMdev] cfrontend building
Am Montag, 8. August 2005 04:15 schrieb Chris Lattner:
>
> I have never seen this, and don't really have any ideas. What configure
> options did you use? Did you follow the directions here?
>
> http://llvm.cs.uiuc.edu/docs/CFEBuildInstrs.html
>
Yes I followed those instructions - almost. This is my configure line:
../src/configure --prefix=/usr --disable-threads
2005 May 19
0
[LLVMdev] Building LLVM cfrontend
The very first time you build GCC, you should do "make bootstrap". After
that, you can use "make" and "make install"
Reid.
On Fri, 2005-05-20 at 00:15 +0800, thean kiat sew wrote:
> Hi, I am still new to LLVM and also GNU softwares.
>
> I am doing a project using LLVM.
>
> I was building cfrontend on my windows cygwin, however I encountered
>
2004 Dec 05
1
[LLVMdev] Building llvm and cfrontend under cygwin
Hi there,
I'm trying to build llvm under cygwin running under windows xp, and have
struck the following problem:
-- llvm: tools-only built ok
-- cfrontend: built ok
-- llvm: full build failed at the following point:
make[3]: Entering directory
`/cygdrive/d/3rd-party/llvm/runtime/GCCLibraries/crtend'
Compiling crtend.c to bytecode
Compiling listend.ll to bytecode
Linking comp_main.bc
2005 Aug 09
3
[LLVMdev] cfrontend building
Am Montag, 8. August 2005 20:04 schrieb Reid Spencer:
> Answers inline ..
>
>
> Is emake 100% compatible with GNU Make 3.79 or later?
>
emake is a python function that calls make internally.
>
> Try it with the build directory not inside the cfrontend directory, that
> will probably solve things for you.
>
> Reid
Hallo,
I found the problem. The gcc sources are older