NodeJS - Cannot open include file: 'unistd.h':

狂风中的少年 提交于 2019-12-06 15:29:26
SteveLacy

unistd.h is a UNIX header file, not found by default on windows.

Either replace unistd.h with io.h for almost the same coverage, or use the GNU windows port found here

Related: Is there a replacement for unistd.h for Windows (Visual C)?

Edit: I just compiled the module with #include <unistd.h> commented out successfully in file src/talib.cpp line 31

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!