Visual Studio (VS) Code编译Fortran
大家好,我试着用Visual Studio (VS) Code编译Fortan程序。首先,我在VS Code里安装了’Modern Fortran‘,'Fortran Breakpoint Support'和'fortran'的extension。然后添加了下面两个文件。
一个文件是launch.json,内容如下:
"version": "0.0.1",
"configurations": [
{
"name": "Fortran Launch (GDB)",
"type": "cppdbg",
"request": "launch",
"targetArchitecture": "x86",
"program": "${workspaceRoot}\\${fileBasenameNoExtension}.exe",
"miDebuggerPath": "D:/Application_Softwares/MinGW-W64/mingw64/bin/gdb.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"externalConsole": true,
"preLaunchTask": "gfortran"
},
{
"name": "Intel Debug Attach",
"type": "cppvsdbg",
"request": "attach",
"processId": "${command:pickProcess}"
}
] }\
另一个文件是tasks.json,内容如下:
{
"version": "2.0.0",
"command": "gfortran",
"args": [
"-g",
"${file}",
"-o",
"${workspaceRoot}\\${fileBasenameNoExtension}.exe"
]
}
然后,我运行一个测试程序,内容如下:
PROGRAM HELLO
IMPLICIT NONE
OPEN (UNIT=3, FILE='hello.dat', STATUS='UNKNOWN')
WRITE (UNIT=3, FMT=*) 'Hello World!'
CLOSE (UNIT=3)
STOP
END PROGRAM HELLO
但VS Code却显示下面的错误信息:
You don't have an extension for debugging 'Fortran-Morden'. Should we find a 'Fortran-Morden' extension in the Marketplace?
相应的截图如下。
我已经安装了’Modern Fortran‘ extension,为什么还会提示说我没有安装呢?请问要如何解决这个问题呢?
谢谢大家。
只要安装 Modern Fortran 插件和 pip install fortls 就行,然后稍微阅读以下 Modern Fortran 插件的使用介绍。基本就是可用的,对了记得 GDB 是安装的。 zoziha 发表于 2023-10-5 23:11
只要安装 Modern Fortran 插件和 pip install fortls 就行,然后稍微阅读以下 Modern Fortran 插件的使用介 ...
谢谢你的回复。
我已经安装了Modern Fortran和GDB,并且也修改了launch.json文件了的相关路径。截图如下。
但运行Fortran程序,还是报错说没有找到'Fortran-Modern'。
能麻烦你再给些建议和解决办法吗?
盼复,谢谢。 图中的第2、3个插件需要卸载,首先他们已经被遗弃,其次他们会干扰Modern Fortran的功能。
你的GDB路径在环境路径时,只需要填写“miDebuggerPath: gdb”。
页:
[1]