MinGW gfortran编译错误:“无法识别的选项'-plugin'”

时间:2019-02-23 21:25:23

标签: windows compiler-errors fortran mingw gfortran

我试图在Windows机器上启动并运行Fortran编译器,但由于某种原因我无法使其正常运行。我已经安装了最新的MinGW的“基本设置”部分,并尝试编译一个简单的“ Hello world”程序,但收到以下错误消息:

C:\MinGW>gfortran -o executable Hello.f90
c:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: unrecognized option '-plugin'
c:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: use the --help option for usage information
collect2.exe: error: ld returned 1 exit status

以下是供参考的源文件:

Hello.f90

program Hello
    write (*,*) 'Hello, world!'
end program Hello

有人知道这个问题可能是什么吗?

编辑:     版本信息

C:\Users\Angel>c:/mingw/bin/ld.exe --version
GNU ld version 2.17.50 20060824
Copyright 2005 Free Software Foundation, Inc.
This program is free software; you may redistribute it under the terms of
the GNU General Public License.  This program has absolutely no warranty.

1 个答案:

答案 0 :(得分:1)

对于您的ld前端,您的链接器(binutils gfortran v2.17.50)太旧了, (v8.2.0)。 -plugin传递给gfortran中的ld的{​​{1}}选项 仅从ld v2.21.51开始支持链接样板。

这意味着您没有连贯的gfortran工具链。 Binutils v2.17.50已于2007年6月发布; GCC 8.2(2018年7月)。 可能您已经在过时的MinGW版本之上安装了gfortran 8.2。

建议您彻底删除MinGW安装并更换 与current mingw-w64 release一起使用, 您可以download at Sourceforge