Tool/software:
I've started going through the custom board port, specifically I'm stuck at building the custom defconfig file, compiler reports the following:
bmcdaniel@system76-pc:~/Projects/Embedded/Build/ti-sdk-am335x-evm-09.01.00.001/board-support/ti-u-boot-2023.04+gitAUTOINC+d74d0993e2-gd74d0993e2$ make ARCH=ARM CROSS_COMPILE=arm-linux-gnueabihf- am335x_hdmi_defconfig
/bin/sh: 1: arm-linux-gnueabihf-gcc: not found
./scripts/gcc-version.sh: 26: arm-linux-gnueabihf-gcc: not found
./scripts/gcc-version.sh: 27: arm-linux-gnueabihf-gcc: not found
./scripts/gcc-version.sh: 29: arm-linux-gnueabihf-gcc: not found
./scripts/gcc-version.sh: 26: arm-linux-gnueabihf-gcc: not found
./scripts/gcc-version.sh: 27: arm-linux-gnueabihf-gcc: not found
./scripts/gcc-version.sh: 29: arm-linux-gnueabihf-gcc: not found
Kconfig:66: syntax error
Kconfig:65: invalid option
./scripts/clang-version.sh: 15: arm-linux-gnueabihf-gcc: not found
make[1]: *** [scripts/kconfig/Makefile:96: am335x_hdmi_defconfig] Error 1
make: *** [Makefile:575: am335x_hdmi_defconfig] Error 2
The following shows the PATH, which includes the location of arm-gnu-none-linux-gnueabihf
bmcdaniel@system76-pc:~/Projects/Embedded/Build/ti-sdk-am335x-evm-09.01.00.001/board-support/ti-u-boot-2023.04+gitAUTOINC+d74d0993e2-gd74d0993e2$ echo $PATH
/home/bmcdaniel/Downloads/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-linux-gnueabihf/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin
I've also tried setting the PATH to use SDK_LOCATION/linux-devkit/sysroots/x86_x64-arago-linux
Neither PATH option works in terms of finding arm-linux-gnueabihf-gcc
Is there something that needs to be done beyond setting the PATH location in order to fine the compiler?
Thanks,
Brian