close has not been declared

http://www.openwrt.org.cn/bbs/forum.php?mod=viewthread&tid=12675

参考trunk的源码和此问题"https://dev.openwrt.org.cn/ticket/45"

修改 ./build_dir/host/mklibs/src/mklibs-readelf/elf.cpp

1.2. #include "elf_data.hpp" 3.4. #include <stdexcept> 5.6. #include <fcntl.h> 7. #include <sys/mman.h> 8. #include <sys/stat.h>

复制代码
下面添加一行"#include <unistd.h>"成:

1.2. #include "elf_data.hpp" 3.4. #include <stdexcept> 5.6. #include <fcntl.h> 7. #include <sys/mman.h> 8. #include <sys/stat.h> 9. #include <unistd.h>

复制代码
解决问题。
加载评论