summaryrefslogtreecommitdiff
path: root/notes
diff options
context:
space:
mode:
authorJoe Rayhawk <jrayhawk@omgwallhack.org>2009-12-21 23:37:08 -0800
committerJoe Rayhawk <jrayhawk@omgwallhack.org>2009-12-21 23:37:08 -0800
commitf7573d4401bc2ce8d67a66523b129ef6edc1f5c1 (patch)
tree573e298e076f9f470a5bcbb7f1a7a618cf9bbefa /notes
parent55aa83887d882632db07f5e0b9daaa22d71e7cd2 (diff)
downloadjrayhawk-f7573d4401bc2ce8d67a66523b129ef6edc1f5c1.tar.gz
jrayhawk-f7573d4401bc2ce8d67a66523b129ef6edc1f5c1.zip
Adding srcds notes.
Diffstat (limited to 'notes')
-rw-r--r--notes/srcds.mdwn40
1 files changed, 40 insertions, 0 deletions
diff --git a/notes/srcds.mdwn b/notes/srcds.mdwn
new file mode 100644
index 0000000..a048b2e
--- /dev/null
+++ b/notes/srcds.mdwn
@@ -0,0 +1,40 @@
+# Unable to load interface VEngineCvar003 from bin/engine_i686.so
+
+ hlds@ahl:~/server$ ./srcds_run
+ Auto detecting CPU
+ Using SSE2 Optimised binary.
+ Server will auto-restart if there is a crash.
+ AppFramework : Unable to load module bin/engine_i686.so!
+ Unable to load interface VEngineCvar003 from bin/engine_i686.so Mon Dec 21 23:25:29 PST 2009: Server Quit
+
+ hlds@ahl:~/server$ ls -l engine_i686.so bin/engine_i686.so
+ -rw-r--r-- 1 hlds hlds 5227386 2009-12-21 23:09 bin/engine_i686.so
+ -rw-r--r-- 1 hlds hlds 964376 2009-08-06 20:27 engine_i686.so
+
+Source and GoldSrc libraries, respectively.
+
+ hlds@ahl:~/server$ grep LD_LIBRARY srcds_run
+ export LD_LIBRARY_PATH=".:bin:$LD_LIBRARY_PATH"
+
+ hlds@ahl:~/server$ export LD_LIBRARY_PATH=.:bin
+ hlds@ahl:~/server$ ./srcds_amd
+ AppFramework : Unable to load module bin/engine_amd.so!
+ Unable to load interface VEngineCvar003 from bin/engine_amd.so
+
+ hlds@ahl:~/server$ export LD_LIBRARY_PATH=bin
+ hlds@ahl:~/server$ ./srcds_amd
+ Warning: falling back to auto detection of vproject directory.
+ Unable to find gameinfo.txt. Solutions:
+
+ 1. Read http://www.valve-erc.com/srcsdk/faq.html#NoGameDir
+ 2. Run vconfig to specify which game you're working on.
+ 3. Add -game <path> on the command line where <path> is the directory that gameinfo.txt is in.
+ Unable to find gameinfo.txt. Solutions:
+
+ 1. Read http://www.valve-erc.com/srcsdk/faq.html#NoGameDir
+ 2. Run vconfig to specify which game you're working on.
+ 3. Add -game <path> on the command line where <path> is the directory that gameinfo.txt is in.
+
+## Conclusion
+
+Avoid srcds_run. You will have a less stressful time reimplementing it yourself than expecting it to work.