PowerKiller / hopmod

Automatically exported from code.google.com/p/hopmod
0 stars 0 forks source link

Error while loading shared libraries #22

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. i downloaded the hopmod svn
2. i typed cd hopmod
3. i typed mkdir release-build
4. i typed cmake ..
5. i typed make
6. i typed make install
7. i typed chmod +x compile.sh
8. i typed ./compile.sh
9. it compiled well
10. when i navigate to hopmod/bin and run /.sauer_server i get the following 
error message:

"error while loading shared libraries: libboost_signals.so: cannot open shared 
object file: No such file or directory"

What is the expected output? What do you see instead?
i expected the server to run

What version of the product are you using? On what operating system?
latest version, ubuntu 11.10

Please provide any additional information below.
N/A

Original issue reported on code.google.com by EPiC.Kar...@gmail.com on 4 Feb 2012 at 8:54

GoogleCodeExporter commented 9 years ago
Your problem lies in step 10. Before sauer_server can run the environment 
variable LD_LIBRARY_PATH needs to be set correctly which is what the bin/env.sh 
script is for. There are two ways to start Hopmod, "bin/server" command to 
start and daemonize or ". bin/env.sh; bin/sauer_server" to run the server in 
the shell foreground.

Original comment by graham.d...@gmail.com on 6 Feb 2012 at 1:29