Author Topic: Compiling Error  (Read 7430 times)

Lonly

  • Posts: 231
  • Turrets: +9/-39
    • Host-Man
Compiling Error
« on: August 13, 2009, 10:52:46 pm »
make[2]: Entering directory `/c/trunk'
make[2]: `build/release-mingw32-x86/base/vm/cgame.qvm' is up to date.
Q3ASM build/release-mingw32-x86/base/vm/game.qvm
error: symbol G_admin_cleanup undefined
error: symbol G_admin_print undefined
Multiple definitions for $415_24_24
make[2]: *** [build/release-mingw32-x86/base/vm/game.qvm] Error 97
make[2]: Leaving directory `/c/trunk'
make[1]: *** [targets] Error 2
make[1]: Leaving directory `/c/trunk'
make: *** [release] Error 2

All the defines where deleted since it was too long. For the full thing is :

http://www.mediafire.com/download.php?jymmzjgdmzi


I have nero's source.

Archangel

  • Guest
Re: Compiling Error
« Reply #1 on: August 13, 2009, 10:56:32 pm »
it's rather self explanatory. there's no such routine G_admin_cleanup, nor G_admin_print. define them.

Lonly

  • Posts: 231
  • Turrets: +9/-39
    • Host-Man
Re: Compiling Error
« Reply #2 on: August 13, 2009, 11:08:11 pm »
it's rather self explanatory. there's no such routine G_admin_cleanup, nor G_admin_print. define them.

You mean in the makefile?

Archangel

  • Guest
Re: Compiling Error
« Reply #3 on: August 13, 2009, 11:17:13 pm »
no, in whatever file they're defined in (i think g_admin.c ?)

David

  • Spam Killer
  • *
  • Posts: 3543
  • Turrets: +249/-273
Re: Compiling Error
« Reply #4 on: August 13, 2009, 11:42:45 pm »
It's a q3asm error, not a gcc error.  (He cut all the useful bit of the error from the bit he posted here >_>).

Try doing a make clean before running make.
Any maps not in the MG repo?  Email me or come to irc.freenode.net/#mg.
--
My words are mine and mine alone.  I can't speak for anyone else, and there is no one who can speak for me.  If I ever make a post that gives the opinions or positions of other users or groups, then they will be clearly labeled as such.
I'm disappointed that people's past actions have forced me to state what should be obvious.
I am not a dev.  Nothing I say counts for anything.

Lonly

  • Posts: 231
  • Turrets: +9/-39
    • Host-Man
Re: Compiling Error
« Reply #5 on: August 14, 2009, 01:53:03 am »
how do i clear? I forgot lmao.

Archangel

  • Guest
Re: Compiling Error
« Reply #6 on: August 14, 2009, 02:18:09 am »

Lonly

  • Posts: 231
  • Turrets: +9/-39
    • Host-Man
Re: Compiling Error
« Reply #7 on: August 14, 2009, 06:26:58 pm »
Fail. Didn't work, same error(s).

Archangel

  • Guest
Re: Compiling Error
« Reply #8 on: August 15, 2009, 02:08:11 am »
paste the whole error?

KillerWhale

  • Spam Killer
  • *
  • Posts: 469
  • Turrets: +63/-26
Re: Compiling Error
« Reply #9 on: August 15, 2009, 05:24:24 pm »
Please, before you post the entire error, make sure you use the "code" tag.

Also.
I have nero's source.

nero's source.

nero

Found your problem.


Nero's QVM is known to be prone to all sorts of weird errors, segfaults, and basically anything that can go wrong with a QVM.

Lonly

  • Posts: 231
  • Turrets: +9/-39
    • Host-Man
Re: Compiling Error
« Reply #10 on: August 15, 2009, 06:17:56 pm »
when i had nero's qvm plain it compiled fine, now that i add 4 commands (denyclass, allowclass, denyweapon, allowweapon), it crashes. And i cant post whole error its too big to post.

KillerWhale

  • Spam Killer
  • *
  • Posts: 469
  • Turrets: +63/-26
Re: Compiling Error
« Reply #11 on: August 15, 2009, 06:37:33 pm »
Those particular patches take some hacking to get working right, if I recall correctly.
They won't patch cleanly with just the patch.

Lonly

  • Posts: 231
  • Turrets: +9/-39
    • Host-Man
Re: Compiling Error
« Reply #12 on: August 16, 2009, 06:36:02 pm »
actually foe got the right solution, delete the build folder and recompile, everything went fine :-}

Archangel

  • Guest
Re: Compiling Error
« Reply #13 on: August 16, 2009, 08:12:01 pm »
that's more or less what make clean does.