ocamlfuse
ocamlfuse copied to clipboard
OCamlFuse mirror with dune support
``` Processing actions 🐫 [ERROR] The compilation of ocamlfuse failed at "/Users/mark/.opam/opam-init/hooks/sandbox.sh build dune build -p ocamlfuse -j 11". #=== ERROR while compiling ocamlfuse.2.7.1-cvs7 ===============================# # context 2.0.8 | macos/x86_64...
This is probably a FUSE question, rather than an ocamlfuse question, but perhaps someone can help... Suppose a user has an ocamlfuse filesystem mounted, and the user application calls write(somepath,buf,off,len)...
FreeBSD compilation will fail because the make command is being used. BSD make is different from GNU make, the compilation does not fail when using the gmake command. gmake can...
I am not sure why I have to add `CPPFLAGS='-DFUSE_USE_VERSION=26` to get it to compile on Mac OS X. It's defined in [Fuse_util.c#L50](https://github.com/astrada/ocamlfuse/blob/master/lib/Fuse_util.c#L50).
The process crashes with `SIGABRT` after `fork` that is called by `fuse_setup` ([here](https://github.com/astrada/ocamlfuse/blob/master/lib/Fuse_util.c#L681)) when it calls `fuse_exited` (because it is [blocking](https://github.com/astrada/ocamlfuse/blob/master/lib/Fuse_bindings.idl#L89)).
The code won't compile on mac m2 anymore. I attach the compile log. Is this platform still supported? [ocamlfuse-25297-5a8a7e.txt](https://github.com/astrada/ocamlfuse/files/15198066/ocamlfuse-25297-5a8a7e.txt)
Hello, I absolutely need for my filesystem to set the [direct_io](http://libfuse.github.io/doxygen/structfuse__file__info.html) boolean in the fuse_file_info struct to true because I stream data from internet and I can't know the size...