Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FUSE not found #100

Open
stefan11 opened this issue Apr 11, 2021 · 5 comments
Open

FUSE not found #100

stefan11 opened this issue Apr 11, 2021 · 5 comments
Labels

Comments

@stefan11
Copy link

Hi, I try to install bindfs on MacOS Big Sur and get. FUSE not found.

I guess I messed up by installing FUSE from the project web page and then trying to install it via homebrew.

Any suggestions would be great. Fuse is there, config file as well, but the configure script is unhappy.

more /usr/local/lib/pkgconfig/fuse.pc
prefix=/usr/local
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include

Name: fuse
Description: Filesystem in Userspace
Version: 2.9.9
Libs: -L${libdir} -lfuse -pthread
Libs.private: -liconv -framework CoreFoundation -framework DiskArbitration
Cflags: -I${includedir}/fuse -D_FILE_OFFSET_BITS=64
/usr/local/lib/pkgconfig/fuse.pc (END)

@mpartel
Copy link
Owner

mpartel commented Apr 11, 2021

In #99 a similar issue was solved by reinstalling macfuse via homebrew. Does that help?

@mpartel mpartel added the mac-os label Apr 11, 2021
@stefan11
Copy link
Author

I tried this. I also looked at this first. But my system seems to be different. I installed mac fuse from their webpage first and maybe this left traces. The reinstall of macfuse said it was successful, but configure does not find fuse:

checking for pkg-config... no
checking for fuse3... no
checking for fuse... no
checking for fuse... no
configure: error: FUSE not found

Thanks!

@wwalker
Copy link

wwalker commented Jun 7, 2021

I have the exact problem that @stefan11 desribes.

I have installed both macFUSE via the .dmg and osxfuse via brew install osxfuse

@eberlitz
Copy link

I also faced the same issue, managed to compile bindfs with:

export fuse_CFLAGS="-I/usr/local/include/fuse -D_FILE_OFFSET_BITS=64"
export fuse_LIBS="-L/usr/local/lib -lfuse -pthread"
./configure --with-fuse2 && make && make install

@slonopotamus
Copy link
Contributor

Confirming that #100 (comment) works with both macFUSE and fuse-t. The latter needs minor adjustment, you need to say -lfuse-t instead of -lfuse in fuse_LIBS.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

5 participants