mirror of
https://github.com/libyal/libexe
synced 2026-06-08 15:29:55 +00:00
21 lines
508 B
Plaintext
21 lines
508 B
Plaintext
Libexe 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
|
|
|