On Fri, Nov 9, 2018 at 1:16 PM Chris Packham <[email protected]> wrote:
>
>
>
> On Fri, 9 Nov 2018, 2:08 AM Sarah Wicker <[email protected] wrote:
>>
>> Hi Chris, Ian,
>>
>> i tested with downloading and installing the package through the terminal, 
>> changing the CROSS_COMPILE value and redoing the make, it didn#t work.
>>
>> So i tried using the first link https://www.kernel.org/pub/tools/crosstool/ 
>> and later  https://toolchains.bootlin.com/ but still the same result.
>>
>>
>>
>> Each time have added the path tot he binary files to my main path (export 
>> PATH=‘pwd‘$PATH) and changing the CROSS_COMPILER value according the package 
>> i wanted to use but the error stayed the same.
>>
>>
>>
>> In the end I used the package: armv5-eabi--glibc--stable-2018.02-2.tar.gz2 
>> since the error messages is referring to armv5. Unpacked it into another 
>> folder, linked the path tot he binary files and export 
>> CROSS_COMPILE=arm-buildroot-linux-gnueabi-
>>
>> But i still got the same error… Do you have another idea?
>>
>> Thank yuo a lot for your help,
>
>
> I think to get a better idea of what's going on you should post a complete 
> console log starting from a new shell setting PATH & CROSS_COMPILE up to the 
> build error.
>
> Also just as a test to check your compiler run ${CROSS_COMPILE}cc --version

If it helps here's a recipe that worked for me

wget 
https://www.kernel.org/pub/tools/crosstool/files/bin/x86_64/7.3.0/x86_64-gcc-7.3.0-nolibc_arm-linux-gnueabi.tar.xz
tar -xf ~/Downloads/x86_64-gcc-7.3.0-nolibc_arm-linux-gnueabi.tar.xz
git clone https://github.com/Xilinx/u-boot-xlnx.git
cd u-boot-xlnx
export PATH="$HOME/gcc-7.3.0-nolibc/arm-linux-gnueabi/bin:$PATH"
export CROSS_COMPILE=arm-linux-gnueabi-
make zynq_zed_defconfig
make
_______________________________________________
U-Boot mailing list
[email protected]
https://lists.denx.de/listinfo/u-boot

Reply via email to