arm-eabi-gcc: command not found [How to Solve]

Scene

Busybox compiling arm architecture on Ubuntu

Operation

    1. install the cross compiler tool</ ol>
sudo apt-get install gcc-arm-linux-gnueabi
      1. modify the configuration file and use the cross compile tool </ OL>
make defconfig
vim .config
# Modify
...
-# CONFIG_STATIC is not set
+CONFIG_STATIC=y
....
-CONFIG_CROSS_COMPILER_PREFIX=""
+CONFIG_CROSS_COMPILER_PREFIX="arm-linux-gnueabi-"
...
        1. compiling busybox of arm architecture
make android_defconfig

reference resources

https://github.com/yongce/AndroidDevNotes/blob/master/notes/tools/0006-busybox-android.asc

Read More: