【发布时间】:2020-01-16 01:01:33
【问题描述】:
我正在尝试在我的 Windows 10 笔记本电脑上安装 Fortran。
我按照this 的分步教程进行操作。
在最后一步,我被提示运行以下代码:
program testfortran
implicit none
print*,'Hello world '
end program testfortran
但是Resolve Missing Native Build Tools 窗口弹出:似乎Make command 字段为空。
更具体地说,此窗口底部有一条消息Tolls marked with * are required。共有三个这样的字段:
(1)C++ compiler 归属于消息C:\MinGW\bin\g++.exe
(2)Fortran compiler 归属于消息C:\MinGW\bin\gfortran.exe
(3) Make command 为空(带有红色 *)
我应该在Make command 字段中写什么?
附:我想要的只是在我的 Windows 10 笔记本电脑上安装 Fortran 90/95。我尝试通过分步教程来做到这一点,因为安装软件并不是我擅长的。所以任何替代方案都会受到欢迎。
【问题讨论】:
标签: netbeans fortran mingw gfortran fortran90