如何在 Windows 环境中使用 Xerces?
我已经下载了 Xerces 的源代码,并尝试在 Greenhills 项目中使用它。我收到以下错误:
无法打开源文件“xercesc/util/Xerces_autoconf_config.hpp”
错误命中的代码注释为:
// If the next line generates an error then you haven't run ./configure
#include <xercesc/util/Xerces_autoconf_config.hpp>
如何在 Windows 环境中运行“./configure”?
I have downloaded the source for Xerces and am trying to use it in a Greenhills project. I get the following error:
could not open source file "xercesc/util/Xerces_autoconf_config.hpp"
The code where the error hit is commented as:
// If the next line generates an error then you haven't run ./configure
#include <xercesc/util/Xerces_autoconf_config.hpp>
How do I run "./configure" in a windows environment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要在 Windows 上使用 VSC++ 构建 Xerces,您可以使用提供的 Visual Studio 项目文件,如下所述:
http://xerces.apache.org/xerces-c/build-3 .html#Windows
To build Xerces with VSC++ on Windows you can use the supplied Visual Studio project files as described here:
http://xerces.apache.org/xerces-c/build-3.html#Windows
你不能,你必须安装一些类似 UNIX 的环境,比如 Cygwin。
you can't you will have to install some unix like environment like Cygwin.
您可以更改该行以包含“Xerces_autoconf_config.msvc.hpp”而不是“Xerces_autoconf_config.hpp”。标头包含 Windows 的配置宏。
You can change the line to include "Xerces_autoconf_config.msvc.hpp" instead of "Xerces_autoconf_config.hpp". The header carries the configuration macros for Windows.