├── .github ├── FUNDING.yml └── workflows │ ├── builder_0_1.yml │ ├── builder_2_3.yml │ ├── builder_3_plus.yml │ ├── builder_64.yml │ ├── builder_x86_64.yml │ └── docs.yml ├── LICENSE ├── QT_build_instructions.md ├── README.md ├── docs ├── base-gcc.md ├── cross-gcc-bookworm.md ├── cross-gcc-bullseye.md ├── cross-gcc-buster.md ├── cross-gcc.md ├── cross-gcc64-bookworm.md ├── cross-gcc64-bullseye.md ├── cross-gcc64-buster.md ├── cross-gcc64.md ├── desktop-gcc-x86.md ├── desktop-gcc-x86_64.md ├── desktop-gcc.md ├── exp-gcc.md ├── gcc64.md ├── native-gcc-bookworm.md ├── native-gcc-bullseye.md ├── native-gcc-buster.md ├── native-gcc.md ├── native-gcc64-bookworm.md ├── native-gcc64-bullseye.md ├── native-gcc64-buster.md ├── native-gcc64.md └── root-gcc.md ├── patches ├── README.md └── curl_stfp_patcher └── utils ├── README.md ├── SF_deployer ├── SF_docs_deployer └── SSymlinker /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/builder_0_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/.github/workflows/builder_0_1.yml -------------------------------------------------------------------------------- /.github/workflows/builder_2_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/.github/workflows/builder_2_3.yml -------------------------------------------------------------------------------- /.github/workflows/builder_3_plus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/.github/workflows/builder_3_plus.yml -------------------------------------------------------------------------------- /.github/workflows/builder_64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/.github/workflows/builder_64.yml -------------------------------------------------------------------------------- /.github/workflows/builder_x86_64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/.github/workflows/builder_x86_64.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/LICENSE -------------------------------------------------------------------------------- /QT_build_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/QT_build_instructions.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/README.md -------------------------------------------------------------------------------- /docs/base-gcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/base-gcc.md -------------------------------------------------------------------------------- /docs/cross-gcc-bookworm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/cross-gcc-bookworm.md -------------------------------------------------------------------------------- /docs/cross-gcc-bullseye.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/cross-gcc-bullseye.md -------------------------------------------------------------------------------- /docs/cross-gcc-buster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/cross-gcc-buster.md -------------------------------------------------------------------------------- /docs/cross-gcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/cross-gcc.md -------------------------------------------------------------------------------- /docs/cross-gcc64-bookworm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/cross-gcc64-bookworm.md -------------------------------------------------------------------------------- /docs/cross-gcc64-bullseye.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/cross-gcc64-bullseye.md -------------------------------------------------------------------------------- /docs/cross-gcc64-buster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/cross-gcc64-buster.md -------------------------------------------------------------------------------- /docs/cross-gcc64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/cross-gcc64.md -------------------------------------------------------------------------------- /docs/desktop-gcc-x86.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/desktop-gcc-x86.md -------------------------------------------------------------------------------- /docs/desktop-gcc-x86_64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/desktop-gcc-x86_64.md -------------------------------------------------------------------------------- /docs/desktop-gcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/desktop-gcc.md -------------------------------------------------------------------------------- /docs/exp-gcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/exp-gcc.md -------------------------------------------------------------------------------- /docs/gcc64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/gcc64.md -------------------------------------------------------------------------------- /docs/native-gcc-bookworm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/native-gcc-bookworm.md -------------------------------------------------------------------------------- /docs/native-gcc-bullseye.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/native-gcc-bullseye.md -------------------------------------------------------------------------------- /docs/native-gcc-buster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/native-gcc-buster.md -------------------------------------------------------------------------------- /docs/native-gcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/native-gcc.md -------------------------------------------------------------------------------- /docs/native-gcc64-bookworm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/native-gcc64-bookworm.md -------------------------------------------------------------------------------- /docs/native-gcc64-bullseye.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/native-gcc64-bullseye.md -------------------------------------------------------------------------------- /docs/native-gcc64-buster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/native-gcc64-buster.md -------------------------------------------------------------------------------- /docs/native-gcc64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/native-gcc64.md -------------------------------------------------------------------------------- /docs/root-gcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/docs/root-gcc.md -------------------------------------------------------------------------------- /patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/patches/README.md -------------------------------------------------------------------------------- /patches/curl_stfp_patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/patches/curl_stfp_patcher -------------------------------------------------------------------------------- /utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/utils/README.md -------------------------------------------------------------------------------- /utils/SF_deployer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/utils/SF_deployer -------------------------------------------------------------------------------- /utils/SF_docs_deployer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/utils/SF_docs_deployer -------------------------------------------------------------------------------- /utils/SSymlinker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/HEAD/utils/SSymlinker --------------------------------------------------------------------------------