Last active
October 22, 2019 14:46
-
-
Save larshb/76d5e7d6de80a5e47ee51628868d1a1a to your computer and use it in GitHub Desktop.
VS Code problems matcher for Synplify
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Synplify compile", | |
"type": "shell", | |
"command": "<compile-script which outputs .srr-logfile>", | |
"group": { | |
"kind": "build", | |
"isDefault": true | |
}, | |
"problemMatcher": { | |
"fileLocation": ["absolute"], | |
"severity": "error", | |
"source": "format", | |
"pattern": { | |
"regexp": "^@(.)[^\"]+\"([^\"]+)\":([\\d]+):([\\d]+)[^\\|]+\\|(.*)$", | |
"severity": 1, | |
"file": 2, | |
"line": 3, | |
"column": 4, | |
"message": 5, | |
} | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment