gitextract_3jb9armb/ ├── .github/ │ ├── bin/ │ │ └── garca │ ├── build │ └── workflows/ │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_zh_cn.md └── src/ ├── !zygote.sh ├── gearlock/ │ └── gearboot/ │ ├── boot-comp.sh │ └── post-fs-data.sh ├── install.sh ├── system/ │ ├── bin/ │ │ ├── arm/ │ │ │ └── linker │ │ ├── arm64/ │ │ │ └── linker64 │ │ ├── houdini │ │ └── houdini64 │ ├── lib/ │ │ └── arm/ │ │ ├── cpuinfo │ │ ├── cpuinfo.pure32 │ │ ├── libclcore.bc │ │ ├── libclcore_debug.bc │ │ ├── libclcore_debug_g.bc │ │ ├── libclcore_g.bc │ │ └── libclcore_neon.bc │ └── lib64/ │ └── arm64/ │ ├── cpuinfo │ ├── libclcore.bc │ ├── libclcore_debug.bc │ ├── libclcore_debug_g.bc │ └── libclcore_g.bc └── uninstall.sh