Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Linux Servers

Support::Linux Servers Support forum for Linux EQEMu users.

Reply
 
Thread Tools Display Modes
  #1  
Old 07-20-2006, 06:14 AM
ksmith08
Fire Beetle
 
Join Date: Jul 2006
Posts: 23
Default Compile issue - SuSE 10.1

I'm getting the following when trying to make 'world.'

[CODE]
Tux:/home/eqemu/source/07192006/world # make
gcc -c -Wall -Wuninitialized -Wwrite-strings -Wcast-qual -Wcomment -Wcast-align
-Wno-deprecated -g -march=i686 -O -pthread -pipe -I../common/SocketLib -DFX -D_G
NU_SOURCE -DINVERSEXY -DWORLD -DDEBUG=5 -DEQDEBUG=5 -DSHAREMEM -DCATCH_CRASH -DN
O_PIDLOG -DFIELD_ITEMS -DIRC -Di386 -DAPP_OPCODE_SIZE=2 -DEMBPERL -DEMBPERL_PLUG
IN -DHAS_UNION_SEMUN -I/usr/include/mysql -march=i586 -mtune=i686 -fmessage-leng
th=0 -D_FORTIFY_SOURCE=2 -g -DPIC -fPIC -DUNDEF_HAVE_INITGROUPS -fno-strict-alia
sing -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBUGGING -fno-strict-ali
asing -pipe -Wdeclaration-after-statement -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BIT
S=64 -I/usr/lib/perl5/5.8.8/i586-linux-thread-multi/CORE ../common/timer.cpp -
o ../common/timer.o
cc1plus: warning: command line option "-Wdeclaration-after-statement" is valid f
or C/ObjC but not for C++
gcc -c -Wall -Wuninitialized -Wwrite-strings -Wcast-qual -Wcomment -Wcast-align
-Wno-deprecated -g -march=i686 -O -pthread -pipe -I../common/SocketLib -DFX -D_G
NU_SOURCE -DINVERSEXY -DWORLD -DDEBUG=5 -DEQDEBUG=5 -DSHAREMEM -DCATCH_CRASH -DN
O_PIDLOG -DFIELD_ITEMS -DIRC -Di386 -DAPP_OPCODE_SIZE=2 -DEMBPERL -DEMBPERL_PLUG
IN -DHAS_UNION_SEMUN -I/usr/include/mysql -march=i586 -mtune=i686 -fmessage-leng
th=0 -D_FORTIFY_SOURCE=2 -g -DPIC -fPIC -DUNDEF_HAVE_INITGROUPS -fno-strict-alia
sing -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBUGGING -fno-strict-ali
asing -pipe -Wdeclaration-after-statement -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BIT
S=64 -I/usr/lib/perl5/5.8.8/i586-linux-thread-multi/CORE ../common/packet_dump .cpp -o ../common/packet_dump.o
cc1plus: warning: command line option "-Wdeclaration-after-statement" is valid f or C/ObjC but not for C++
../common/EQStream.h:226: error: extra qualification
Reply With Quote
  #2  
Old 07-20-2006, 06:34 AM
aza77
Hill Giant
 
Join Date: Dec 2004
Posts: 126
Default

try gcc 3.4 or 3.3
__________________
- http://www.eqemu-paradigma.de -
Reply With Quote
  #3  
Old 07-23-2006, 01:15 PM
fathernitwit
Developer
 
Join Date: Jul 2004
Posts: 773
Default

either mysql or perl is outputing that flag, try running:
perl -MExtUtils::Embed -e ccopts
or
mysql_config --cflags

to see which one... whiever one it is needs to be updated or something to make it work with new gcc... or just downgrade as previously suggested.
Reply With Quote
  #4  
Old 08-10-2006, 05:50 AM
ksmith08
Fire Beetle
 
Join Date: Jul 2006
Posts: 23
Default

Thanks.

I ended up setting up a Windows version. But I plan on revisiting the Linux version.
Reply With Quote
  #5  
Old 09-09-2006, 03:25 AM
arew264
Fire Beetle
 
Join Date: Sep 2006
Posts: 22
Default

Well, sorry to resurrect a slightly old post, but I get this error too under Arch Linux, a 686 optomized distro that tries to stay bleeding edge (prolly the same cause as above, too new a gcc). I'ma post the output to the above commands.
Reply With Quote
  #6  
Old 09-09-2006, 03:27 AM
arew264
Fire Beetle
 
Join Date: Sep 2006
Posts: 22
Default

Perl is doing it. When I run perl -MextUtile::Embed -e ccopts, a section says -Wdeclaration-after-statement. I believe this was the problem line, but how do I get rid of it? Is it percolating in some config file on the far side of nowhere? I'll start looking...
Reply With Quote
  #7  
Old 09-09-2006, 03:29 AM
MikeyUSC
Fire Beetle
 
Join Date: Sep 2005
Posts: 10
Default

The compiler flag won't cause the error.. the actual error is this:

../common/EQStream.h:226: error: extra qualification
Reply With Quote
  #8  
Old 09-09-2006, 04:01 AM
arew264
Fire Beetle
 
Join Date: Sep 2006
Posts: 22
Default

Well, that line now looks like:
static const char *StreamTypeString(EQStreamType t);
and it was
static const char *EQStream::StreamTypeString(EQStreamType t);
It seems to be compiling now...
Thanks!
Reply With Quote
  #9  
Old 09-09-2006, 04:19 AM
arew264
Fire Beetle
 
Join Date: Sep 2006
Posts: 22
Default

I have been foiled again:
gcc -c -Wall -Wuninitialized -Wwrite-strings -Wcast-qual -Wno-deprecated -Wcomment -Wcast-align -O -g -pg -march=i686 -pthread -pipe -D_GNU_SOURCE -DINVERSEXY -DFX -DZONE -DEQDEBUG=5 -DCATCH_CRASH -DNO_PIDLOG -DSHAREMEM -DSPELL_EFFECT_SPAM -DFIELD_ITEMS -DCOMBINED -DAPP_OPCODE_SIZE=2 -Di386 -DEMBPERL -DEMBPERL_PLUGIN -DHAS_UNION_SEMUN -I/usr/include/mysql `perl -MExtUtils::Embed -e ccopts` zone.cpp -o zone.o
cc1plus: warning: command line option "-Wdeclaration-after-statement" is valid for C/ObjC but not for C++
map.h:113: error: extra qualification
Reply With Quote
  #10  
Old 09-09-2006, 04:30 AM
MikeyUSC
Fire Beetle
 
Join Date: Sep 2005
Posts: 10
Default

[QUOTE=arew264]
map.h:113: error: extra qualification
Reply With Quote
  #11  
Old 09-09-2006, 06:00 AM
arew264
Fire Beetle
 
Join Date: Sep 2006
Posts: 22
Default

Well, I got it to compile, now if only I could figure out where the heck this legendary eqlaunch file is supposed to come from...
Reply With Quote
  #12  
Old 09-09-2006, 06:03 AM
arew264
Fire Beetle
 
Join Date: Sep 2006
Posts: 22
Default

Where IS that file supposed to come from? I don't seem to have it anywhere and the linux install guide seems to assume that it's there.
Reply With Quote
  #13  
Old 09-09-2006, 09:57 AM
arew264
Fire Beetle
 
Join Date: Sep 2006
Posts: 22
Default

HOLY COW now I feel like a total moron... maybe the eqstartup file was supposed to come from the eqstartup directory found at the root level? DOH!
Reply With Quote
  #14  
Old 09-21-2006, 03:38 AM
cubber
Discordant
 
Join Date: Apr 2006
Posts: 374
Default

I am having this same issue, what file do I have to edit to remove the extra qualifications?
Reply With Quote
  #15  
Old 10-08-2006, 08:46 AM
John Adams
Demi-God
 
Join Date: Jul 2006
Posts: 1,552
Default

Not to bump, but just reporting that Fedora Core 5 and gcc 4.1.1 rel 1.fc5 (i386) also has this issue. I am having no luck back-rev'ing gcc, and currently attempting cubber's guide HERE to see if I can get Core 5 to work. Else, I'll drop back to 4 and just not do any updates (I guess... this is all new to me heh).

The laugh is, I had everything perfect on Fedora Core 4, and thought "hmm. an update. let's be current". Now, I'm on day 4 of "fixing" everything. 17 reloads later. sigh...

"if it ain't broke...."
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 05:16 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3