Installing/compiling in Cygwin/MinGW - How to set the include “path”? (symbolic link?)

前端 未结 4 1237
梦如初夏
梦如初夏 2021-01-12 19:33

I have been trying to install/compile C libraries in Windows 7 using Cygwin and MinGW. However, I am getting errors like these during make:

sys/         


        
4条回答
  •  既然无缘
    2021-01-12 20:16

    you should check your makefile, the CFLAGS/CPPFLAGS has -DWIN32 -D_WINDOWS for windows. in other words, you should never access the sys/times code branch on windows.

提交回复
热议问题