--
[ Picked text/plain from multipart/alternative ]
I should of put my makefile aswell(I had changed it)

So where do I actually get the game files? From the windows install?

# the name of the mod binary (_i486.so is appended to the end)
NAME=mod
# the location of the vcproj that builds the mod
MOD_PROJ=../dlls/hl_sdk.vcproj
# the name of the mod configuration (typically <proj name>_<build
type><build target>)
MOD_CONFIG=hl_ReleaseSDKWin32

# the directory the base binaries (tier0_i486.so, etc) are located
GAME_DIR=/root/src/
#GAME_DIR=~/valve/hl2bin/

# compiler options (gcc 3.4.1 or above is required)
CC=/usr/bin/gcc
CPLUS=/usr/bin/g++
CLINK=/usr/bin/gcc
CPP_LIB="/usr/lib/gcc/i386-redhat-linux/3.4.2/libstdc++.a
/usr/lib/gcc/i386-redhat-linux/3.4.2/libgcc_eh.a"

# put any compiler flags you want passed here
USER_CFLAGS=

# link flags for your mod, make sure to include any special libraries here
LDFLAGS="-lm -ldl $(GAME_DIR)/tier0_i486.so $(GAME_DIR)/vstdlib_i486.so"

Theese are all correct as far as I can tell(searched the system for them)

On 7/25/05, John Beranek <[EMAIL PROTECTED]> wrote:
>
> Ben Davison wrote:
> > --
> > [ Picked text/plain from multipart/alternative ]
> > I finnaly got xerces built(I think) but now i'm having other troubles.
> >
> >>From my make log:
> >
> > gcc: /bin/tier0_i486.so: No such file or directory
> > gcc: /bin/vstdlib_i486.so: No such file or directory
> >
> > Where are theese files located anyway?
> >
> > I'm also having problems with this.
> >
> > gcc: /usr/lib/gcc/i386-redhat-linux/3.4.2/libstdc++.a: No such file or
> > directory
> > gcc: /usr/lib/gcc/i386-redhat-linux/3.4.2/libgcc_eh.a: No such file or
> > directory
>
> You fail at reading too. From:
>
> http://developer.valvesoftware.com/wiki/Compiling_under_Linux
>
> it appears that you've not set a few variables in "linux_sdk/makefile"
> correctly, namely:
>
> GAME_DIR - this is why it can't find tier0_i486.so, vstdlib_i486.so
>
> CC,CPLUS,CLINK,CPP_LIB - You need to point the makefile at the right
> location of all these things. Where they exist is highly variable based
> on what distro you're using.
>
> John.
>
> --
> John Beranek To generalise is to be an idiot.
> http://redux.org.uk/ -- William Blake
>
> _______________________________________________
> To unsubscribe, edit your list preferences, or view the list archives,
> please visit:
> http://list.valvesoftware.com/mailman/listinfo/hlcoders
>
>


--
- Ben Davison
- http://www.shadow-phoenix.com
--

_______________________________________________
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlcoders

Reply via email to