在没有 zlib-devel 的共享主机上编译 git

发布于 2024-09-30 14:46:17 字数 430 浏览 7 评论 0原文

我正在尝试在共享 RHEL5 主机上编译并安装 git,但没有安装 zlib-devel 库。我已经从 RPM 中提取了这些库,但无法弄清楚如何让 make 识别它们。我收到以下消息:

cache.h:17:18:错误:zlib.h:没有这样的文件或目录

已尝试以下操作:

CFLAGS='-I$HOME/root/usr/include -L$HOME/root/usr/lib64' make

但这似乎不起作用。我也尝试过

C_INCLUDE_PATH='$HOME/root/usr/include

再次设置,但没有成功。有什么想法吗?不用说,zlib.h 位于 $HOME/root/usr/include 中。

I'm trying to compile and install git on a shared RHEL5 host, but have no zlib-devel libraries installed. I've extracted the libraries from the RPM, but can't work out how to get make to recognise them. I get the following message:

cache.h:17:18: error: zlib.h: No such file or directory

Have tried the following:

CFLAGS='-I$HOME/root/usr/include -L$HOME/root/usr/lib64' make

but this doesn't seem to work. I've also tried setting

C_INCLUDE_PATH='$HOME/root/usr/include

Again, no luck. Any ideas? Needless to say, zlib.h is in $HOME/root/usr/include.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尽揽少女心 2024-10-07 14:46:17

由于我在自己的 Linux 计算机上尝试过此操作而进行了更新

您可以使用CPPFLAGS来指定其他包含目录。

CPPFLAGS="-I $HOME/root/usr/include" ./configure 

另外,如果您尝试制作 64 位版本,则无需指定链接到具有 64 位库的位置来实现此目的。相反,您可以在 CFLAGS 中传递 -m64 编译器标志,如下所示:

CFLAGS="-m64" CPPFLAGS="-I $HOME/root/usr/include" ./configure

如果您必须指定其他非标准库目录,请使用 LDFLAGS代码>.

Updated as I tried this on my own Linux machine

You can use CPPFLAGS to specify your additional include directories.

CPPFLAGS="-I $HOME/root/usr/include" ./configure 

Also, if you are trying to make a 64-bit version, you do not specify linking to a location with 64-bit libraries to make it happen. Instead, you pass the -m64 compiler flag in your CFLAGS, like this:

CFLAGS="-m64" CPPFLAGS="-I $HOME/root/usr/include" ./configure

And if you have to specify additional non-standard library directories, use LDFLAGS.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文