Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Install the required packages
- sudo apt install python-is-python2
- sudo apt install ninja-build
- # Set up depot_tools
- git clone https://chromium.googlesource.com/chromium/tools/depot_tools
- export PATH=/home/user/depot_tools:$PATH
- # Setup ANGLE for linux arm64
- git clone https://android.googlesource.com/platform/external/angle
- cd angle
- ./build/install-build-deps.sh
- git checkout e867a62fc822d0bd152ab6ae34cd012eb4408324
- python2 scripts/bootstrap.py
- gclient sync
- ./build/linux/sysroot_scripts/install-sysroot.py --arch=arm64
- # Let's build ANGLE
- gn args out/Release
- ########
- target_os = "linux"
- target_cpu = "arm64"
- is_debug = false
- is_component_build = false
- ########
- gn gen out/Release
- ninja -C out/Release -j8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement