ubuntu 搭建安卓系统编译环境

ubuntu 搭建安卓系统编译环境

  • 通用的环境软件 AP、CP
    • 对于20.04以上的版本:
    • 未完待续,20.04 CP端存在其它问题

通用的环境软件 AP、CP

sudo apt-get update

sudo apt-get install git-core -y
sudo apt-get install gnupg -y
sudo apt-get install flex -y
sudo apt-get install bison -y
sudo apt-get install gperf -y
sudo apt-get install build-essential -y
sudo apt-get install zip -y
sudo apt-get install curl -y
sudo apt-get install zlib1g-dev -y
sudo apt-get install gcc-multilib -y
sudo apt-get install libc6-dev-i386 -y
sudo apt-get install lib32ncurses5-dev -y
sudo apt-get install x11proto-core-dev -y
sudo apt-get install libx11-dev -y
sudo apt-get install lib32z-dev -y
sudo apt-get install ccache -y
sudo apt-get install libgl1-mesa-dev -y
sudo apt-get install libxml2-utils -y
sudo apt-get install xsltproc -y
sudo apt-get install unzip -y
sudo apt-get install tofrodos -y
sudo apt-get install python-markdown -y
sudo apt-get install lib32readline6-dev -y
sudo apt-get install openssl -y
sudo apt-get install libssl-dev -y
sudo apt-get install libxml-simple-perl -y
sudo apt-get install openjdk-8-jdk -y
sudo apt-get install adb -y

sudo dpkg-reconfigure dash 
# selete no

注意: sudo dpkg-reconfigure dash 后会弹出窗口,要选择no

ubuntu 搭建安卓系统编译环境_第1张图片

对于20.04以上的版本:

#for Ubuntu 20.04 and up
sudo apt-get install libncurses5 -y
sudo ln -s /usr/lib/x86_64-linux-gnu/libffi.so.7 /usr/lib/x86_64-linux-gnu/libffi.so.6

很多模块不做向下兼容的,也可能是我源码里有些需要版本选择没有做好

gcc 和 g++需要降级,9.4默认把warning当error,或者改Makefile,或者降级,8即可

sudo apt-get install gcc-8 g++-8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 1024
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 1024
#1024为优先级
sudo update-alternatives --config gcc
#选gcc-8前面的编号
sudo update-alternatives --config g++

未完待续,20.04 CP端存在其它问题

  1. GenFds.py…
    error 7000: Fail to call minigzip, no output file was generated
    尚未解决
  2. clang-7: error: unknown argument ‘-mv5’, did you mean ‘-mv55’?
    虽然但是,包还是生成了,估计有坑

你可能感兴趣的:(ubuntu,linux,android)