Displaying 20 results from an estimated 4000 matches similar to: "[LLVMdev] Can't bootstrap llvm-gcc-4.0 for x84_64"
2007 Oct 08
0
[LLVMdev] Can't bootstrap llvm-gcc-4.0 for x84_64
On Oct 8, 2007, at 12:50 PM, David Greene wrote:
> I've been unable to bootstrap llvm-gcc-4.0 or -4.2 for x86_64
> for some weeks now. The current problem is this:
>
> [x86_64-mod-dbg]: ./xgcc -B./
> -B/install.modified.debug/x86_64-unknown-linux-gnu/x86_64-unknown-
> linux-gnu/bin/
> -isystem /install.modified.debug/x86_64-unknown-linux-gnu/x86_64-
>
2007 Oct 08
2
[LLVMdev] Can't bootstrap llvm-gcc-4.0 for x84_64
On Mon, 8 Oct 2007, Evan Cheng wrote:
>> [x86_64-mod-dbg]: /tmp/ccxekXCc.s: Assembler messages:
>> [x86_64-mod-dbg]: /tmp/ccxekXCc.s:36: Error: `(%esi,%edi)' is not a
>> valid 64
>> bit base/index expression
>
> Looks like llvm is generating invalid x86-64 assembly. Can you add a -
> emit-llvm to the xgcc line and generate a reproducible test case?
> Please
2007 Oct 09
0
[LLVMdev] Can't bootstrap llvm-gcc-4.0 for x84_64
On Oct 8, 2007, at 4:26 PM, Chris Lattner wrote:
> On Mon, 8 Oct 2007, Evan Cheng wrote:
>>> [x86_64-mod-dbg]: /tmp/ccxekXCc.s: Assembler messages:
>>> [x86_64-mod-dbg]: /tmp/ccxekXCc.s:36: Error: `(%esi,%edi)' is not a
>>> valid 64
>>> bit base/index expression
>>
>> Looks like llvm is generating invalid x86-64 assembly. Can you add
2007 Oct 10
2
[LLVMdev] Can't bootstrap llvm-gcc-4.0 for x84_64
On Mon, 8 Oct 2007, Evan Cheng wrote:
> I am turning 32-bit add into 32-bit LEA on x86-64 but that's
> perfectly legal. Both
> leal (%esi,%edi), %eax
> leal (%rsi,%rdi), %eax
> are legal assembly. It's just the former requires a 67H prefix due to
> the 32-bit address size.
>
> This does point to a performance problem in the 3 address conversion
> code (which I
2008 Aug 13
2
[LLVMdev] llvm-gcc bootstrap failure
I'm getting the following when building llvm-gcc with an optimized set of
LLVM libraries:
/ptmp/dag/build.llvm-gcc-4.2.trunk.official.opt/x86_64-unknown-linux-gnu/./gcc/xgcc
-B/ptmp/dag/build.llvm-gcc-4.2.trunk.official.opt/x86_64-unknown-linux-gnu/./gcc/
-B/cray/iss/compiler/cost/tools/llvm-tools/llvm/install.trunk.official.opt/x86_64-unknown-linux-gnu/x86_64-unknown-linux-gnu/bin/
2008 Aug 13
0
[LLVMdev] llvm-gcc bootstrap failure
David Greene wrote:
> I'm getting the following when building llvm-gcc with an optimized set of
> LLVM libraries:
>
> /ptmp/dag/build.llvm-gcc-4.2.trunk.official.opt/x86_64-unknown-linux-gnu/./gcc/xgcc
> -B/ptmp/dag/build.llvm-gcc-4.2.trunk.official.opt/x86_64-unknown-linux-gnu/./gcc/
>
2007 Jan 10
4
[LLVMdev] llvm-gcc build fail on RHEL v4 x86_64
The machine is a Dell workstation with xeon processors. The OS is RHEL 4 AS
x86_64
gcc version is 3.4.6
I checked out the llvm-gcc from svn, configured with
../llvm-gcc/configure --prefix=$HOME/llvm-gcc-install
--enable-llvm=$HOME/llvmobj/ --enable-languages=c,c++ --enable-checking
--disable-shared --disable-multilib
and get the following error message:
make
2007 Jan 10
0
[LLVMdev] llvm-gcc build fail on RHEL v4 x86_64
gcc 3.4.x builds LLVM incorrectly on x86_64.
gcc 4.0 will get you much farther, but the llvm-test regression tests
still have massive problems.
Zhongxing Xu wrote:
> The machine is a Dell workstation with xeon processors. The OS is RHEL
> 4 AS x86_64
> gcc version is 3.4.6
>
> I checked out the llvm-gcc from svn, configured with
> ../llvm-gcc/configure
2007 Jan 11
2
[LLVMdev] llvm-gcc build fail on RHEL v4 x86_64
On Jan 9, 2007, at 9:48 PM, Jeff Cohen wrote:
> gcc 3.4.x builds LLVM incorrectly on x86_64.
>
> gcc 4.0 will get you much farther, but the llvm-test regression tests
> still have massive problems.
Please file bug reports on these. Thanks!
Evan
>
> Zhongxing Xu wrote:
>> The machine is a Dell workstation with xeon processors. The OS is
>> RHEL
>> 4 AS
2007 Jan 12
2
[LLVMdev] llvm-gcc build fail on RHEL v4 x86_64
I do all my LLVM stuff on x86_64 without trouble... I have a nightly tester
up, and its only getting a few regressions currently, and I think some of
those have to do with the radical changes going on in LLVM-land currently,
and others with no one having done support for x86-64 in debugging output.
(this is at least most of what I've seen, ymmv).
Also, for the record, I have found both gcc
2007 Jan 11
0
[LLVMdev] llvm-gcc build fail on RHEL v4 x86_64
Already have concerning gcc 3.4: http://llvm.org/bugs/show_bug.cgi?id=1056
As for llvm-test issues, quite frankly I don't know how well they're
expected to work on x86_64. No one has jumped in and said they run fine
on their x86_64 system. Maybe they're code generator bugs, or maybe
they're portability issues for FreeBSD (though I never saw such massive
problems with 32-bit
2007 Mar 01
3
[LLVMdev] compiling llvm-gcc4 on ubuntu
hello,
i am new to llvm and can't manage to compile the gcc backend.
my steps:
i compile the llvm-source first as suggested in "README.LLVM"
that works fine and without any issues.
then i make a new dir called build. from there i do the following:
stefan at ubuntu:~/programs/llvm/build$ ../llvm-gcc4-1.9.source/configure --enable-languages=c,c++ --prefix=/usr/local/
2006 May 02
1
[LLVMdev] Bootstrapping llvm-gcc4 on Mingw
Hello, Everyone.
I'm currently trying to bootstrap llvm-gcc4 on mingw32 platform.
Everything (except some small fixes) seems to be fine: stage1 finished
successfully. I'm linking with debug variant of LLVM, since linker bug
prevents release builds.
Unfortunately, stage2 failes immediately with this cryptic message:
$/f/tmp/llvm/gccbuild/gcc/xgcc -B/f/tmp/llvm/gccbuild/gcc/
2007 Jan 12
0
[LLVMdev] llvm-gcc build fail on RHEL v4 x86_64
Could you provide a list of all tests failing for you? You can just
grep the output from make for 'FAILED!'.
I've fixed 5 of them so far... 275 to go...
Chandler Carruth wrote:
> I do all my LLVM stuff on x86_64 without trouble... I have a nightly
> tester up, and its only getting a few regressions currently, and I
> think some of those have to do with the radical
2007 Oct 10
0
[LLVMdev] Can't bootstrap llvm-gcc-4.0 for x84_64
On Wednesday 10 October 2007 12:53, Chris Lattner wrote:
> On Mon, 8 Oct 2007, Evan Cheng wrote:
> > I am turning 32-bit add into 32-bit LEA on x86-64 but that's
> > perfectly legal. Both
> > leal (%esi,%edi), %eax
> > leal (%rsi,%rdi), %eax
> > are legal assembly. It's just the former requires a 67H prefix due to
> > the 32-bit address size.
>
2008 Mar 25
2
[LLVMdev] llvm-gcc 4.2 assertion failed on linux x86_64
Hello,
Trying to get my machine building up-to-date, and a nightly going, i
ran into an assertion during the build of llvm-gcc 4.2:
$ make -j2
<snip!>
/home/chandlerc/code/compilers/build/llvm-gcc/./gcc/xgcc
-B/home/chandlerc/code/compilers/build/llvm-gcc/./gcc/
-B/home/chandlerc/code/compilers/install/llvm-gcc/x86_64-pc-linux-gnu/bin/
2009 Nov 12
2
[LLVMdev] Bootstrap Failure
Hi all,
There's been a recent bootstrap failure that might be covered up
because of another failure. I just wanted to point this out so that
people can take a look:
-bw
Here's the failure from our buildbot:
Assertion failed: (DestReg == VirtReg && "Unknown load situation!"),
function RewriteMBB, file /Volumes/Sandbox/Buildbot/llvm/build.llvm-
2007 Sep 19
2
[LLVMdev] Building current llvm-gcc-4.0 TOT fails on darwin x86
I now get:
/Users/arnold/Desktop/testing/vanilla-gcc-4.0/obj/gcc/xgcc -B/Users/
arnold/Desktop/testing/vanilla-gcc-4.0/obj/gcc/ -B/Users/arnold/
Desktop/testing/vanilla-gcc-4.0/obj/../install/i686-apple-darwin8/
bin/ -B/Users/arnold/Desktop/testing/vanilla-gcc-4.0/obj/../install/
i686-apple-darwin8/lib/ -isystem /Users/arnold/Desktop/testing/
2008 Oct 31
2
[LLVMdev] building for sparc-sun-solaris2.10
Mike Stump wrote:
> On Oct 31, 2008, at 1:10 PM, Luke Dalessandro wrote:
>> I've started trying by trying to get sparc-sun-solaris2.10 (niagara)
>> working. It appears that neither llvm nor llvm-gcc will build natively
>> on the system, so I think that I need to build an llvm-gcc cross
>> compiler.
>
> Get a gcc binary from someplace, use that to then build
2008 Nov 01
0
[LLVMdev] building for sparc-sun-solaris2.10
Luke Dalessandro wrote:
> OK. So I've discovered --with-sysroot which seems to be grabbing and
> patching the include files correctly. Now it's dieing with
>
> ./options.h:462: error: 'HOST_BITS_PER_INT' undeclared here (not in a
> function)
> ./options.h:462: error: bit-field 'padding' width not an integer constant
>
> which appears to be