用于OS X的Sublime Text 3 C ++构建系统

时间:2013-08-25 12:22:49

标签: c++ macos sublimetext3

我在OS X(Mountain Lion)中使用Sublime Text 3。我正在尝试在Sublime Text 3中构建并运行一个简单的hello world应用程序。它工作正常,但是当我接受任何输入时,它不会提示任何控制台输入。它只是直接运行并显示输出而不需要任何输入。

这是我的构建资料:

{
    "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}'"]
        }
    ]
}

示例程序:

#include <iostream>

using namespace std;

int main() {
    int number;

    cout << "Enter number: ";
    cin >> number;
    cout << "You entered: " << number;

    return 0;
}

1 个答案:

答案 0 :(得分:0)

根据this thread,ST根本不允许进行交互式构建。

修改

查看此主题here以获取解决方法。