用于ARM的交叉编译GSL 1.16 [英] Cross-compiling GSL 1.16 for ARM

查看:329
本文介绍了用于ARM的交叉编译GSL 1.16的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图交叉编译用于ARM体系结构(特别是Raspberry Pi)的GNU科学库(gsl,v1.16).我已经使用以下内容进行配置;

I am trying to cross-compile the GNU Scientific Library (gsl, v1.16) for ARM architecture (specifically the Raspberry Pi). I have used the following to configure;

CROSS=armv6j-hardfloat-linux-gnueabi
./configure --host=x86_64-pc-linux-gnu --build=$CROSS --target=$CROSS \
CC=/usr/bin/$CROSS-gcc \
CXX=/usr/bin/$CROSS-g++ \
AR=/usr/bin/$CROSS-ar \
RANLIB=/usr/bin/$CROSS-ranlib \
CFLAGS="-march=armv6 -mfloat-abi=hard -mfpu-vfp"

我收到以下错误消息:

libtool: compile:  /usr/bin/armv6j-hardfloat-linux-gnueabi-gcc 
-DHAVE_CONFIG_H -I. -I.. -I.. -march=armv6 -mfloat-abi=hard -mfpu=vfp 
-MT read.lo -MD -MP -MF .deps/read.Tpo -c read.c -o read.o
In file included from fp.c:10:0:
fp-gnux86.c: In function 'gsl_ieee_set_mode':
fp-gnux86.c:42:15: error: '_FPU_SINGLE' undeclared (first use in this function)
fp-gnux86.c:42:15: note: each undeclared identifier is reported only once for each function it appears in
fp-gnux86.c:45:15: error: '_FPU_DOUBLE' undeclared (first use in this function)
fp-gnux86.c:48:15: error: '_FPU_EXTENDED' undeclared (first use in this function)
fp-gnux86.c:57:15: error: '_FPU_RC_NEAREST' undeclared (first use in this function)
fp-gnux86.c:60:15: error: '_FPU_RC_DOWN' undeclared (first use in this function)
fp-gnux86.c:63:15: error: '_FPU_RC_UP' undeclared (first use in this function)
fp-gnux86.c:66:15: error: '_FPU_RC_ZERO' undeclared (first use in this function)
fp-gnux86.c:76:13: error: '_FPU_MASK_DM' undeclared (first use in this function)
make[2]: *** [fp.lo] Error 1

我正在64位Linux Gentoo系统上进行编译.我使用了Gentoo工具链来设置我的交叉编译器.高度赞赏我在做什么的任何指针.

I am compiling on a 64 bit Linux Gentoo system. I have used the Gentoo toolchain to set-up my cross-compiler. Any pointers to what I am doing wrong are highly appreciated.

提前谢谢!

推荐答案

您的配置不正确,无法交叉编译build =(您的x86 gcc)和host = target =(arm-tool-chain).下面的命令.

Your configuration was not correct ,to Cross-compile build=(your x86 gcc),and host=target=(arm-tool-chain).Try this below command.

./configure --host=armv6j-hardfloat-linux-gnueabi --build=x86_64-pc-linux-gnu --target=armv6j-hardfloat-linux-gnueabi \ CFLAGS="-march=armv6 -mfloat-abi=hard -mfpu-vfp"

./configure --host=armv6j-hardfloat-linux-gnueabi --build=x86_64-pc-linux-gnu --target=armv6j-hardfloat-linux-gnueabi \ CFLAGS="-march=armv6 -mfloat-abi=hard -mfpu-vfp"

这篇关于用于ARM的交叉编译GSL 1.16的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆