Open forum for end-user questions about
Wine . Before asking questions, check out the
Wiki as a first step.
Forum Rules
Happydaws
Newbie
Posts: 3 Joined: Tue Nov 11, 2008 3:47 am
Post
by Happydaws » Tue Nov 11, 2008 4:20 am
Hi all! =)
For the first time ever i have a problem with wine.. so must say the error rate on my end is extremely low (been using the betas bout 3-4 years now)
Well down to business..
I have some probs compiling 1.1.8, the 'confugure' works like a charm as allways, 'make depend' has no probs at all but 'make' gives me:
Code: Select all
make[2]: Entering directory `/home/klavs/Download/Stuff/wine/wine-1.1.8/dlls/user32/tests'
gcc -c -I. -I. -I../../../include -I../../../include -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wtype-limits -Wpointer-arith -g -O2 -o menu.o menu.c
{standard input}: Assembler messages:
{standard input}:7374: Warning: end of file not at end of a line; newline inserted
{standard input}:8481: Error: unbalanced parenthesis in operand 2.
gcc: Internal error: Segmentation fault (program cc1)
Please submit a full bug report.
See <http://bugzilla.redhat.com/bugzilla> for instructions.
make[2]: *** [menu.o] Error 1
make[2]: Leaving directory `/home/klavs/Download/Stuff/wine/wine-1.1.8/dlls/user32/tests'
make[1]: *** [user32/tests] Error 2
make[1]: Leaving directory `/home/klavs/Download/Stuff/wine/wine-1.1.8/dlls'
make: *** [dlls] Error 2
Every thing leading up to this point goes well also.
some info on my sys:
Code: Select all
hostname = scarlett.fjas.dk
uname -m = i686
uname -r = 2.6.26.6-79.fc9.i686
uname -s = Linux
uname -v = #1 SMP Fri Oct 17 14:52:14 EDT 2008
Got 1.1.8 from sourceforge and from git. Same problem on both.
Hope someone has some more skills than me obviously to locate the problem =)
Cheers!
Pavel Troller
Post
by Pavel Troller » Tue Nov 11, 2008 5:05 am
Hi!
Hi all! =)
For the first time ever i have a problem with wine.. so must say the error rate on my end is extremely low (been using the betas bout 3-4 years now)
Well down to business..
I have some probs compiling 1.1.8, the 'confugure' works like a charm as allways, 'make depend' has no probs at all but 'make' gives me:
Code:
make[2]: Entering directory `/home/klavs/Download/Stuff/wine/wine-1.1.8/dlls/user32/tests'
gcc -c -I. -I. -I../../../include -I../../../include -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wtype-limits -Wpointer-arith -g -O2 -o menu.o menu.c
{standard input}: Assembler messages:
{standard input}:7374: Warning: end of file not at end of a line; newline inserted
{standard input}:8481: Error: unbalanced parenthesis in operand 2.
gcc: Internal error: Segmentation fault (program cc1)
Please submit a full bug report.
See <
http://bugzilla.redhat.com/bugzilla > for instructions.
make[2]: *** [menu.o] Error 1
make[2]: Leaving directory `/home/klavs/Download/Stuff/wine/wine-1.1.8/dlls/user32/tests'
make[1]: *** [user32/tests] Error 2
make[1]: Leaving directory `/home/klavs/Download/Stuff/wine/wine-1.1.8/dlls'
make: *** [dlls] Error 2
Every thing leading up to this point goes well also.
some info on my sys:
Code:
hostname = scarlett.fjas.dk
uname -m = i686
uname -r = 2.6.26.6-79.fc9.i686
uname -s = Linux
uname -v = #1 SMP Fri Oct 17 14:52:14 EDT 2008
Interesting. But what I'm missing, is your gcc version, it is more important
here than the hostname or kernel version
.
It looks that an internal error is triggered by the new code; however, I've
compiled 1.1.8 too and found no problems. It looks like a bug in your gcc.
With regards, Pavel Troller
Happydaws
Newbie
Posts: 3 Joined: Tue Nov 11, 2008 3:47 am
Post
by Happydaws » Tue Nov 11, 2008 5:36 am
Interesting. But what I'm missing, is your gcc version, it is more important
here than the hostname or kernel version.
It looks that an internal error is triggered by the new code; however, I've
compiled 1.1.8 too and found no problems. It looks like a bug in your gcc.
With regards, Pavel Troller
Code: Select all
gcc --version
gcc (GCC) 4.3.0 20080428 (Red Hat 4.3.0-8)
Thnx
dimesio
Moderator
Posts: 13367 Joined: Tue Mar 25, 2008 10:30 pm
Post
by dimesio » Tue Nov 11, 2008 7:09 am
Run ulimit -s unlimited before compiling.
Happydaws
Newbie
Posts: 3 Joined: Tue Nov 11, 2008 3:47 am
Post
by Happydaws » Tue Nov 11, 2008 7:16 am
dimesio wrote: Run ulimit -s unlimited before compiling.
Man i got to start writing things down!
ofcourse it works with ulimit set to unlimited..
Total brainfart on my behalf!
Thnx a lot dimesio!