The libseccomp package provides an easy to use and platform independent interface to the Linux kernel's syscall filtering mechanism.
Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.
下载地址(HTTP):https://github.com/seccomp/libseccomp/releases/download/v2.6.1/libseccomp-2.6.1.tar.gz
MD5 校验和:33a3a5d4c526a739515ff4dc53cdc192
大小:644 KB
预计所需磁盘空间:13 MB(含测试)
预计构建时间:小于 0.1 SBU(测试将额外增加 1.7 SBU)
Which-2.25 (needed for tests), Valgrind-3.27.1, cython-3.2.8 (for python bindings), and LCOV
Install libseccomp by running the following commands:
./configure --prefix=/usr --disable-static && make
To test the results, issue: make check.
Now, as the root user:
make install
--disable-static: This
switch prevents installation of static versions of the libraries.
--enable-python: this switch is needed
to build python bindings if cython-3.2.8
is installed. The option --disable-static must not be given if this option
is used. And you must run sed 's/env
python/&3/' -i tests/regression if this option
is used and you want to run the test suite.