Release Homeworld


my little brain cannot build it

/usr/bin/ld: ./Game/libhw_Game.a(CameraCommand.o): undefined reference to symbol 'acos@@GLIBC_2.2.5'
//lib/x86_64-linux-gnu/libm.so.6:

googling says i need to add -lm

and that should be added when you ../configure --enable-network

but it doesn't work for me

who understands autotools?
you can use LIBS env. variable to force it, like:
Code:
LIBS="-lm" ./configure --enable-network
 
Back
Top