I am trying to use file system from boost in C ++
It seems compilation is ok when using
"C ++ -c Analyse.c -o Analyse.o -g -W -Wall -L / usr / local / lib -lboost_filesystem -lboost_system"
However, when I try to execute my code, the following error occurs:
"when loading shared libraries: libboost_filesystem.so.1.54.0: cannot open shared objects file: there is no such file or directory", find / -iname "libboost_system.so.1.54.0
I had some problems installing boost (I first installed 1.49 and after that 1.54), so I was wondering if there could be a conflict between version 2?
PS: btw a "find / -iname "libboost_system.so.1.54.0" gave me the following
/usr/include/boost/boost_1_54_0/bin.v2/libs/system/build/gcc-4.7/release/threading-multi/libboost_system.so.1.54.0 /usr/local/lib/libboost_system.so.1.54.0
source share