我是靠谱客的博主 简单大地,这篇文章主要介绍Hisi海思交叉编译iperf3,提示undefined reference to `__ctype_tolower' __ctype_b,现在分享给大家,希望可以做个参考。

配置方法:

 ./configure --host=arm-hisiv200-linux CFLAGS=-static --enable-static LDFLAGS=-static --disable-shared

出现提示后,在main.c中定义

static int run(struct iperf_test *test);

#include <ctype.h>
__const unsigned short int *__ctype_b;
__const __int32_t *__ctype_tolower;
__const __int32_t *__ctype_toupper;
void ctSetup()
{
__ctype_b = *(__ctype_b_loc());
__ctype_toupper = *(__ctype_toupper_loc());
__ctype_tolower = *(__ctype_tolower_loc());
}

在main()函数中执行一下:

main(int argc, char **argv)
{
    struct iperf_test *test;
   
    ctSetup();


然后还有2,3个文件编译时候会提示__ctype错误。哪个提示错误在哪个文件中做如下定义:

extern __const unsigned short int *__ctype_b;
extern __const __int32_t *__ctype_tolower;
extern __const __int32_t *__ctype_toupper;


最后

以上就是简单大地最近收集整理的关于Hisi海思交叉编译iperf3,提示undefined reference to `__ctype_tolower' __ctype_b的全部内容,更多相关Hisi海思交叉编译iperf3,提示undefined内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(127)

评论列表共有 0 条评论

立即
投稿
返回
顶部