Hi, I think you're misinterpreting what the linker is telling you. In your log http://pastebin.com/m1ee58afd, line 2, we see
c++ -fPIC .... -o libgame_library.so ... -Wl,-Bstatic -lboost_regex ...
which means you are creating a shared object (libgame_library.so) using
static libraries (libboost_regex, etc). The linker is saying that you
shouldn't do that.
Please remove -Wl,-Bstatic and let me know if that fixes your problem.
Cheers,
-Steve
signature.asc
Description: Digital signature

