Scene
Busybox compiling arm architecture on Ubuntu
Operation
-
- install the cross compiler tool</ ol>
sudo apt-get install gcc-arm-linux-gnueabi
-
-
- 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-"
...
-
-
-
- compiling busybox of arm architecture
-
-
make android_defconfig
reference resources
https://github.com/yongce/AndroidDevNotes/blob/master/notes/tools/0006-busybox-android.asc