急:error LNK2001: unresolved external symbol _rindex

daisy_cheung 2008-05-22 11:21:31
我将一些C程序从linux移植到windows,windows下缺少头文件strings.h,我就将Linux底下的该文件及相关文件拷贝过来,在使用visual studio 2005编译的时候出现类似这样的错误:

error LNK2001: unresolved external symbol _rindex

还有
Warning 12 warning C4996: 'sprintf' was declared deprecated e:\users\ddzhang\grapes\windows\tools\tools\src\gen_args.c 46
Warning 13 warning C4996: 'fopen' was declared deprecated e:\users\ddzhang\grapes\windows\tools\tools\src\gen_args.c 48
Warning 14 warning C4996: 'strcpy' was declared deprecated e:\users\ddzhang\grapes\windows\tools\tools\src\gen_args.c 51

会是什么原因呢?

strings.h的文件内容为:
/* Copyright (C) 1991,92,96,97,99,2000,2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.

The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */

#ifndef _STRINGS_H
#define _STRINGS_H 1

/* We don't need and should not read this file if <string.h> was already
read. The one exception being that if __USE_BSD isn't defined, then
these aren't defined in string.h, so we need to define them here. */
#if !defined _STRING_H || !defined __USE_BSD

# include <features.h>
# define __need_size_t
# include <stddef.h>

__BEGIN_DECLS

/* Compare N bytes of S1 and S2 (same as memcmp). */
extern int bcmp (__const void *__s1, __const void *__s2, size_t __n)
__THROW __attribute_pure__;

/* Copy N bytes of SRC to DEST (like memmove, but args reversed). */
extern void bcopy (__const void *__src, void *__dest, size_t __n) __THROW;

/* Set N bytes of S to 0. */
extern void bzero (void *__s, size_t __n) __THROW;

/* Return the position of the first bit set in I, or 0 if none are set.
The least-significant bit is position 1, the most-significant 32. */
extern int ffs (int __i) __THROW __attribute__ ((const));

/* Find the first occurrence of C in S (same as strchr). */
extern char *index (__const char *__s, int __c) __THROW __attribute_pure__;

/* Find the last occurrence of C in S (same as strrchr). */
extern char *rindex (__const char *__s, int __c) __THROW __attribute_pure__;

/* Compare S1 and S2, ignoring case. */
extern int strcasecmp (__const char *__s1, __const char *__s2)
__THROW __attribute_pure__;

/* Compare no more than N chars of S1 and S2, ignoring case. */
extern int strncasecmp (__const char *__s1, __const char *__s2, size_t __n)
__THROW __attribute_pure__;

__END_DECLS

#endif /* string.h */

#endif /* strings.h */

...全文
148 9 打赏 收藏 转发到动态 举报
写回复
用AI写文章
9 条回复
切换为时间正序
请发表友善的回复…
发表回复
daisy_cheung 2008-05-26
  • 打赏
  • 举报
回复
太复杂了,问题还是没能解决,能不能有更多的请教,加我的msn:zhangd727@hotmail.com
daisy_cheung 2008-05-22
  • 打赏
  • 举报
回复
复制过来也是借着一种侥幸的心里。我第一次做移植,而且时间比较赶,能不能更详细些。
悠悠长风 2008-05-22
  • 打赏
  • 举报
回复
这种头文件怎么能直接复制呢??这可是两个不同的平台啊

移植程序决不能这样做的。
daisy_cheung 2008-05-22
  • 打赏
  • 举报
回复
在那个linux程序里面Include了string.h和strings.h两个,我对比了一下linux下的string.h和vc的string.h是不同的,那我得改写两个文件呀?另外strings.h还include了其他的一些linux下的.h文件,这写文件都得重写吗?
lionc650 2008-05-22
  • 打赏
  • 举报
回复
只拷头文件当然没用了,还得有库啊,而且vc.net也有string的库啊,可以把相关的string处理修改下就行了
daisy_cheung 2008-05-22
  • 打赏
  • 举报
回复
明白了,谢谢。解决问题去了!
lionc650 2008-05-22
  • 打赏
  • 举报
回复
我的意思是如果你按照linux的方式重写string类的话,就不需要该里面的代码了,只需要在前面用typedef下就行了。不过感觉这个应该比较麻烦
daisy_cheung 2008-05-22
  • 打赏
  • 举报
回复
现在也是计划通过预编译方式来移植,先找出linux下strings.h所涉及函数的windows下的对应函数,然后再用预条件编译来做,有些晕。
你这里说的“对string进行重载,使其成员和linux下的保持一致”是什么意思?^_^
lionc650 2008-05-22
  • 打赏
  • 举报
回复
我认为想解决问题可以通过 重新将linux下的string的调用,包括成员函数等重新替换成window下的,如果window中的string类没有的话就要自己实现或者改代码。
不知道能不能通过typedef或者预编译方式来移植,或者对string进行重载,使其成员和linux下的保持一致,这样应该可以少做工作,不过可行度未知。

23,121

社区成员

发帖
与我相关
我的任务
社区描述
Linux/Unix社区 应用程序开发区
社区管理员
  • 应用程序开发区社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧