当前位置: 技术问答>linux和unix
具体的函数实现在库中,我包含了头文件,但是。。。。
来源: 互联网 发布时间:2015-01-18
本文导语: 具体的函数实现在库中,我包含了头文件,但是编译的时候提示: /tmp/cc0nlO8e.o: In function `main': /tmp/cc0nlO8e.o(.text+0x16): undefined reference to `tl_create' collect2: ld returned 1 exit status 这个问题如何处理? 多谢 ...
具体的函数实现在库中,我包含了头文件,但是编译的时候提示:
/tmp/cc0nlO8e.o: In function `main':
/tmp/cc0nlO8e.o(.text+0x16): undefined reference to `tl_create'
collect2: ld returned 1 exit status
这个问题如何处理?
多谢
/tmp/cc0nlO8e.o: In function `main':
/tmp/cc0nlO8e.o(.text+0x16): undefined reference to `tl_create'
collect2: ld returned 1 exit status
这个问题如何处理?
多谢
|
这不是头文件的问题,这是ld在link生成目标代码时找不到相应函数的代码报的错。一般是你没有连接相应的库。