1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Libpff supports two types of static compilation
* static library
* static excutables
Creating a static library
Use the following command to tell configure you want to make a static library:
./configure --enable-shared=no
Creating static executables
Make sure you have a static version of:
* glibc
Some distrubions provide separate packages for static versions of libraries
Use the following command to tell configure you want to make a static executables:
./configure --enable-static-executables=yes
|