my $dir = ($ENV{PERL_INLINE_DIRECTORY} //
die('BUG: PERL_INLINE_DIRECTORY unset')) . '/f3';
my $F3_NS = 'lei';
-my $bin = "$dir/${F3_NS}fs.fuse";
+my $bin = "$dir/${F3_NS}.fuse";
my ($srcpfx) = (__FILE__ =~ m!\A(.+/)[^/]+\z!);
my @srcs = map { $srcpfx.$_ } qw(f3.h);
my $xflags = ($ENV{CFLAGS} // '-Wall -ggdb3 -O0') . ' ' .
- ($ENV{LDFLAGS} // '-Wl,-O1 -Wl,--compress-debug-sections=zlib');
+ ($ENV{LDFLAGS} // '-Wl,-O1 -Wl,--compress-debug-sections=zlib') .
+ qq{ -DF3_NS='"$F3_NS"'};
sub xflags_chg () {
open my $fh, '<', "$dir/XFLAGS" or return 1;
*/
/* another project may use this: */
-#define F3_NS "lei"
+#ifndef F3_NS
+#error F3_NS not defined
+#endif
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
};
static const struct fuse_opt f3_opt[] = {
- /* *-fd and root-vid are internal knobs */
+ /* *-fd and root-vid are internal knobs used by perl mount wrapper */
{ "reader-fd=%d", offsetof(struct f3_data, rfd) },
{ "worker-fd=%d", offsetof(struct f3_data, wfd) },
{ "root-vid=%"PRId64, offsetof(struct f3_data, vroot.vid) },