如何在 Windows 上使用 libxml2?

How to use libxml2 on windows?

提问人:ragarac3 提问时间:8/7/2023 更新时间:8/7/2023 访问量:58

问:

我想在我的项目中使用这个库:https://github.com/terminalstatic/go-xsd-validate 我尝试在 Windows 上使用 debug is vscode。现在我收到此错误:

Build Error: go build -o ...\service\__debug_bin.exe -gcflags all=-N -l .\main.go
# pkg-config --cflags  -- libxml-2.0
Package libxml-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libxml-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libxml-2.0' found
pkg-config: exit status 1 (exit status 2)

上面的链接提供了安装 libxml2 for linux 的说明:

curl -L ftp://xmlsoft.org/libxml2/LATEST_LIBXML2 -o ./LIBXML2_LATEST.tar.gz
tar -xf ./LIBXML2_LATEST.tar.gz
cd ./libxml2*
./configure --prefix=/usr  --enable-static --with-threads --with-history
make
sudo make install

但这对我没有帮助,我花了很多时间,什么也没做。 我将不胜感激。

Windows Go libxml2

评论


答: 暂无答案