git clone git://git.denx.de/u-boot.git
building it using commandmake ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_boneblack_defconfig
This might be a very silly issue, since i ma newbie to linux porting
Thanks,
Pradeep
--
You received this message because you are subscribed to the Google Groups "SysPlay's Inside Linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to inside_linux...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You have to check for arm-linux-gnueabihf-gcc --version
RegardsPassion: http://sysplay.in (Playing with Systems)
wget -c https://releases.linaro.org/components/toolchain/binaries/6.4-2017.11/arm-linux-gnueabihf/gcc-linaro-6.4.1-2017.11-x86_64_arm-linux-gnueabihf.tar.xztar xf gcc-linaro-6.4.1-2017.11-x86_64_arm-linux-gnueabihf.tar.xzexport CC=`pwd`/gcc-linaro-6.4.1-2017.11-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-
but while confirming the installation of gcc-6-arm cross compiler using$ ${CC}gcc --version
getting error as {CC}gcc command not found
seems like there is some issue in export CC=`pwd`/gcc-linaro-6.4.1-2017.11-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-
Regards,Pradeep
Just do: echo ${CC}. What does it print?
Passion: http://sysplay.in (Playing with Systems)