为Android NDK编译Boost库的子集

时间:2011-11-25 23:53:11

标签: c++ boost android-ndk boost-spirit

我的Android应用程序需要一个boost库,所以我设法编译了大部分。但是当我尝试编译文件系统组件时,我收到以下错误消息。

gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-android4.4.3/release/link-static/runtime-link-static/threading-multi/v2/src/v2_operations.o
libs\filesystem\v2\src\v2_operations.cpp:62:30: 
     error: sys/statvfs.h: No such file or directory

据我所知,这是因为Android NDK的gcc没有与statvfs.h相关的部分。

我想知道的是,文件系统组件是否需要boost-spirit?当然,如果您知道如何解决该错误,那将是完美的。

1 个答案:

答案 0 :(得分:3)

解决编译错误

我没有尝试使用Boost Filesystem,但它可能会起作用:

#ifndef ANDROID
  #include <sys/statvfs.h>
#else
  #include <sys/vfs.h>
  #define statvfs statfs
#endif

如果Boost Spirit需要Boost Filesystem

根据boost manual,它是一个仅限标题的模块。 :)

为什么android没有statvfs?

根据它的manpage,statvfs用于POSIX,但Linux(和Android基于Linux)不支持它。以下引用适用:

  

有些系统只有<sys/vfs.h>,其他系统也有<sys/statfs.h>,前者包括后者。所以似乎包括前者是最好的选择。


  

Solaris,Irix和POSIX有一个系统调用statvfs(2),它返回一个包含无符号长f_fsid的struct statvfs(在<sys/statvfs.h>中定义)。 Linux,SunOS,HP-UX,4.4BSD都有一个系统调用statfs(),它返回一个包含fsid_t f_fsid的struct statfs(在<sys/vfs.h>中定义),其中fsid_t定义为struct {int val 2 ; }。 FreeBSD也是如此,除了它使用包含文件<sys/mount.h>