使用mingw构建gdb-Insight时出错

时间:2012-07-30 13:19:19

标签: mingw insight

我正在尝试使用mingw构建Insight,但是我收到以下错误:

make[4]: *** [pe-i386.lo] Error 1
make[4]: Leaving directory '/c/Users/pshek/Downloads/insight-6.8/bfd'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory '/c/Users/pshek/Downloads/insight-6.8/bfd'
make[2]: *** [all] Error 2
make[2]: Leaving directory '/c/Users/pshek/Downloads/insight-6.8/bfd'
make[1]: [all-bfd] Error 2
make[1]: Leaving directory '/c/Users/pshek/Downloads/insight-6.8/bfd
make: *** [all] Error 2

这就是我所做的:

打开mingw shell

cd到源文件夹

./配置

我在最新版本的Insight和稍微旧版本上尝试了这个,但我两次都收到类似的错误消息。

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。 您将能够使用

进行编译
./configure --disable-werror

而不是

./configure

如果您已经配置,即使您尝试使用必要的标记也无法正常工作。只需再次下载源代码并使用正确的标志进行配置。

来源:http://ubuntuforums.org/showthread.php?t=1876116

答案 1 :(得分:-1)