├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── build.yml │ └── lint.yml ├── .gitignore ├── .style.yapf ├── LICENSE ├── README.md ├── ci.sh ├── ruff.toml ├── src └── .gitignore └── tc_build ├── __init__.py ├── binutils.py ├── builder.py ├── kernel.py ├── llvm.py ├── source.py ├── tools.py └── utils.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /build/ 3 | /venv/ 4 | *.pyc 5 | -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/.style.yapf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/README.md -------------------------------------------------------------------------------- /ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/ci.sh -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/ruff.toml -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*.patch 3 | -------------------------------------------------------------------------------- /tc_build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tc_build/binutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/tc_build/binutils.py -------------------------------------------------------------------------------- /tc_build/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/tc_build/builder.py -------------------------------------------------------------------------------- /tc_build/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/tc_build/kernel.py -------------------------------------------------------------------------------- /tc_build/llvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/tc_build/llvm.py -------------------------------------------------------------------------------- /tc_build/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/tc_build/source.py -------------------------------------------------------------------------------- /tc_build/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/tc_build/tools.py -------------------------------------------------------------------------------- /tc_build/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxi1997/build-aosp-clang-for-arm64/HEAD/tc_build/utils.py --------------------------------------------------------------------------------