在没有 zlib-devel 的共享主机上编译 git
我正在尝试在共享 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于我在自己的 Linux 计算机上尝试过此操作而进行了更新
您可以使用
CPPFLAGS
来指定其他包含目录。另外,如果您尝试制作 64 位版本,则无需指定链接到具有 64 位库的位置来实现此目的。相反,您可以在
CFLAGS
中传递-m64
编译器标志,如下所示:如果您必须指定其他非标准库目录,请使用
LDFLAGS
代码>.Updated as I tried this on my own Linux machine
You can use
CPPFLAGS
to specify your additional include directories.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 yourCFLAGS
, like this:And if you have to specify additional non-standard library directories, use
LDFLAGS
.