当前位置: 技术问答>linux和unix
请帮忙看看连接错误,急救!!!
来源: 互联网 发布时间:2015-10-06
本文导语: 在连接的时候用到了别人的一个库libtomcrypt.a,该库是正在商用的,本身没什么问题,报告错误是: /usr/lib/gcc/i386-redhat-linux/3.4.3/../../../libtomcrypt.a(mpi.o)(.text+0x5529):In function `mp_read_radix': : undefined reference to `__ctype_toupper' ...
在连接的时候用到了别人的一个库libtomcrypt.a,该库是正在商用的,本身没什么问题,报告错误是:
/usr/lib/gcc/i386-redhat-linux/3.4.3/../../../libtomcrypt.a(mpi.o)(.text+0x5529):In function `mp_read_radix':
: undefined reference to `__ctype_toupper'
怎么解决啊?我的GCC版本是gcc-3.4.3-9.EL4,
libtomcrypt.a是2.95.4 20011002 (Debian prerelease)
这个问题咋解决?
/usr/lib/gcc/i386-redhat-linux/3.4.3/../../../libtomcrypt.a(mpi.o)(.text+0x5529):In function `mp_read_radix':
: undefined reference to `__ctype_toupper'
怎么解决啊?我的GCC版本是gcc-3.4.3-9.EL4,
libtomcrypt.a是2.95.4 20011002 (Debian prerelease)
这个问题咋解决?
|
(.text+0x5529):In function `mp_read_radix'
找到函数mp_read_radix的定义处(有源码的话)
修改参数是__ctype_toupper的函数
找到函数mp_read_radix的定义处(有源码的话)
修改参数是__ctype_toupper的函数