当前位置: 技术问答>linux和unix
编译失败,请教为什么找不到xmlReadFile函数
来源: 互联网 发布时间:2016-05-22
本文导语: 我在parser.h中找过 确实是有xmlReadFile 函数的 但是 我编译的时候 ,就会报错 说找不到这个函数 ,其它的 xmlDocGetRootElement(doc); xmlFreeDoc(doc); 这些函数都说找不到! 编辑器就报错 /tmp/ccWbd7Qy.o(.text+0xdc) undefined reference...
我在parser.h中找过 确实是有xmlReadFile 函数的 但是 我编译的时候 ,就会报错 说找不到这个函数 ,其它的 xmlDocGetRootElement(doc); xmlFreeDoc(doc); 这些函数都说找不到!
编辑器就报错 /tmp/ccWbd7Qy.o(.text+0xdc) undefined reference to 'xmlReadFile'
我的程序是网上的 #include
#include
#include
static void
print_element_names(xmlNode * a_node)
{
xmlNode *cur_node = NULL;
for (cur_node = a_node; cur_node; cur_node = cur_node->next) {
if (cur_node->type == XML_ELEMENT_NODE) {
printf("node type: Element, name: %sn", cur_node->name);
}
print_element_names(cur_node->children);
}
}
int
main(int argc, char **argv)
{
xmlDoc *doc = NULL;
xmlNode *root_element = NULL;
if (argc != 2)
return(1);
//LIBXML_TEST_VERSION
/*parse the file and get the DOM */
doc = xmlReadFile(argv[1], NULL, 0);
if (doc == NULL) {
printf("error: could not parse file %sn", argv[1]);
}
/*Get the root element node */
root_element = xmlDocGetRootElement(doc);
print_element_names(root_element);
/*free the document */
xmlFreeDoc(doc);
return 0;
}
我编译的时候是这样的 gcc -I/usr/include/libxml2/ xml.c - o xml
大侠们 帮我看看阿 !!!!
|
加上 -lxml 看看