make/vscode/template-tasks.jsonc
author adinn
Fri, 29 Nov 2019 15:37:13 +0000
changeset 59326 851a389fc54d
parent 55166 2ae056696b15
permissions -rw-r--r--
8232828: AArch64: compiler/c2/aarch64/TestVolatilesG1.java fails after JDK-8225776 Reviewed-by: aph

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Update compilation database (compile_commands.json)",
            "type": "shell",
            "options": {
                "env": {
                    "PATH": "{{PATH}}"
                },
                "cwd": "{{WORKSPACE_ROOT}}"
            },
            "command": "{{MAKE}} CONF_NAME={{CONF_NAME}} compile-commands",
            "problemMatcher": []
        },
        {
            "label": "Make 'hotspot'",
            "type": "shell",
            "options": {
                "env": {
                    "PATH": "{{PATH}}"
                },
                "cwd": "{{WORKSPACE_ROOT}}"
            },
            "command": "{{MAKE}} CONF_NAME={{CONF_NAME}} hotspot",
            "problemMatcher": ["$gcc"]
        },
        {
            "label": "Make 'exploded-image'",
            "type": "shell",
            "options": {
                "env": {
                    "PATH": "{{PATH}}"
                },
                "cwd": "{{WORKSPACE_ROOT}}"
            },
            "command": "{{MAKE}} CONF_NAME={{CONF_NAME}} exploded-image",
            "problemMatcher": ["$gcc"]
        },
        {
            "label": "Make 'jdk'",
            "type": "shell",
            "options": {
                "env": {
                    "PATH": "{{PATH}}"
                },
                "cwd": "{{WORKSPACE_ROOT}}"
            },
            "command": "{{MAKE}} CONF_NAME={{CONF_NAME}} jdk",
            "problemMatcher": ["$gcc"]
        }
    ]
}