You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed fuse-t as suggested in the README like this and everything worked fine.
brew install macos-fuse-t/homebrew-cask/fuse-t
Then, I try to compile ext4fuse against fuse-t, so I change fuse to fuse-t in the pkg-config statementes in the Makefile. Running make returns the following error.
› make
cc -I/usr/local/include/fuse -DFUSE_USE_VERSION=26 -std=gnu99 -g3 -Wall -Wextra -DEXT4FUSE_VERSION=\"v0.1.3-20-g6b23d8d\" -mmacosx-version-min=10.5 -D_FILE_OFFSET_BITS=64 -c -o fuse-main.o fuse-main.c
fuse-main.c:14:10: fatal error: 'fuse.h' file not found
14 | #include <fuse.h>
| ^~~~~~~~
1 error generated.
make: *** [fuse-main.o] Error 1
I track the error and find that pkg-config fuse-t --cflags returns -I/usr/local/include/fuse which does not exist on my system.
› pkg-config fuse-t --cflags
-I/usr/local/include/fuse
› ls -l /usr/local/include/fuse
ls: /usr/local/include/fuse: No such file or directory
I solved my issue by adding the path, where the header files are stored on my system, explicity CFLAGS += -I/Library/Frameworks/fuse_t.framework/Versions/Current/Headers.
I just want to bring this to your attention. Feel free to close if it is irrelevant.
The text was updated successfully, but these errors were encountered:
I installed fuse-t as suggested in the README like this and everything worked fine.
Then, I try to compile ext4fuse against
fuse-t
, so I changefuse
tofuse-t
in thepkg-config
statementes in the Makefile. Runningmake
returns the following error.I track the error and find that
pkg-config fuse-t --cflags
returns-I/usr/local/include/fuse
which does not exist on my system.I solved my issue by adding the path, where the header files are stored on my system, explicity
CFLAGS += -I/Library/Frameworks/fuse_t.framework/Versions/Current/Headers
.I just want to bring this to your attention. Feel free to close if it is irrelevant.
The text was updated successfully, but these errors were encountered: