美文网首页Visual Studio Code
Visual Studio Code 搭建 Fortran 调试

Visual Studio Code 搭建 Fortran 调试

作者: ekibun | 来源:发表于2018-04-01 11:24 被阅读142次

    Visual Studio Code作为微软出品的轻量级编辑器,用来写写算法和有限元作业是再合适不过的了

    安装 MINGW-W64

    在windows下安装完成后需要设置环境变量

    C:\mingw64\bin
    

    安装 Visual Studio Code 扩展

    查看>扩展,搜索安装以下扩展

    Gimly81.fortran ms-vscode.cpptools ekibun.fortranbreaker

    配置 Fortran 调试环境

    1. 文件>打开文件夹,选择项目路径
    2. 新建.vscode文件夹
    3. 创建launch.json启动配置文件
    {
        "version": "0.0.1",
        "configurations": [
            {
                "name": "Fortran Launch (GDB)",
                "type": "cppdbg",
                "request": "launch",
                "targetArchitecture": "x86",
                "program": "${workspaceRoot}\\${fileBasenameNoExtension}.exe",
                "miDebuggerPath": "gdb.exe",
                "args": [],
                "stopAtEntry": false,
                "cwd": "${workspaceRoot}",
                "externalConsole": true,
                "preLaunchTask": "gfortran"
            }
        ]
    }
    
    1. 创建tasks.json配置文件
    {
        "version": "0.0.1",
        "command": "gfortran",
        "args": [
            "-g",
            "${file}",
            "-o",
            "${workspaceRoot}\\${fileBasenameNoExtension}.exe"
        ]
    }
    
    1. 在项目根目录新建.for文件,至此文件目录如下
    文件目录
    1. 编写代码,调试>启动调试
    调试

    以上

    相关文章

      网友评论

      • 何嘉銘:你好,请问我的
        {
        "version": "2.0.0",
        "configurations": [

        "type": "cppdbg",
        "request": "launch",
        这两段代码没有显示高亮,请问如何解决

      本文标题:Visual Studio Code 搭建 Fortran 调试

      本文链接:https://www.haomeiwen.com/subject/qwqocftx.html