Cygwin中的make问题

Cygwin中的make问题,cygwin,Cygwin,我一直在使用cygwin构建gcc。但是,在我尝试配置gcc之后,以如下所示的方式: $ C:/cygwin64/home/myusername/gcc-9.3.0/configure --program-suffix=-4.9.2 --enable-languages=c,c++ --disable-bootstrap --disable-shared 然后像这样编译它: $ make -j4 我收到以下错误消息: make: *** No targets specified and no

我一直在使用cygwin构建gcc。但是,在我尝试配置gcc之后,以如下所示的方式:

$ C:/cygwin64/home/myusername/gcc-9.3.0/configure --program-suffix=-4.9.2 --enable-languages=c,c++ --disable-bootstrap --disable-shared
然后像这样编译它:

$ make -j4
我收到以下错误消息:

make: *** No targets specified and no makefile found.  Stop.

我对cygwin没有太多的经验,所以任何帮助都将不胜感激

需要旧编译器版本的任何具体原因?请将cd刻录到
C:/cygwin64/home/myusername/gcc-9.3.0/
,然后使用
/configure
。然后make可以从该目录中获取Makefile。非常感谢!需要旧编译器版本的任何具体原因?请将cd刻录到
C:/cygwin64/home/myusername/gcc-9.3.0/
,然后使用
/configure
。然后make可以从该目录中获取Makefile。非常感谢!