gpt4 book ai didi

c - 如何修补 libxml2,以便在使用前缀时使用 ICU 支持进行编译?

转载 作者:太空狗 更新时间:2023-10-29 15:07:35 25 4
gpt4 key购买 nike

我正在尝试修复 libxml2 中的错误。使用 --prefix=/Server/software 时,我无法使用 --with-icu 进行编译。我已经提交了 bug report here ,但我需要让它编译以解决在使用 intl 支持编译 PHP 时的冲突。我怀疑这是 Makefile 的问题。我对 Makefile 的经验是有限的。期望的结果是提出一个可以提交到链接错误报告的补丁。

--with-icu 标志导致定义LIBXML_ICU_ENABLED。当包含来自 icu 和 libxml2(具体来说,两者都使用 UChar)的 header 时,包含的代码应该可以解决冲突。使用 --enable-intl 激活的 PHP 插件 intl 需要 icu。 PHP 需要 libxml2 来实现 DOM/XML 功能。

有两个问题。

首先,这个配置:

./configure --prefix=/Server/software --enable-shared --enable-static --with-icu

结果:

配置:错误:找不到 libicu 配置程序 icu-config

发生这种情况是因为 configure.in 中的这段代码:

WITH_ICU=0
if test "$with_icu" != "yes" ; then
echo Disabling ICU support
else
ICU_CONFIG=icu-config
if ${ICU_CONFIG} --cflags >/dev/null 2>&1
then
ICU_LIBS=`icu-config --ldflags`
LDFLAGS="$LDFLAGS $ICU_LIBS"
WITH_ICU=1
echo Enabling ICU support
else
AC_MSG_ERROR([libicu config program icu-config not found])
fi
fi

特别是 ICUCONFIG=icu-config 不遵守 --prefix=/Server/software。我可以通过执行 export PATH=/Server/software/bin:$PATH 来解决这个问题。

这“修复”了 ./configure 问题。

其次,当我运行 make 时出现错误,最相关的是:

./include/libxml/encoding.h:31:26: 错误:unicode/ucnv.h: 没有这样的文件或
目录

unicode/uncv.h 文件位于/Server/software/include/unicode/uncv.h。我怀疑编译器正在本地目录和我的/usr 目录中查找此文件。

这是错误所指的内容:

#ifdef LIBXML_ICU_ENABLED
#include <unicode/ucnv.h>
#endif

显然这是使用 --with-icu--prefix=/Server/software 时的路径问题。如果没有 --with-icu,它可以正常编译,但是在使用 icu 和 libxml2 编译 PHP 时,这是解决定义 UChar 冲突所必需的。

icu-config --cflags 的结果是:

-O2 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long

这正在通过管道传输到/dev/null。

icu-config --ldflags 的结果是:

-lpthread -lm -L/Server/software/lib -licui18n -licuuc -licudata -lpthread -lm

需要更改哪些内容才能解决这些问题?

最佳答案

所以,看看它在哪里使用 icu-config。它应该做类似 icu-config --cppflags 的事情,它应该设置 -I/Server/Software/include 或类似的。您可以通过将 CPPFLAGS 设置为自己包含此类参数来解决此问题。

您能否在错误之前包含实际的编译命令行?

听起来像是 libxml 中的错误 - 它应该在 ${PREFIX}/bin 中搜索 icu-config。

此外,ICU 现在导出 pkg-config 文件,这是查找此类项目的更标准方式。


WITH_ICU 之前尝试这个:

    ICU_CPPFLAGS=`icu-config --cppflags`
CPPFLAGS="$CPPFLAGS $ICU_CPPFLAGS"

更新 我要引用 Luke 的最后回复。很高兴它能正常工作。

I solved the linker problems, so now it all works. For this question using libxml 2.7.7 was the solution. It seems OX X 10.6 ships with 2.7.8. So for it to work you have to compile libxml2 yourself with 2.7.7. The linker problems are solved by adding LIBS="-lresolv -lstdc++" just before PHP's ./configure. If installing to a non-standard location you also need to compile ICU with --enable-rpath. I've accepted your answer. Feel free to update it with this information :). – Luke 17 hours ago

关于c - 如何修补 libxml2,以便在使用前缀时使用 ICU 支持进行编译?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7987779/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com