"tier0_i486.so and vstdlib_i486.so in the /lib/ dir."
weird. One thing to check are you sym linking those properly in the makefile? This is after a build: [source/linux]$ ls -l [snip] -rw-r--r-- 1 user group 1804 Sep 8 13:00 Makefile.vcpm drwxr-xr-x 4 user group 4096 Sep 8 18:11 obj lrwxrwxrwx 1 user group 36 Sep 8 18:11 tier0_i486.so -> /home/user/hlds/2/bin/tier0_i486.so -rwxr-xr-x 1 user group 947105 Sep 8 18:11 vcpm lrwxrwxrwx 1 user group 38 Sep 8 18:11 vstdlib_i486.so -> /home/user/hlds/2/bin/vstdlib_i486.so This is the section that handles those in the Makefile: mod: vcpm if [ ! -f "tier0_i486.so" ]; then ln -s $(GAME_DIR)/bin/tier0_i486.so .; fi if [ ! -f "vstdlib_i486.so" ]; then ln -s $(GAME_DIR)/bin/vstdlib_i486.so .; fi ./vcpm $(MOD_PROJ) $(MAKE) -f $(MAKE_MOD) $(BASE_DEFINES) Again, verify it was linked properly using ldd, here is mine: [...]$ ldd server_i486.so server_i486.so: libm.so.6 => /lib/tls/libm.so.6 (0x004bd000) libdl.so.2 => /lib/libdl.so.2 (0x00485000) tier0_i486.so => ./tier0_i486.so (0x00111000) vstdlib_i486.so => ./vstdlib_i486.so (0x00147000) libc.so.6 => /lib/tls/libc.so.6 (0x0015b000) /lib/ld-linux.so.2 (0x00702000) libpthread.so.0 => /lib/tls/libpthread.so.0 (0x00286000) tier0_i486.so: ldd: warning: you do not have execution permission for `./tier0_i486.so' libm.so.6 => /lib/tls/libm.so.6 (0x00a25000) libdl.so.2 => /lib/libdl.so.2 (0x00835000) libpthread.so.0 => /lib/tls/libpthread.so.0 (0x00915000) libc.so.6 => /lib/tls/libc.so.6 (0x00ce1000) /lib/ld-linux.so.2 (0x00702000) vstdlib_i486.so: ldd: warning: you do not have execution permission for `./vstdlib_i486.so' libm.so.6 => /lib/tls/libm.so.6 (0x00d8a000) libdl.so.2 => /lib/libdl.so.2 (0x00d78000) libpthread.so.0 => /lib/tls/libpthread.so.0 (0x00f70000) tier0_i486.so => ./tier0_i486.so (0x005c7000) libc.so.6 => /lib/tls/libc.so.6 (0x00111000) /lib/ld-linux.so.2 (0x00702000) Stefan Bermig wrote:
SuSE 10.1 / 9.3 with gcc 3.4.4 and Glibc 2.3.5 (?) _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlcoders
_______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlcoders

