我正在尝试在 Windows 7 上使用 MinGW编译该程序。在我第一次尝试时,它给了我这个错误:
>gcc -o ries.exe ries.c -lm
ries.c:1582:21: fatal error: stdafx.h: No such file or directory
compilation terminated.
我用谷歌搜索了一下,发现我应该删除该# include "stdafx.h"
行,我这样做了。
现在它给了我这个:
C:\Users\XXXXXX\AppData\Local\Temp\cczlkqve.o:ries.c:(.text+0xb9): undefined reference to `asprintf'
collect2: ld returned 1 exit status
谷歌现在沉默了……接下来我该怎么办?
提前致谢。