diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-11-19 03:08:27 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-11-19 05:52:39 +0300 |
commit | 92327f87384c357264454a98c83aae733a6b6495 (patch) | |
tree | a1baa841ad1a8691088b96b0a57d4c223b994515 /README.md | |
download | setup-mingw-92327f87384c357264454a98c83aae733a6b6495.tar.gz setup-mingw-92327f87384c357264454a98c83aae733a6b6495.zip |
initial commit
Diffstat (limited to '')
-rw-r--r-- | README.md | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..796d540 --- /dev/null +++ b/README.md @@ -0,0 +1,49 @@ +Set up MinGW-w64 +================ + +This is a GitHub action that sets up MinGW-w64 in your workflow run. + +1. Installs MinGW-w64 on either Ubuntu or Windows. +2. Fixes the infamous libwinpthread-1.dll [static linking issue]. + +[static linking issue]: https://stackoverflow.com/q/13768515/514684 + +Use it in your workflow like this: + + - name: Set up MinGW + uses: egor-tensin/setup-mingw@v1 + with: + platform: x64 + +`x64` is the default value for the `platform` parameter and can be omitted. +Use `x86` if you want to build 32-bit binaries. + +Set the `cygwin` parameter to `1` to set up MinGW inside an existing Cygwin +installation (installing Cygwin itself is as simple as `choco install cygwin`). + +API +--- + +| Input | Value | Default | Description +| -------- | ------- | ------- | ----------- +| platform | x64 | Yes | Install the x86_64 toolchain. +| | *Other* | No | Install the i686 toolchain. +| cygwin | 1 | No | Install Cygwin packages. +| | *Other* | Yes | Install native binaries. +| static | 1 | Yes | Enable the static-linking workaround. +| | *Other* | No | Disable the static-linking workaround. + +| Output | Example | Description +| ------- | ------------------------ | ----------- +| prefix | x86_64-w64-mingw32 | Cross-compilation toolchain prefix +| gcc | x86_64-w64-mingw32-gcc | gcc binary name +| gxx | i686-w64-mingw32-g++ | g++ binary name +| windres | i686-w64-mingw32-windres | windres binary name + +License +------- + +Distributed under the MIT License. +See [LICENSE.txt] for details. + +[LICENSE.txt]: LICENSE.txt |