我喜欢在iMac上使用编辑器Visual Studio Code。我知道如何执行python脚本。我也想使用VScode来运行Fortran程序。我使用gfortran。我已经加载了扩展程序Modern Fortran,语法高亮显示正常。我的文件扩展名为.f90。
我的问题是我不知道如何编译和执行我的代码。在Visual Studio Code中有什么方法可以做到这一点。
答案 0 :(得分:3)
我正在使用Windows,但是在these instructions for C/C++ package之后解决了类似的问题。
您需要在工作目录中创建目录.vscode
,即.f90
文件所在的目录,并在.vscode
目录中创建以下两个文件:< / p>
tasks.json
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "gfortran gfortran.exe build active file",
"type": "shell",
"command": "C:\\TDM-GCC-64\\bin\\gfortran.exe",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}\\a.exe"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
] }
launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Iniciar",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/a.exe",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "C:\\TDM-GCC-64\\bin\\gdb.exe",
"setupCommands": [
{
"description": "Habilitar a reformatação automática para gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
] }
文件tasks.json
允许您使用选项 Terminal -> Run Build Task…生成a.exe
文件。文件launch.json
使您可以在编译过程中生成的a.exe
文件上使用调试器[F5]。
您必须注意PATH
变量。我的gfortran.exe
编译器位于C:\TDM-GCC-64\bin
目录中。在Linux / FreeBSD / Unix安装中使用它时,您可能必须更改它。