1

我正在尝试 MEX(编译)链接为http://www.wfg.csse.uwa.edu.au/hypervolume/上的“Metric WFG implementation”的实现

使用 Microsoft Visual C++ 2010 编译器执行此操作时,我收到有关 sys/time.h 和 stdbool.h 的错误。

我使用以下内容创建了自己的 stdbool.h:

#pragma once

#define false   0
#define true    1

#define bool int

并检查 sys/time.h 到 time.h。

但是我现在遇到了以下问题:

wfg.c(37) : fatal error C1083: Cannot open include file: 'sys/resource.h': No such file or directory 

我尝试删除 sys/ 但它给出了相同的错误。

有人知道解决方案吗?

谢谢

4

1 回答 1

5

sys/resource.h是posix头文件,VC2010当然找不到。如果您坚持使用 Windows,也许您应该安装 cygwin 来完成这项工作。

于 2013-09-07T08:00:09.667 回答