Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- // https://go.microsoft.com/fwlink/?LinkId=733558
- "version": "2.0.0",
- "tasks": [
- {
- "label": "Bitbake",
- "type": "shell",
- // Need to pipe to cat so it doesn't use ANSI codes which upset the
- // problem matcher.
- "command": ". oe-init-build-env && bitbake ${input:target} | cat",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "runOptions": {
- "reevaluateOnRerun": false
- },
- // Add WARNING matcher when the output has a full path in
- "problemMatcher": {
- "severity": "error",
- "fileLocation": "absolute",
- "pattern": {
- "kind": "file",
- "regexp": "^ERROR: Task \\((.+):.+\\) failed with exit code '\\d+\\'$",
- "file": 1,
- }
- }
- }
- ],
- "inputs": [
- {
- "id": "target",
- "type": "promptString",
- "description": "What targets do you want to build"
- }
- ]
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement