免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 7656 | 回复: 5
打印 上一主题 下一主题

请教:关于头文件和库文件的链接 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-10-08 20:41 |只看该作者 |倒序浏览
我的系统是ubuntu 8.04,安装有libxml2。安装后libxml2的所有头文件在/usr/include/libxml2/libxml下,其库文件在/usr/lib下。
我在/home/sinco/myapp文件下编写了一个hello.c,调用了libxml2的库。
hello.c的内容如下:
#include <stdio.h>
#include <libxml/parser.h>
int main( void )
{
    xmlDocPtr doc;           //定义解析文档指针
    xmlNodePtr curNode;      //定义结点指针(你需要它为了在各个结点间移动)
    xmlChar *szKey;          //临时字符串变量
    char *szDocName;
    szDocName = "test.xml";
    doc = xmlReadFile(szDocName,"GB2312",XML_PARSE_RECOVER); //解析文件
    if (NULL == doc)
      //检查解析文档是否成功,如果不成功,libxml将指一个注册的错误并停止。
    {  
       printf("Document not parsed successfully\n";     
       return -1;
    }
    curNode = xmlDocGetRootElement(doc); //确定文档根元素
    if (NULL == curNode)   /*检查确认当前文档中包含内容*/                           
    {
       printf("empty document\n";
       xmlFreeDoc(doc);
       return -1;
    }
    /*在这个例子中,我们需要确认文档是正确的类型。“root”是在这个示例中使用文档的根类型。*/
    if (xmlStrcmp(curNode->name, BAD_CAST "root")
    {
       printf("document of the wrong type, root node != root\n";
       xmlFreeDoc(doc);
       return -1;
    }
        xmlFreeDoc(doc);
    return 0;
}


使用“gcc hello.c -o hello -I/usr/include/libxml2 -L/usr/lib -lxml2”可以成功编译。

出于工程的需要,我将libxml2的头文件目录libxml和静态库文件libxml2.a拷贝到/home/sinco/myapp,和hello.c在一起。然后使用“gcc hello.c -o hello -I./ -L./ -lxml2”命令进行编译,结果出现一堆错误,不能通过编译。改用“gcc hello.c -o hello -I/home/sinco/myapp -L/home/sinco/myapp -lxml2”命令,还是一样的错误提示。

出错信息如下:
.//libxml2.a(xmlIO.o): In function `xmlGzfileOpenW':
(.text+0xc8: undefined reference to `gzopen64'
.//libxml2.a(xmlIO.o): In function `xmlGzfileOpenW':
(.text+0xcd7): undefined reference to `gzdopen'
.//libxml2.a(xmlIO.o): In function `__xmlParserInputBufferCreateFilename':
(.text+0xdd: undefined reference to `gzread'
.//libxml2.a(xmlIO.o): In function `__xmlParserInputBufferCreateFilename':
(.text+0xe0b): undefined reference to `gzrewind'
.//libxml2.a(xmlIO.o): In function `xmlFreeZMemBuff':
(.text+0xf40): undefined reference to `deflateEnd'
.//libxml2.a(xmlIO.o): In function `xmlGzfileOpen_real':
(.text+0x12e1): undefined reference to `gzdopen'
.//libxml2.a(xmlIO.o): In function `xmlGzfileOpen_real':
(.text+0x130: undefined reference to `gzopen64'
.//libxml2.a(xmlIO.o): In function `xmlIOHTTPCloseWrite':
(.text+0x276f): undefined reference to `deflate'
.//libxml2.a(xmlIO.o): In function `xmlIOHTTPWrite':
(.text+0x29fe): undefined reference to `deflate'
.//libxml2.a(xmlIO.o): In function `xmlIOHTTPWrite':
(.text+0x2adc): undefined reference to `crc32'
.//libxml2.a(xmlIO.o): In function `xmlIOHTTPOpenW':
(.text+0x2bf3): undefined reference to `deflateInit2_'
.//libxml2.a(xmlIO.o): In function `xmlIOHTTPOpenW':
(.text+0x2c19): undefined reference to `crc32'
.//libxml2.a(xmlIO.o): In function `xmlGzfileClose':
(.text+0x312d): undefined reference to `gzclose'
.//libxml2.a(xmlIO.o): In function `xmlGzfileWrite':
(.text+0x316c): undefined reference to `gzwrite'
.//libxml2.a(xmlIO.o): In function `xmlGzfileRead':
(.text+0x31bc): undefined reference to `gzread'
.//libxml2.a(xpath.o): In function `xmlXPathStringEvalNumber':
(.text+0x30bf): undefined reference to `pow'
.//libxml2.a(xpath.o): In function `xmlXPathRoundFunction':
(.text+0x621a): undefined reference to `fmod'
.//libxml2.a(xpath.o): In function `xmlXPathCeilingFunction':
(.text+0x636e): undefined reference to `fmod'
.//libxml2.a(xpath.o): In function `xmlXPathFloorFunction':
(.text+0x6457): undefined reference to `fmod'
.//libxml2.a(xpath.o): In function `xmlXPathModValues':
(.text+0x70f5): undefined reference to `fmod'
.//libxml2.a(xpath.o): In function `xmlXPathCastNumberToString':
(.text+0x7dcc): undefined reference to `log10'
.//libxml2.a(xpath.o): In function `xmlXPathCompPathExpr':
(.text+0xb7a5): undefined reference to `pow'
.//libxml2.a(nanohttp.o): In function `xmlNanoHTTPFreeCtxt':
(.text+0xf6b): undefined reference to `inflateEnd'
.//libxml2.a(nanohttp.o): In function `xmlNanoHTTPRead':
(.text+0x1172): undefined reference to `inflate'

.//libxml2.a(nanohttp.o): In function `xmlNanoHTTPMethodRedir':
(.text+0x2060): undefined reference to `inflateInit2_'
.//libxml2.a(xmlschemastypes.o): In function `xmlSchemaDateNormalize':
(.text+0x13e9): undefined reference to `floor'
.//libxml2.a(xmlschemastypes.o): In function `xmlSchemaDateNormalize':
(.text+0x1432): undefined reference to `floor'
.//libxml2.a(xmlschemastypes.o): In function `xmlSchemaDateNormalize':
(.text+0x14d9): undefined reference to `floor'
.//libxml2.a(xmlschemastypes.o): In function `xmlSchemaDateNormalize':
(.text+0x1520): undefined reference to `floor'
.//libxml2.a(xmlschemastypes.o): In function `xmlSchemaDateNormalize':
(.text+0x1567): undefined reference to `floor'
.//libxml2.a(xmlschemastypes.o).text+0x15ae): more undefined references to `floor' follow
collect2: ld 返回 1

请问,是我的编译命令有错吗?还是拷贝的库文件不全?还是其他什么问题?
到底应该怎么改?各位大虾请帮帮忙。

[ 本帖最后由 sinco449 于 2008-10-9 16:00 编辑 ]

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
2 [报告]
发表于 2008-10-08 20:52 |只看该作者
把 gcc 的 -static 参数加上。

BTW, 出现了什么错误?找不到符号定义?

论坛徽章:
0
3 [报告]
发表于 2008-10-09 16:12 |只看该作者
我将其他的两个库文件libxml2.so和libxml2.so.2.6.32也拷贝到工程目录下,可以顺利通过编译。
但由此产生一个疑问:libxml2.so和libxml2.so.2.6.32都是动态库文件,我编译的时候需要调用的是静态库文件,为什么少了那两个动态库文件就编译不过去呢?而且我编译完后,将两个动态库文件都删掉,程序也能正常运行,这说明我编译的时候确实是调用了静态库文件。

另外一个问题,我在windows下安装有虚拟Linux的Cygwin,在该环境下用gcc编译hello.c,此时libxml2.a,libxml2.so,libxml2.so.2.6.32也已经和hello.c放在同一目录下,为什么还是编译失败呢?

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
4 [报告]
发表于 2008-10-09 21:07 |只看该作者
原帖由 sinco449 于 2008-10-9 16:12 发表
我将其他的两个库文件libxml2.so和libxml2.so.2.6.32也拷贝到工程目录下,可以顺利通过编译。
但由此产生一个疑问:libxml2.so和libxml2.so.2.6.32都是动态库文件,我编译的时候需要调用的是静态库文件,为什么少了那两个动态库文件就编译不过去呢?

需要静态库?你有加 -static 么?
而且我编译完后,将两个动态库文件都删掉,程序也能正常运行,这说明我编译的时候确实是调用了静态库文件。

用 file 或 ldd 看看你生成的可执行程序,看看你到底用了啥。

论坛徽章:
0
5 [报告]
发表于 2008-10-15 23:38 |只看该作者
用file查看编译出来的程序,结果是这样:
hello: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.8, dynamically linked (uses shared libs), not stripped
是不是表明我没有把静态库编译进去啊?
编译完后,将两个动态库文件都删掉,程序也能正常运行,这是不是因为编译的时候,使用了动态库链接,并且编译器将动态库拷贝了一份到本机的系统目录下了?

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
6 [报告]
发表于 2008-10-15 23:44 |只看该作者
原帖由 sinco449 于 2008-10-15 23:38 发表
用file查看编译出来的程序,结果是这样:
hello: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.8, dynamically linked (uses shared libs), not stripped
是不是表明我没有把静态库编译进去啊?

当然。
编译完后,将两个动态库文件都删掉,程序也能正常运行,这是不是因为编译的时候,使用了动态库链接,并且编译器将动态库拷贝了一份到本机的系统目录下了?

把 ldd hello 的结果贴上来看看
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP