in reply to Re: Fuse and fuse_loop
in thread Fuse and fuse_loop
I already gave it to you :) You let ldd tell you which dynamic libraries Fuse.so needs, and then you add the directory paths where those libraries reside to LD_LIBRARY_PATH.
Its like managing your %PATH%
Check out the things I linked, they're starting points that helped me
laterlibfuse...$ sh configure --enable-static --enable-shared libfuse...$ make libfuse...$ make test libfuse...$ make install
laterexport FUSELIBS=pkg-config --libs fuse export FUSELIBS=pkg-config --cflags fuse or export FUSELIBS=pkg-config --static --libs fuse export FUSECFLAGS=pkg-config --static --cflags fuse
thenFuse-0.09_4$ perl Makefile.PL "LIBS=-L/where/lubfuse.so/lives -lfuse" +"INC=-I/where/libfuse.h/lives" or Fuse-0.09_4$ perl Makefile.PL "LIBS=$FUSECFLAGS" "INC=$FUSECFLAGS"
Sometimes Makefile.PL (or Build.PL) authors try to help you, so you have to pass options a different waymake make test make install
|
---|