从源构建runc时出错

时间:2016-01-09 07:52:35

标签: go containers runc

我在从源代码安装runc时遇到问题:

root@ubuntu:/usr/local/go/bin/src/github.com/opencontainers/runc# make
go build -tags "seccomp" -o runc .
# github.com/seccomp/libseccomp-golang
Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/seccomp.go:25:22: fatal error: seccomp.h: No such file or directory
 // #include <seccomp.h>
                      ^
compilation terminated.
make: *** [all] Error 2

1 个答案:

答案 0 :(得分:3)

看起来像issue 226

  

这不是问题   您需要libseccomp-dev个库才能构建具有seccomp支持的runc。你仍然可以通过go build flags禁用它。

PR 220提及:

  

为了启用seccomp支持,您需要在平台上安装libseccomp   如果您不支持使用seccomp支持构建runc,则可以在运行BUILDTAGS=""时添加make