FAQ:Compiling 04
From Net-SNMP Wiki
What about '-lbz2' or '-lselinux' errors?
This is the same basic problem - the relevant development RPMs
have not been installed. You should either install them
(bzip2-devel
and libselinux-devel
respectively), or create
any missing symbolic links by hand:
(cd /usr/lib ; ls -s libbz2* libselinux*) ln -s libbz2.so.1 /usr/lib/libbz2.so ln -s libselinux.so.1 /usr/lib/libselinux.so
FAQ:Compiling
- How do I control the environment used to compile the software?
- How do I control the environment used to compile the software under Windows?
- Why does the compilation complain about missing libraries?
- How can I reduce the memory footprint?
- How can I reduce the installation footprint or speed up compilation?
- How can I compile the project for use on an embedded system?
- How can I compile the project to use static linking?
- Why does 'make test' skip various tests?
- Why does 'make test' complain about a pid file?