libsigsegv is a library for handling page faults in user mode. A page fault occurs when a program tries to access to a region of memory that is currently not available. Catching and handling a page fault is a useful technique for implementing pageable virtual memory, memory-mapped access to persistent databases, generational garbage collectors, stack overflow handlers, and distributed shared memory.
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://ftpmirror.gnu.org/libsigsegv/libsigsegv-2.15.tar.gz
MD5 校验和:c2885785b3e5d1c94b1adb22b3002ccc
大小:484 KB
预计所需磁盘空间:3.7 MB(含测试)
预计构建时间:小于 0.1 SBU(含测试)
Install libsigsegv by running the following commands:
./configure --prefix=/usr \
--enable-shared \
--disable-static &&
make
To test the results, issue: make check.
Now, as the root user:
make install
--enable-shared: This
switch ensures that shared libraries are compiled.
--disable-static: This
switch prevents installation of static versions of the libraries.