Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/c/72.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C 将-D\u文件\u偏移量\u位-64添加到编译标志时出错_C_Linux_Ubuntu 14.04_Fuse - Fatal编程技术网

C 将-D\u文件\u偏移量\u位-64添加到编译标志时出错

C 将-D\u文件\u偏移量\u位-64添加到编译标志时出错,c,linux,ubuntu-14.04,fuse,C,Linux,Ubuntu 14.04,Fuse,当我编译一个包含fuse.h头文件的hello.c程序时,它会显示这个错误。-将-D\u文件\u偏移量\u位-64添加到编译标志时出错。在访问fuse_common.h时。 在此之前,我已经从fuse.sourceforge.net安装了fuse文件系统,并从该fuse-2.9.3运行了一个示例。有人知道如何修复这个错误吗。我在oracle的VM上使用Ubuntu14.04 LTS-i386 32位。尝试修改Makefile以添加一行: CFLAGS += -D_FILE_OFFSET_BITS

当我编译一个包含fuse.h头文件的hello.c程序时,它会显示这个错误。-将-D\u文件\u偏移量\u位-64添加到编译标志时出错。在访问fuse_common.h时。 在此之前,我已经从fuse.sourceforge.net安装了fuse文件系统,并从该fuse-2.9.3运行了一个示例。有人知道如何修复这个错误吗。我在oracle的VM上使用Ubuntu14.04 LTS-i386 32位。

尝试修改Makefile以添加一行:

CFLAGS += -D_FILE_OFFSET_BITS=64
或者,在包含fuse.h之前,可以在hello.c中添加一行:

尝试修改Makefile以添加一行:

CFLAGS += -D_FILE_OFFSET_BITS=64
或者,在包含fuse.h之前,可以在hello.c中添加一行: