c++ - Cross compile GNU Scientific Library for ARM Zynq ( baremetal ) -
i'm trying use gnu scientific library in baremetal application in zynq. tried cross compile library below:
first configure project,
./configure --host=arm-xilinx-eabi cc="/home/wizard/programs/xilinx_2015/sdk/2015.4/gnu/arm/lin/bin/arm-xilinx-eabi-gcc" cflags="-o2 -g -wall -fpic"
then run make
. after outputs following error occured:
libtool: link: cannot build libtool library `libutils.la' non-libtool objects on host: strdup.o
i have following questions:
- is possible compile gsl baremetal app in zynq? since libray said has no dependencies?
- how can fix error above?
Comments
Post a Comment