我想你们中的许多人正在使用或曾经使用过 Sublime Text 2 编辑器。我有一个奇怪的错误:无法构建 C++ 程序。
我的 C++.sublime-build
:
{
"cmd": ["g++", "${file}", "-o", "${file_path}/${file_base_name}"],
"working_dir": "${file_path}",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"selector": "source.c, source.c++",
"variants":
[
{
"name": "Run",
"cmd": ["bash", "-c", "g++ '${file}' -o '${file_path}/${file_base_name}' && '${file_path}/${file_base_name}'"]
}
]
}
我发现当数组包含像or这样的cmd
任何替换表达式时,构建不会开始。否则它开始。${file}
$file
编译器无关紧要。当我尝试过时"cmd": ["notify-osd", "$file"]
,它没有用;但"cmd": ["notify-osd", "sometexthere"]
它奏效了。
手工编译是正确的。
我的程序:
#include <iostream>
int main() {
std::cout << "Hello World";
}
我使用 Ubuntu 12.04,32 位。Sublime 编辑器版本:2.0.1。
如果这不是我可以问这个问题的地方,请告诉我什么是正确的。