• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Latest Forgotten source compilation error

Xiron

New Member
Joined
Jun 5, 2007
Messages
17
Reaction score
0
I have this error during compiling latest Forgotten source (linking phase):
Code:
../commands.o(.text+0x35ec):commands.cpp: undefined reference to `GenericEvents::reload()'
../creature.o(.text+0x2514):creature.cpp: undefined reference to `GenericEvents::onDeathEvent(Creature*, Creature*)'

../game.o(.text+0x3b18):game.cpp: undefined reference to `GenericEvents::onLogoutEvent(Player*)'
../otserv.o(.text+0x5de1):otserv.cpp: undefined reference to `GenericEvents::reload()'
../otserv.o(.text+0x62fb):otserv.cpp: undefined reference to `GenericEvents::reload()'
../player.o(.text+0x7c95):player.cpp: undefined reference to `GenericEvents::onThinkEvent(Player*, unsigned int)'
../scriptmanager.o(.text+0x510):scriptmanager.cpp: undefined reference to `GenericEvents::GenericEvents()'
../scriptmanager.o(.text+0x599):scriptmanager.cpp: undefined reference to `GenericEvents::load()'
../protocol80.o(.text+0xa1e5):protocol80.cpp: undefined reference to `GenericEvents::onLoginEvent(Player*)'
collect2: ld returned 1 exit status

make.exe: *** ["Jupitera] Error 1

execution terminated

Halp plx?
 
It would seem according to that debug you have that the the following is happening:

-A few values are not defined within your code. You're code might be missing either the definitions for them OR your code might not be properly closed.
 
Back
Top