我在我的linux系统中使用交叉编译器的路径。现在我想在我的task.json
VS代码中使用该别名。
所以我写这个片段:
{
"version": "2.0.0",
"tasks": [
{
"label": "Test",
"type": "shell",
"linux": {
"command": "My_gcc"
},
}
]
}
但我得到了这个
Error 127: Command "My_gcc" not found
为什么会出现此错误?
答案 0 :(得分:0)
只需按以下步骤更改您的任务:
"command": "source ~/.bash_profile && My_gcc"
这将使它在尝试使用别名之前将〜/ .bash_profile来源范围。