0

我正在尝试编译gerbv 2.6,以便我可以将它包含在我的 Heroku bin 目录中,但我似乎无法弄清楚。我尝试了以下各种组合:

CFLAGS='-static  -static-libgcc  -static-libstdc++' ./configure
./configure --enable-static
./configure --enable-static=yes --enable-shared=no

但跑步后make我总是得到:

src/gerbv: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=0x401fe83e54660a42e80e4c529fde85799728cdcb, not stripped

我的想法不多了。有人有吗?

4

1 回答 1

0

这很可能是因为系统库或 gcc 运行时是链接共享的。使用“ldd”实用程序查看动态链接的内容。

ldd 源代码/gerbv

共享运行时可能是您想要的,但如果您希望运行时是静态的,那么如果您安装了静态运行时,可能会有一个选项。

于 2012-04-20T20:21:58.493 回答