diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-07-29 16:29:24 -0500 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-07-29 16:29:24 -0500 |
commit | 189f3752ccaf2979c0e68d17d60577700b6af24d (patch) | |
tree | 66c740e2aab96c0f7f730b9a7f667613b31458df | |
parent | 1a1c7c98193151b834f98c608f1bd331a7a5dea6 (diff) | |
download | image-mingw64-189f3752ccaf2979c0e68d17d60577700b6af24d.tar.gz image-mingw64-189f3752ccaf2979c0e68d17d60577700b6af24d.tar.bz2 image-mingw64-189f3752ccaf2979c0e68d17d60577700b6af24d.zip |
Add links for mignw symbols
-rwxr-xr-x | init | 10 | ||||
-rw-r--r-- | meta.lua | 1 |
2 files changed, 10 insertions, 1 deletions
@@ -1 +1,9 @@ | |||
1 | #!/bin/bash -ex | 1 | #!/bin/sh -ex |
2 | |||
3 | apk add alpine-base mingw-w64-gcc make | ||
4 | ln -s /usr/bin/x86_64-w64-mingw32-gcc /usr/bin/gcc | ||
5 | ln -s /usr/bin/x86_64-w64-mingw32-gcc-ar /usr/bin/ar | ||
6 | ln -s /usr/bin/x86_64-w64-mingw32-gcc-nm /usr/bin/nm | ||
7 | ln -s /usr/bin/x86_64-w64-mingw32-gcc-ranlib /usr/bin/ranlib | ||
8 | ln -s /usr/bin/x86_64-w64-mingw32-ld /usr/bin/ld | ||
9 | ln -s /usr/bin/x86_64-w64-mingw32-strip /usr/bin/strip | ||
@@ -3,5 +3,6 @@ return { | |||
3 | name = "image-mingw64", | 3 | name = "image-mingw64", |
4 | requires = {}, | 4 | requires = {}, |
5 | produces = {}, | 5 | produces = {}, |
6 | export = true, | ||
6 | } | 7 | } |
7 | } | 8 | } |