我想使用 Buck 从 Nuclide 构建和运行 C++ 程序。
问题是我不知道如何在 Nuclide 中设置一个简单的 Buck 配置文件来构建然后运行 ​​.cpp 文件。

所以有人有建议吗?

最佳答案

使用 Buck 构建 hello-world 程序非常简单。在您的项目目录中创建以下文件:
.buckconfig
(可以为空)
main.cpp :

#include <iostream>

int main() {
  std::cout << "Hello, world. " << std::endl;
  return 0;
}
BUCK
cxx_binary(
  name = 'hello-world',
  srcs = [
    'main.cpp'
  ],
)

如果您从项目文件夹中打开 Atom,Nuclide 应该会为您找到所有内容。

要检查每个都有效,请运行:
buck run //:hello-world

这应该足以开始;可以找到更多信息 on the Buck website

关于c++ - Nuclide C++ 简单降压配置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41557770/

10-13 08:38