├── .github └── workflows │ └── ubuntu.yml ├── .gitignore ├── 50-mostlyportable-gcc.conf ├── LICENSE ├── README.md ├── mostlyportable-gcc.cfg ├── mostlyportable-gcc.sh └── mostlyportable-mingw.cfg /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frogging-Family/mostlyportable-gcc/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frogging-Family/mostlyportable-gcc/HEAD/.gitignore -------------------------------------------------------------------------------- /50-mostlyportable-gcc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frogging-Family/mostlyportable-gcc/HEAD/50-mostlyportable-gcc.conf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frogging-Family/mostlyportable-gcc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frogging-Family/mostlyportable-gcc/HEAD/README.md -------------------------------------------------------------------------------- /mostlyportable-gcc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frogging-Family/mostlyportable-gcc/HEAD/mostlyportable-gcc.cfg -------------------------------------------------------------------------------- /mostlyportable-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frogging-Family/mostlyportable-gcc/HEAD/mostlyportable-gcc.sh -------------------------------------------------------------------------------- /mostlyportable-mingw.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frogging-Family/mostlyportable-gcc/HEAD/mostlyportable-mingw.cfg --------------------------------------------------------------------------------