search for: gxxpath

Displaying 7 results from an estimated 7 matches for "gxxpath".

2008 Mar 03
0
[LLVMdev] llvm/test: suffix or operands invalid for `push'
...CXXFLAGS settings are not reflected in the site.exp file. I had CC=gcc-4.2 CFLAGS="-m32 -Wl,-melf_i386" CXX=g++-4.2 CXXFLAGS=$CFLAGS ARCH=i686-pc-linux-gnu ./configure --prefix=$HOME --target=$ARCH --host=$ARCH --build=$ARCH but site.exp still has set gccpath "gcc" set gxxpath "g++" and no mention of -m32 or -Wl,elf_i386 (these options are required to force a 64-bit GNU toolchain into 32-bit mode). I don't know where these options are lost; I did a little looking around in the configure scripts, but didn't find any obvious problems and decided to leave...
2008 Feb 28
0
[LLVMdev] llvm/test: suffix or operands invalid for `push'
...configure, it was fixable for the whole toolchain by saying --target=i686, so there is hope. Unfortunately, make check doesn't seem to use the setting from ./configure; this is what I see in site.exp, regardless of any CC= or CFLAGS= settings on make check: set gccpath "gcc" set gxxpath "g++" Should I edit site.exp to fix that, or is there a better way? Regards, Jo
2008 Feb 27
2
[LLVMdev] llvm/test: suffix or operands invalid for `push'
On Feb 27, 2008, at 2:12 PM, Joachim Durchholz wrote: > Some additional info: > > I just found the .s files mentioned in the error message, and checked > them. All error messages refer to one of the following four > instructions: > pushl %ebp > pushl %esi > popl %ebp > popl %esi > It's always the same error, "suffix or operands invalid for >
2008 Feb 27
4
[LLVMdev] llvm/test: suffix or operands invalid for `push'
Hi all again, llvm is failing the 2006-11-30-NoCompileUnit and 2006-11-30-Pubnames tests on me. -m32 and --disable-multilib didn't change the outcome. Did I get the command wrong? I tried jo at kurier:~/Delta/llvm/test$ CFLAGS=--multilib make check See below for a transcript of the failed check. What next? Regards, Jo -- snip -- jo at kurier:~/Delta/llvm/test$ make check llvm[0]:
2008 Mar 06
2
[LLVMdev] llvm/test: suffix or operands invalid for `push'
...n the site.exp file. I had > CC=gcc-4.2 > CFLAGS="-m32 -Wl,-melf_i386" > CXX=g++-4.2 > CXXFLAGS=$CFLAGS > ARCH=i686-pc-linux-gnu > ./configure --prefix=$HOME --target=$ARCH --host=$ARCH --build=$ARCH > but site.exp still has > set gccpath "gcc" > set gxxpath "g++" > and no mention of -m32 or -Wl,elf_i386 (these options are required to > force a 64-bit GNU toolchain into 32-bit mode). > > I don't know where these options are lost; I did a little looking > around > in the configure scripts, but didn't find any obviou...
2008 Feb 29
3
[LLVMdev] llvm/test: suffix or operands invalid for `push'
...e toolchain by saying > --target=i686, so there is hope. > > Unfortunately, make check doesn't seem to use the setting > from ./configure; this is what I see in site.exp, regardless of any > CC= > or CFLAGS= settings on make check: > set gccpath "gcc" > set gxxpath "g++" > > Should I edit site.exp to fix that, or is there a better way?
2008 Feb 29
0
[LLVMdev] llvm/test: suffix or operands invalid for `push'
...t; --target=i686, so there is hope. >> >> Unfortunately, make check doesn't seem to use the setting >> from ./configure; this is what I see in site.exp, regardless of any >> CC= >> or CFLAGS= settings on make check: >> set gccpath "gcc" >> set gxxpath "g++" >> >> Should I edit site.exp to fix that, or is there a better way? > I'm coming into this late so I'm not really sure what's going on, but you can pass options to dejagnu pretty easily using RUNTESTFLAGS. That aside though, what are you doing, and what...