我正试图根据G.1节的教程在Cygwin上构建Bochs。当我尝试输入命令./configure --enable-gdb-stub
时,我得到以下输出:
checking build system type... i686-pc-cygwin
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking if you are configuring for another platform... no
checking for standard CFLAGS on this platform... -mno-cygwin -DWIN32
checking for gcc... gcc
checking for C compiler default output file name... configure: error: C compiler cannot create executables
See `config.log' for more details.
我的config.log
文件的违规行是:
configure:2132: checking for C compiler default output file name
configure:2135: gcc -mno-cygwin -DWIN32 -mno-cygwin -DWIN32 conftest.c >&5
gcc: error: unrecognized command line option '-mno-cygwin'
gcc: error: unrecognized command line option '-mno-cygwin'
configure:2138: $? = 1
configure: failed program was:
/* confdefs.h */
...
我是操作系统工作的新手,这个问题让我困了好几个小时。我不明白为什么-mno-cygwin
甚至被传递为gcc
的参数。有什么可能的解决方案吗?
在文档中显示
它在GNU/Linux上进行了最广泛的测试,特别是在Debian和Ubuntu发行版以及Solaris上。它不是为在任何形式的Windows下安装而设计的。
在Windows中使用cygwin是我看到的问题。试试Ubuntu Linux。