1. Download the Cross compiler compatible with 32-bit system
following are the files in the folder ” arm-linux-gnueabihf bin lib libexec share”
2. follow the procedure as per documents –> then also the error is coming after running the following command
make ARCH=arm CROSS_COMPILE=arm-unknown-linux-gnueabi-distclean
error -1:
2.1 arm-unknown-linux-guneabi is not a command
so i got it right as in 32-bit cross compiler the file this command was acessing is
arm-linux-gnueabihf ,
error -2
still command not found
so i got it right after see the document again ,
the command is
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- distclean
there is space b/w guneabihf- and distclean.
after all above issue resolved the command run successfully .