如何静态链接使用./configure的Linux软件?

时间:2013-11-19 10:25:17

标签: linux gcc configure static-linking omnios

我想编译NRPE静态,所以我可以将已编译的二进制文件复制到OmniOS服务器,我不希望在其上安装gcc。我更喜欢从存储库安装带有SSl支持的NRPE,但是这样不存在,所以我想自己编译它。但是./configure脚本不包含接缝的静态选项

~/nrpe-2.15# ./configure --help | grep static
~/nrpe-2.15# ./configure --help | grep share
  --datadir=DIR          read-only architecture-independent data [PREFIX/share]
  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]

问题

如何编译静态使用configure的程序?

2 个答案:

答案 0 :(得分:21)

试试这个:

./configure LDFLAGS="-static"

答案 1 :(得分:7)

对于来自Google的用户,我发现如果您的构建中有libtool部分,则需要:

  1. ./configure CFLAGS="-static" ....
  2. make LDFLAGS="-all-static"

您可以看到-all-staticlibtool --help --mode=link