如何在 Ubuntu 20.04 上编译 BCC?

How to compile BCC on Ubuntu 20.04?

我正在尝试在 Ubuntu 20.04 上编译 BCC BPF 框架 (https://github.com/iovisor/bcc)。我遵循了 18.04 的所有说明,当然;他们失败了。

我遇到的问题似乎与 clang 相关

In file included from /usr/local/include/clang/Frontend/CompilerInstance.h:15,
                 from /home/matt/code/bpf/bcc/src/cc/frontends/clang/loader.cc:43:
/usr/local/include/clang/Frontend/CompilerInvocation.h:157:15: note: candidate: ‘static bool clang::CompilerInvocation::CreateFromArgs(clang::CompilerInvocation&, llvm::ArrayRef<const char*>, clang::DiagnosticsEngine&)’
  157 |   static bool CreateFromArgs(CompilerInvocation &Res,
      |               ^~~~~~~~~~~~~~
/usr/local/include/clang/Frontend/CompilerInvocation.h:157:15: note:   candidate expects 3 arguments, 4 provided
make[2]: *** [src/cc/frontends/clang/CMakeFiles/clang_frontend.dir/build.make:63: src/cc/frontends/clang/CMakeFiles/clang_frontend.dir/loader.cc.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:982: src/cc/frontends/clang/CMakeFiles/clang_frontend.dir/all] Error 2
make: *** [Makefile:141: all] Error 2

如何让 BCC 在 Ubuntu 20.04 上编译?

从 BCC v0.14.0-a28337a 开始,我必须使用 llvm-7 而不是最新的 LLVM。此外,-DPYTHON_CMD=python3 或安装 Python2(或 python 命令)是必需的,因为默认情况下不再安装 Python2。 https://github.com/iovisor/bcc/blob/master/INSTALL.md#ubuntu---source 中列出的其他依赖项也是必需的。

我可以在我的 Ubuntu 20.04 VM 上构建它。

cmake -Bbuild -DPYTHON_CMD=python3 -DCMAKE_PREFIX_PATH=/usr/lib/llvm-7
make -Cbuild -j$(nproc)

我遇到了同样的问题。对我有用的是使用不同的分支,实际上是最新的标签,您可以在项目的 github 网站上查看:https://github.com/iovisor/bcc.git

我做了一个 git checkout v0.24.0 # for example 它起作用了。

提示: 可能主分支可能不是最佳选择,因为它可能由于最近的提交而被破坏,对上一个稳定版本的更改已经在许多其他不同的项目中为我工作。