2

您好,我在 Sublime Text 3 中的 C++ 构建系统有点混乱,现在我无法运行任何程序。这是我的构建系统:

{
  "cmd": "g++ \"${file}\" -o \"${file_path}/${file_base_name}\"",
  "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
  "working_dir": "${file_path}",
  "selector": "source.c, source.c++",
  "variants":
  [
    {
      "name": "Run",
      "cmd": "g++ \"${file}\" -o \"${file_path}/${file_base_name}\" && open -a Terminal -e \"${file_path}/${file_base_name}\""
    }
  ]
}

谢谢你的帮助,尼诺

4

1 回答 1

2

唯一错误的想法似乎是您编写command. 新文档中没有说明,但在文档中您可以阅读

cmd: 包含要运行的命令及其所需参数的数组。

所以,这个构建系统应该可以解决问题(这是默认提供的):

{
    "cmd": ["g++", "${file}", "-o", "${file_path}/${file_base_name}"],
    "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
    "working_dir": "${file_path}",
    "selector": "source.c, source.c++",

    "variants":
    [
        {
            "name": "Run",
            "cmd": ["bash", "-c", "g++ '${file}' -o '${file_path}/${file_base_name}' && '${file_path}/${file_base_name}'"]
        }
    ]
}

请注意,以前有人报告C++.sublime-build过默认提供的有问题(在我的 OS X 上一切正常)。如果是这种情况,请考虑 salek对此答案的回复。

于 2013-10-07T16:52:13.907 回答