vscode task 좋구나..
{ "version": "1.0.0", "tasks": [ { "label": "Release Build", "type": "shell", "command": "./build.sh", "args": [ ], "group": { "kind": "build", "isDefault": true }, "problemMatcher": "$gcc" }, ] } 크로스컴파일 환경이 독특하다보니 build.sh 에 스크립트로 만들어놓고 쓰고 있는데, vscode 로 정착하면서 방법이 없을까 찾아보던중 임시나마 task 로 쓸수 있는 방법을 찾아냄. ctrl+shift+b 로 build.sh 호출하고 ctrl+` 로 닫아버리면 되니까 좋구나! 이제 에러 위치를 클릭으로 띄울수 있게만 할 수 있으면 더 편해질듯!