diff options
author | Ayke van Laethem <[email protected]> | 2022-11-24 22:41:09 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-11-26 21:42:15 +0100 |
commit | 7aca814954e83d14a62b110a70c9aaeb32fea999 (patch) | |
tree | 994042f0339de339669a0f7d00a1a2f5e19125ff /builder | |
parent | 1d52e6be29b1816ac3baa4843fc0d0f27cb39164 (diff) | |
download | tinygo-7aca814954e83d14a62b110a70c9aaeb32fea999.tar.gz tinygo-7aca814954e83d14a62b110a70c9aaeb32fea999.zip |
windows: update mingw-w64 version
This gets rid of the following messages:
ld.lld: warning: duplicate /export option: hypot
ld.lld: warning: duplicate /export option: nextafter
I've wanted to wait for the next release but that may take a long while,
so I've simply set the submodule to the commit that fixes this message.
Diffstat (limited to 'builder')
-rw-r--r-- | builder/mingw-w64.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builder/mingw-w64.go b/builder/mingw-w64.go index db8b43c38..289a85489 100644 --- a/builder/mingw-w64.go +++ b/builder/mingw-w64.go @@ -52,7 +52,7 @@ func makeMinGWExtraLibs(tmpdir string) []*compileJob { for _, name := range []string{ "kernel32.def.in", "api-ms-win-crt-conio-l1-1-0.def", - "api-ms-win-crt-convert-l1-1-0.def", + "api-ms-win-crt-convert-l1-1-0.def.in", "api-ms-win-crt-environment-l1-1-0.def", "api-ms-win-crt-filesystem-l1-1-0.def", "api-ms-win-crt-heap-l1-1-0.def", |