gitextract_3cdscn2l/ ├── .cargo/ │ └── config.toml ├── .changes/ │ ├── 1006.json │ ├── 1018.json │ ├── 1023.json │ ├── 1024.json │ ├── 1028-1132.json │ ├── 1032.json │ ├── 1033.json │ ├── 1038-1220-1482.json │ ├── 1039.json │ ├── 1049-1142.json │ ├── 1054.json │ ├── 1057.json │ ├── 1063-1125-1134.json │ ├── 1073.json │ ├── 1078.json │ ├── 1084.json │ ├── 1085.json │ ├── 1105.json │ ├── 1112.json │ ├── 1118.json │ ├── 1123.json │ ├── 1138.json │ ├── 1159.json │ ├── 1160.json │ ├── 1164.json │ ├── 1166.json │ ├── 1183.json │ ├── 1199.json │ ├── 1207.json │ ├── 1220.json │ ├── 1246.json │ ├── 1248.json │ ├── 1260.json │ ├── 1265.json │ ├── 1271.json │ ├── 1280.json │ ├── 1317.json │ ├── 1325.json │ ├── 1330-1349.json │ ├── 1333.json │ ├── 1340.json │ ├── 1342.json │ ├── 1346.json │ ├── 1348.json │ ├── 1373.json │ ├── 1374-1490.json │ ├── 1385.json │ ├── 1391.json │ ├── 1399.json │ ├── 1403-1411.json │ ├── 1420.json │ ├── 1458.json │ ├── 1465.json │ ├── 1466.json │ ├── 1468.json │ ├── 1481.json │ ├── 1483.json │ ├── 1485.json │ ├── 1488.json │ ├── 1489.json │ ├── 1491.json │ ├── 1494.json │ ├── 1495.json │ ├── 1525.json │ ├── 1540.json │ ├── 1557.json │ ├── 1574.json │ ├── 1623.json │ ├── 1625.json │ ├── 1630.json │ ├── 1641.json │ ├── 1647.json │ ├── 1651.json │ ├── 1664.json │ ├── 1674.json │ ├── 1681.json │ ├── 554.json │ ├── 589.json │ ├── 591-1095.json │ ├── 661.json │ ├── 817.json │ ├── 880-1111.json │ ├── 918.json │ ├── 931.json │ ├── 934.json │ ├── 937.json │ ├── 939.json │ ├── 942.json │ ├── 945.json │ ├── 947.json │ ├── 952.json │ ├── 955.json │ ├── 956.json │ ├── 957-1393.json │ ├── 962.json │ ├── 964.json │ ├── 968.json │ ├── 974.json │ ├── 982.json │ ├── 984.json │ ├── 987.json │ ├── 989.json │ ├── 994.json │ ├── README.md │ └── template/ │ ├── 940.json │ ├── 978.json │ ├── 979-981.json │ ├── CHANGELOG.md │ └── issue440.json ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── a_blank_issue.md │ │ ├── b_issue_report.yml │ │ ├── config.yml │ │ └── z_feature_request.yml │ ├── actions/ │ │ ├── cargo-install-upload-artifacts/ │ │ │ └── action.yml │ │ ├── cargo-llvm-cov/ │ │ │ └── action.yml │ │ ├── cargo-publish/ │ │ │ └── action.yml │ │ ├── post/ │ │ │ ├── action.yml │ │ │ └── main.js │ │ └── setup-rust/ │ │ ├── action.yml │ │ └── rust.json │ ├── bors.toml │ ├── codecov.yml │ ├── dependabot.yml │ └── workflows/ │ ├── changelog.yml.x │ ├── ci.yml │ ├── try.yml │ └── weekly.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── ci/ │ ├── build_release.sh │ ├── shared.sh │ ├── test-bisect.sh │ ├── test-cross-image.sh │ ├── test-docker-in-docker.sh │ ├── test-foreign-toolchain.sh │ ├── test-podman.sh │ ├── test-remote.sh │ ├── test-zig-image.sh │ └── test.sh ├── clippy.toml ├── crosstool-ng/ │ ├── arm-unknown-linux-gnueabihf.config.in │ ├── loongarch64-unknown-linux-gnu.config.in │ └── loongarch64-unknown-linux-musl.config.in ├── deny.toml ├── docker/ │ ├── .dockerignore │ ├── .gitattributes │ ├── Dockerfile.aarch64-linux-android │ ├── Dockerfile.aarch64-unknown-freebsd │ ├── Dockerfile.aarch64-unknown-linux-gnu │ ├── Dockerfile.aarch64-unknown-linux-gnu.centos │ ├── Dockerfile.aarch64-unknown-linux-musl │ ├── Dockerfile.aarch64_be-unknown-linux-gnu │ ├── Dockerfile.arm-linux-androideabi │ ├── Dockerfile.arm-unknown-linux-gnueabi │ ├── Dockerfile.arm-unknown-linux-gnueabihf │ ├── Dockerfile.arm-unknown-linux-musleabi │ ├── Dockerfile.arm-unknown-linux-musleabihf │ ├── Dockerfile.armv5te-unknown-linux-gnueabi │ ├── Dockerfile.armv5te-unknown-linux-musleabi │ ├── Dockerfile.armv7-linux-androideabi │ ├── Dockerfile.armv7-unknown-linux-gnueabi │ ├── Dockerfile.armv7-unknown-linux-gnueabihf │ ├── Dockerfile.armv7-unknown-linux-musleabi │ ├── Dockerfile.armv7-unknown-linux-musleabihf │ ├── Dockerfile.asmjs-unknown-emscripten │ ├── Dockerfile.cross │ ├── Dockerfile.i586-unknown-linux-gnu │ ├── Dockerfile.i586-unknown-linux-musl │ ├── Dockerfile.i686-linux-android │ ├── Dockerfile.i686-pc-windows-gnu │ ├── Dockerfile.i686-unknown-freebsd │ ├── Dockerfile.i686-unknown-linux-gnu │ ├── Dockerfile.i686-unknown-linux-musl │ ├── Dockerfile.loongarch64-unknown-linux-gnu │ ├── Dockerfile.loongarch64-unknown-linux-musl │ ├── Dockerfile.mips-unknown-linux-gnu │ ├── Dockerfile.mips-unknown-linux-musl │ ├── Dockerfile.mips64-unknown-linux-gnuabi64 │ ├── Dockerfile.mips64-unknown-linux-muslabi64 │ ├── Dockerfile.mips64el-unknown-linux-gnuabi64 │ ├── Dockerfile.mips64el-unknown-linux-muslabi64 │ ├── Dockerfile.mipsel-unknown-linux-gnu │ ├── Dockerfile.mipsel-unknown-linux-musl │ ├── Dockerfile.native │ ├── Dockerfile.native.centos │ ├── Dockerfile.powerpc-unknown-linux-gnu │ ├── Dockerfile.powerpc64-unknown-linux-gnu │ ├── Dockerfile.powerpc64le-unknown-linux-gnu │ ├── Dockerfile.riscv64gc-unknown-linux-gnu │ ├── Dockerfile.riscv64gc-unknown-linux-musl │ ├── Dockerfile.s390x-unknown-linux-gnu │ ├── Dockerfile.sparc64-unknown-linux-gnu │ ├── Dockerfile.sparcv9-sun-solaris │ ├── Dockerfile.thumbv6m-none-eabi │ ├── Dockerfile.thumbv7em-none-eabi │ ├── Dockerfile.thumbv7em-none-eabihf │ ├── Dockerfile.thumbv7m-none-eabi │ ├── Dockerfile.thumbv7neon-linux-androideabi │ ├── Dockerfile.thumbv7neon-unknown-linux-gnueabihf │ ├── Dockerfile.thumbv8m.base-none-eabi │ ├── Dockerfile.thumbv8m.main-none-eabi │ ├── Dockerfile.thumbv8m.main-none-eabihf │ ├── Dockerfile.wasm32-unknown-emscripten │ ├── Dockerfile.x86_64-linux-android │ ├── Dockerfile.x86_64-pc-solaris │ ├── Dockerfile.x86_64-pc-windows-gnu │ ├── Dockerfile.x86_64-unknown-dragonfly │ ├── Dockerfile.x86_64-unknown-freebsd │ ├── Dockerfile.x86_64-unknown-illumos │ ├── Dockerfile.x86_64-unknown-linux-gnu │ ├── Dockerfile.x86_64-unknown-linux-gnu.centos │ ├── Dockerfile.x86_64-unknown-linux-musl │ ├── Dockerfile.x86_64-unknown-netbsd │ ├── Dockerfile.zig │ ├── aarch64-linux-gnu-glibc.sh │ ├── android/ │ │ ├── README.md │ │ ├── android/ │ │ │ ├── __init__.py │ │ │ ├── make.py │ │ │ ├── soong.py │ │ │ └── util.py │ │ ├── pyproject.toml │ │ ├── scripts/ │ │ │ └── build-system.py │ │ ├── tests/ │ │ │ ├── Addition.bp │ │ │ ├── Android.bp │ │ │ ├── Android.mk │ │ │ ├── Comments.mk │ │ │ ├── Empty.bp │ │ │ ├── Empty.mk │ │ │ ├── FakeTitle.mk │ │ │ ├── Grouped.mk │ │ │ ├── ListMap.bp │ │ │ ├── Multiline.mk │ │ │ ├── Nested.mk │ │ │ ├── NonTest.bp │ │ │ ├── README.md │ │ │ ├── Single.mk │ │ │ ├── test_make.py │ │ │ ├── test_metadata.py │ │ │ ├── test_soong.py │ │ │ └── test_util.py │ │ └── tox.ini │ ├── android-ndk.sh │ ├── android-runner │ ├── android-symlink.sh │ ├── android-system.sh │ ├── android.cmake │ ├── apt-cross-essential.sh │ ├── base-runner.sh │ ├── cmake.sh │ ├── common.sh │ ├── cross.sh │ ├── crosstool-config/ │ │ ├── aarch64_be-unknown-linux-gnu.config │ │ ├── arm-unknown-linux-gnueabihf.config │ │ ├── loongarch64-unknown-linux-gnu.config │ │ ├── loongarch64-unknown-linux-musl.config │ │ └── riscv64gc-unknown-linux-musl.config │ ├── crosstool-ng.sh │ ├── deny-debian-packages.sh │ ├── dragonfly.sh │ ├── dropbear.sh │ ├── emscripten.sh │ ├── freebsd-common.sh │ ├── freebsd-extras.sh │ ├── freebsd-fetch-best-mirror.sh │ ├── freebsd-gcc.sh │ ├── freebsd-install-package.sh │ ├── freebsd-install.sh │ ├── freebsd-setup-packagesite.sh │ ├── freebsd.sh │ ├── illumos.sh │ ├── lib.sh │ ├── linux-image.sh │ ├── linux-runner │ ├── mingw.sh │ ├── musl-gcc.sh │ ├── musl-symlink.sh │ ├── musl.sh │ ├── native-linux-image.sh │ ├── native-linux-runner │ ├── native-qemu.sh │ ├── netbsd.sh │ ├── qemu-runner │ ├── qemu.sh │ ├── solaris.sh │ ├── tidyup.sh │ ├── toolchain.cmake │ ├── validate-android-args.sh │ ├── windows-entry.sh │ ├── wine.sh │ └── zig.sh ├── docs/ │ ├── cargo_configuration.md │ ├── config_file.md │ ├── custom_images.md │ ├── environment_variables.md │ ├── getting-started.md │ ├── recipes.md │ ├── remote.md │ └── unstable_features.md ├── rustfmt.yml ├── src/ │ ├── bin/ │ │ ├── commands/ │ │ │ ├── clean.rs │ │ │ ├── containers.rs │ │ │ ├── images.rs │ │ │ ├── mod.rs │ │ │ └── run.rs │ │ ├── cross-util.rs │ │ └── cross.rs │ ├── build.rs │ ├── cargo.rs │ ├── cli.rs │ ├── config.rs │ ├── cross_toml.rs │ ├── docker/ │ │ ├── build.rs │ │ ├── custom.rs │ │ ├── engine.rs │ │ ├── image.rs │ │ ├── local.rs │ │ ├── mod.rs │ │ ├── provided_images.rs │ │ ├── remote.rs │ │ ├── seccomp.json │ │ └── shared.rs │ ├── errors.rs │ ├── extensions.rs │ ├── file.rs │ ├── id.rs │ ├── interpreter.rs │ ├── lib.rs │ ├── rustc.rs │ ├── rustup.rs │ ├── shell.rs │ ├── temp.rs │ ├── tests/ │ │ ├── rustup.rs │ │ └── toml.rs │ └── tests.rs ├── targets.toml └── xtask/ ├── Cargo.toml └── src/ ├── build_docker_image.rs ├── changelog.rs ├── ci/ │ └── target_matrix.rs ├── ci.rs ├── codegen.rs ├── crosstool.rs ├── hooks.rs ├── install_git_hooks.rs ├── main.rs ├── pre-commit.sh ├── pre-push.sh ├── target_info.rs ├── target_info.sh └── util.rs