On 01.12.2016 19:31, Evangelos Petsalis wrote: > Tiago, > > Apologies for yet another email, but now the compilation fails with the > following error. > I tried modifying the LDFLAGS parameter with the suggested value but still > same error. > Any suggestions? > > Thansk again for all the help, > Vaggelis > > > > CXX graph_blockmodel_overlap_vacate.lo > CXX graph_inference.lo > CXX int_part.lo > CXX spence.lo > CXXLD libgraph_tool_inference.la <http://libgraph_tool_inference.la> > /usr/bin/ld: > /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/libboost_coroutine.a(exceptions.o): > relocation R_X86_64_32 against `.bss' can not be used when making a shared > object; recompile with -fPIC > /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/libboost_coroutine.a: > error adding symbols: Bad value > collect2: error: ld returned 1 exit status > Makefile:556: recipe for target 'libgraph_tool_inference.la > <http://libgraph_tool_inference.la>' failed > make[4]: *** [libgraph_tool_inference.la > <http://libgraph_tool_inference.la>] Error 1 > make[4]: Leaving directory > '/media/sf_VB_SHARE/graph-tool-2.18/src/graph/inference' > Makefile:741: recipe for target 'all-recursive' failed > make[3]: *** [all-recursive] Error 1 > make[3]: Leaving directory '/media/sf_VB_SHARE/graph-tool-2.18/src/graph' > Makefile:412: recipe for target 'all-recursive' failed > make[2]: *** [all-recursive] Error 1 > make[2]: Leaving directory '/media/sf_VB_SHARE/graph-tool-2.18/src' > Makefile:584: recipe for target 'all-recursive' failed > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory '/media/sf_VB_SHARE/graph-tool-2.18' > Makefile:471: recipe for target 'all' failed > make: *** [all] Error 2
It seems like the boost::corountine library was compiled statically, instead of dynamically. Check if there is a libboost_coroutine.so file in the lib directory. If there is not, you have to re-compile boost making sure all libraries are shared objects. -- Tiago de Paula Peixoto <[email protected]> _______________________________________________ graph-tool mailing list [email protected] https://lists.skewed.de/mailman/listinfo/graph-tool
