[ Picked text/plain from multipart/alternative ] I give up. I've tried patching the sdk code and got it to compile but it doesn't work(unmodified code) - crashes the game talking about not being able to find things. All my attempts to build egcs 1.1.2 have failed, for some reason, they always simply fail - error out somewhere durring the build - same with binutils. Is there anyone with a linux machine out there that IS able to compile the server library and actually have it work who could give me a user account so I can ssh in and compile? oh pretty pleeeeease. --
Perhaps your Makefile isn't correct. The default Makefile works pretty well with most Linux/gcc distributions (you might have to change "CC=gcc" to "CC=g++" with newer versions of gcc to prevent some warning/error messages, but from what I remember, the default Makefile worked without problems using egcs 1.1.2). Which SDK are you using (I assume 2.3)? Are you building the unmodified SDK or are you making changes first then trying to build it? I would strongly recommend building the completely unmodified SDK first just to know that it works, then attempt to make changes and resolve those problems. If you get runtime errors about not finding "sin" or "cos" or something similar from the math library, you will need to include "-lm" on the command line that links the shared library from the .o files. Jeffrey "botman" Broome _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlcoders

