我无法在cygwin上构建这个简单的程序:
#include <nan.h>
int main(){}
我收到此错误消息:
$ g++ a.cpp
a.cpp:1:17: fatal error: nan.h: No such file or directory
compilation terminated.
是否可以在cygwin上安装一些东西以获得正确的nan.h?
答案 0 :(得分:2)
nan.h是旧gcc的过时包含。在Cygwin NAN上定义math.h
您不能使用2008年编写的软件
https://boutell.com/fracster-src/doubledouble/doubledouble.html
对于这样的具体问题而言,只是希望而不是开箱即用。
答案 1 :(得分:0)
您需要确定nan.h的位置,并将此路径添加到包含。
How to make g++ search for header files in a specific directory?