我是靠谱客的博主 简单大地,最近开发中收集的这篇文章主要介绍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 reference to `__ctype_tolower' __ctype_b所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部