Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在尝试使用libxml2解析 xml 文档,并且我正在使用Dev c++进行编译。我不知道如何使用libxml2/parser.h?我收到错误
libxml2/parser.h
no such file or directory
(我正在使用窗户)
libxml2 包通常不会安装到标准路径中(在 unix fe /usr/include 下),因此您必须告诉编译器/IDE 您安装包含和库的位置(fe /home/include)。在现代 IDE 中,这可以通过将库拖放到项目中来实现。在其他环境中,您必须调整您的 makefile 或系统(环境变量)以将包含路径指向您的 libxml2 目录包含路径(-I 与 gcc)和库路径(-L)。在您的 IDE 中,您可能有一个选项/项目设置来执行此操作。