我正在尝试 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/ 但它给出了相同的错误。
有人知道解决方案吗?
谢谢