Open main menu

DAVE Developer's Wiki β

Changes

Catching cross-toolchain output
[[File:BoraLite-VSC4.png|thumb|center|600px|Using VSC as the default editor for PVT32]]
===Catching cross-toolchain output===
This example shows how to build the
 
<syntaxhighlight lang="text">
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Cross build",
"type": "shell",
"command": "SET PATH=e:\\Xilinx\\SDK\\2019.1\bin\\;e:\\Xilinx\\SDK\\2019.1\\gnu\\aarch32\\nt\\gcc-arm-none-eabi\\bin\\;c:\\cygwin64\\bin\\;%PATH% && make",
"options": {
"cwd": "${workspaceRoot}/Debug"
},
"problemMatcher": "$gcc",
"presentation": {
"reveal": "always",
"panel": "new"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
</syntaxhighlight>
4,650
edits