BumpRace 0.6 out under the GNU GPL and again problems with my cross compiler

BumpRace 0.6 is now available at:

http://members.xoom.com/karlba/bumpracer.html

the source code is now under the GNU GPL!

New features since 0.45

-music
-sound effect (it’s only one yet)
-choose between two racer
-more levels
-time out
-teleporter and time boni

If you download it please send me some comments/suggestions.

The windows version isn’t ready for download, because I have some
problems with my cross compiler:

  • if I try to compile it with I get undefined references to all
    function from the mixer library although -lmixer and -L$(MIXER) are in
    the makefile.

  • if I try to compile it with i686-pc-mingw32-g++ I get the following
    error message:
    /usr/win32/i686-pc-mingw32/bin/ld: cannot open -lm: file or directory
    not found

Thanks for any help with this problem.

Karl

Karl Bartel wrote:

BumpRace 0.6 is now available at:

  • if I try to compile it with i686-pc-mingw32-g++ I get the following
    error message:
    /usr/win32/i686-pc-mingw32/bin/ld: cannot open -lm: file or directory
    not found

I had the same problem…
for linking use “cc” instead of “g++” and add “-lstdc++”:

I?m using the following:

cc -O2 -fno-exceptions -ffast-math -Wall -s [your objects go here]
-L/opt/win32/lib -lmingw32 -lSDL -lstdc++>Thanks for any help with this problem.

Karl

Karsten-O. Laux
klaux at student.uni-kl.de
http://www.rhrk.uni-kl.de/~klaux
UIN 21614933 (Bert)

Karl Bartel wrote:

BumpRace 0.6 is now available at:

http://members.xoom.com/karlba/bumpracer.html

one short note on windows…

it is sufficient, to copy the sdl dlls into the bin dir of bumpracer, no need
to copy them to windows/system–
Karsten-O. Laux
klaux at student.uni-kl.de
http://www.rhrk.uni-kl.de/~klaux
UIN 21614933 (Bert)

Karsten-Olaf Laux schrieb:

Karl Bartel wrote:

BumpRace 0.6 is now available at:

http://members.xoom.com/karlba/bumpracer.html

one short note on windows…

it is sufficient, to copy the sdl dlls into the bin dir of bumpracer, no need
to copy them to windows/system

Thanks, that a good piece of information, and thanks for the other tip,
too. I’ll try if that works.