PDA

View Full Version : Where's the error?



notaguru
10-04-2003, 08:16 AM
I don't normally post here prefering to dig for my own answers but I'm kinda stumped here.

The following is from the "Make" on the tarball of the 4.3.14 release. Can some kind soul point me in the direction of what I should search for?

Success!
Please run:
make
[root@----- showeq]# make
make all-recursive
make[1]: Entering directory `/root/showeq'
Making all in maps
make[2]: Entering directory `/root/showeq/maps'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/root/showeq/maps'
Making all in src
make[2]: Entering directory `/root/showeq/src'
make all-am
make[3]: Entering directory `/root/showeq/src'
/bin/sh ../libtool --mode=link g++ -D_REENTRANT -O2 -Wall -g -ggdb -DDEBUG -fin
line-functions -DQT_THREAD_SUPPORT=1 -DDISPLAY_ICONS=false -DICON_DIR=\"/eq-ic
ons/\" -o showeq main.o spawn.o spawnshell.o spawnlist.o spellshell.o spellli
st.o vpacket.o editor.o filter.o m_spawnshell.o m_spawnlist.o m_spellshell.o m_s
pelllist.o m_editor.o packet.o m_packet.o interface.o m_interface.o compass.o m_
compass.o map.o m_map.o util.o experiencelog.o m_experiencelog.o combatlog.o m_c
ombatlog.o msgdlg.o m_msgdlg.o player.o m_player.o decode.o m_decode.o skilllist
.o m_skilllist.o statlist.o m_statlist.o filtermgr.o m_filtermgr.o mapcore.o cat
egory.o m_category.o compassframe.o m_compassframe.o group.o m_group.o guild.o m
_guild.o netdiag.o m_netdiag.o logger.o m_logger.o xmlconv.o xmlpreferences.o m_
xmlpreferences.o seqwindow.o m_seqwindow.o seqlistview.o m_seqlistview.o zonemgr
.o m_zonemgr.o spawnmonitor.o m_spawnmonitor.o spawnpointlist.o m_spawnpointlist
.o spawnlistcommon.o m_spawnlistcommon.o spawnlist2.o m_spawnlist2.o spells.o li
bEQ.o itemdb.o m_itemdb.o gdbmconv.o -L/usr/lib/qt3-gcc3.2/lib -lqt-mt -lpthre
ad -rpath /usr/lib/qt3-gcc3.2/lib -rpath /usr/X11R6/lib -lgdbm -lz -lpcap
g++ -D_REENTRANT -O2 -Wall -g -ggdb -DDEBUG -finline-functions -DQT_THREAD_SUPPO
RT=1 -DDISPLAY_ICONS=false -DICON_DIR=\"/eq-icons/\" -o showeq main.o spawn.o sp
awnshell.o spawnlist.o spellshell.o spelllist.o vpacket.o editor.o filter.o m_sp
awnshell.o m_spawnlist.o m_spellshell.o m_spelllist.o m_editor.o packet.o m_pack
et.o interface.o m_interface.o compass.o m_compass.o map.o m_map.o util.o experi
encelog.o m_experiencelog.o combatlog.o m_combatlog.o msgdlg.o m_msgdlg.o player
.o m_player.o decode.o m_decode.o skilllist.o m_skilllist.o statlist.o m_statlis
t.o filtermgr.o m_filtermgr.o mapcore.o category.o m_category.o compassframe.o m
_compassframe.o group.o m_group.o guild.o m_guild.o netdiag.o m_netdiag.o logger
.o m_logger.o xmlconv.o xmlpreferences.o m_xmlpreferences.o seqwindow.o m_seqwin
dow.o seqlistview.o m_seqlistview.o zonemgr.o m_zonemgr.o spawnmonitor.o m_spawn
monitor.o spawnpointlist.o m_spawnpointlist.o spawnlistcommon.o m_spawnlistcommo
n.o spawnlist2.o m_spawnlist2.o spells.o libEQ.o itemdb.o m_itemdb.o gdbmconv.o
-L/usr/lib/qt3-gcc3.2/lib -lqt-mt -lpthread /usr/lib/libgdbm.so -lz -lpcap -Wl,
--rpath -Wl,/usr/lib/qt3-gcc3.2/lib -Wl,--rpath -Wl,/usr/X11R6/lib
collect2: ld returned 1 exit status
make[3]: *** [showeq] Error 1
make[3]: Leaving directory `/root/showeq/src'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/root/showeq/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/showeq'
make: *** [all] Error 2
[root@--- showeq]#

Thanks in advance


disclaimer: "Some names have changed to protect the identities of the innocent"

fester
10-04-2003, 02:34 PM
Originally posted by notaguru
--rpath -Wl,/usr/lib/qt3-gcc3.2/lib -Wl,--rpath -Wl,/usr/X11R6/lib
collect2: ld returned 1 exit status

...

disclaimer: "Some names have changed to protect the identities of the innocent"

If there was anything between the top two lines ("--rpath" and "collect2") then that is your problem.

If there wasn't anything between those two lines, I am voting:

1) bad ram, overclocked, or bad cpu/motherboard.
2) your compiler chain is corrupt or missing some parts.

In short there isn't enough information to determine. The only information you have provided is "collect2: ld returned 1 exit status." All the other information doesn't help to resolve the problem (other than simply setting the context of where you found the error.)

notaguru
10-05-2003, 10:43 PM
Thats a straight cut and paste from the terminal so I guess my next step is to start testing hardware.

Thanks much for taking the time to look over it.

LordCrush
10-06-2003, 12:19 AM
Did you try make clean ? ... or a new directory ?