在 AIX5.2 上构建 PHP 时出错
在 AIX5.2
上构建 PHP
时收到以下错误消息:
"checking whether libxml build works... no",
实际上我已经安装了 libxml2
和 libxml2-devel,
可能是什么问题?
谢谢你!
(我检查了 config.log,消息的最后一部分显示:
configure:21603: 检查 libxml build 是否有效 配置:21630:gcc -o conftest -O -xs -xstrconst -zlazyload -L/opt/freeware/lib -L/opt/freeware/lib conftest.c
-lxml2 -lz -liconv -lm 1>&5
gcc:无法识别的选项“-zlazyload” gcc:无法识别语言 strconst gcc:无法识别语言 strconst ld:0711-715 错误:无法处理文件conftest.c。 该文件必须是目标文件、导入文件或存档。 Collect2: ld 返回 8 退出状态 配置:失败的程序是:
第21619行“配置”
包括“confdefs.h”
char xmlInitParser();
int main() {
xmlInitParser();
return 0;
}
) 有人可以告诉我发生了什么事吗? 谢谢 !
I get the following error message while buliding PHP
on AIX5.2
:
"checking whether libxml build works... no",
and actually I have installed libxml2
and libxml2-devel
,
What could be the problem?
Thank you!
(I check the config.log, and the last part of the message says:
configure:21603: checking whether libxml build works
configure:21630: gcc -o conftest -O -xs -xstrconst -zlazyload -L/opt/freeware/lib -L/opt/freeware/lib conftest.c
-lxml2 -lz -liconv -lm 1>&5
gcc: unrecognized option '-zlazyload'
gcc: language strconst not recognized
gcc: language strconst not recognized
ld: 0711-715 ERROR: File conftest.c cannot be processed.
The file must be an object file, an import file, or an archive.
collect2: ld returned 8 exit status
configure: failed program was:
line 21619 "configure"
include "confdefs.h"
char xmlInitParser();
int main() {
xmlInitParser();
return 0;
}
)
could some one tell me what happened?
thank you !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查您的
config.log
中的具体错误。 configure 只是尝试使用 libxml 编译测试程序。如果无法编译,则认为 libxml 不起作用。在 ./configure 期间,它应该输出找到 libxml 的安装目录的位置 - 这说明了什么?
在我的 AIX 5.2 机器上,我安装了这两个:
它们位于 /usr/opt/freeware/lib/libxml2.a 中,但 /usr/lib 中有一个符号链接指向该库(包含的操作类似)
所以configure可以找到它们。 RPM 包应该已经创建了符号链接。也许你的缺失了,所以找不到 libxml 的路径?
您可以构建自己的(后续)版本的 libxml,并将其安装在某个位置(通常是 /usr/local)。无论如何,预构建的 RPM 已经相当过时了。
您还可以使用
--with-libxml-dir=
直接指向安装目录。--with-libxml-dir=/opt/freeware/
应该可以。Check your
config.log
for the specific error. configure just tries to compile a test program using libxml. If it doesn't compile, it considers that libxml doesn't work.During ./configure, it should output where its finding libxml's install directory - what does that say?
On my AIX 5.2 box, I have these two installed:
And they live in /usr/opt/freeware/lib/libxml2.a, but there is a symlink in /usr/lib pointing back to the library (includes are done similar)
So configure can find them. The RPM package should have made the symlinks. Maybe yours are missing so it can't find the path to libxml?
You could build your own (later) version of libxml, and install that somewhere (usually /usr/local). The prebuilt RPM is pretty outdated anyways.
You can also use
--with-libxml-dir=<path>
to point to the install dir directly.--with-libxml-dir=/opt/freeware/
should work.