我想很多人都在使用或习惯使用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}'"] } ] }@H_403_5@我发现当cmd数组包含任何替换表达式(如${file}或$file)时,build不会启动.否则它会启动.
它与编译器无关.当我尝试“cmd”:[“notify-osd”,“$file”]时,它不起作用;但是使用“cmd”:[“notify-osd”,“sometexthere”]它有效.
手工编译工作正确.
我的节目:
#include <iostream> int main() { std::cout << "Hello World"; }@H_403_5@我使用Ubuntu 12.04,32bit. Sublime Editor的版本:2.0.1.
如果不是我可以提出这个问题的地方,请告诉我什么是正确的.