diff options
Diffstat (limited to 'mingw-w64-build/README.md')
-rw-r--r-- | mingw-w64-build/README.md | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/mingw-w64-build/README.md b/mingw-w64-build/README.md new file mode 100644 index 0000000..b374bdc --- /dev/null +++ b/mingw-w64-build/README.md @@ -0,0 +1,30 @@ +# mingw-w64-build-ng +[Zeranoe](https://github.com/Zeranoe/mingw-w64-build)s build script with some extensioons rejected by the upstream. + +# mingw-w64-build +mingw-w64-build is a Bash script to build a [MinGW-w64](https://mingw-w64.org) +cross compiler for i686 (Win32) and x86_64 (Win64). It will build a fully static +toolchain that can compile Windows executables that don't depend on any GCC dll +files. + +## Default Branches +* [MinGW-w64](https://mingw-w64.org) v9.x +* [Binutils](https://www.gnu.org/software/binutils/) binutils-2_39-branch +* [GCC](https://gcc.gnu.org/) releases/gcc-12 + +## Default Prefix +`$HOME/.zeranoe/mingw-w64/i686` and `$HOME/.zeranoe/mingw-w64/x86_64` are the +default install locations, but this location can be modified with the `--prefix` +option. To ensure the new compilers are available system-wide, add +`$HOME/.zeranoe/mingw-w64/<arch>/bin` to the `$PATH`. + +## Platforms +mingw-w64-build should run on Ubuntu, Cygwin, macOS (with Homebrew), and other +Bash based shells. + +## Usage +See `mingw-w64-build --help` for all build options. + +## License +mingw-w64-build is licensed under the GNU GPL 3.0 or later. A copy of the +license can be found in the LICENSE file. |