Skip to content

Commit 2cf8901

Browse files
authored
update Windows compilers (#1012)
1 parent fe6d9cb commit 2cf8901

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Artifacts.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[[mingw-w64]]
22
arch = "x86_64"
3-
git-tree-sha1 = "fdff308295487f361ef6e8dc2d27f5abe8a6eee9"
3+
git-tree-sha1 = "b17bda08a19173572926f43a48aad5ef3d845e7c"
44
os = "windows"
55
lazy = true
66

77
[[mingw-w64.download]]
8-
sha256 = "fe3f401bc936fbe6af940b26c5e0f266f762a3416f979c706e599b24082dc5c7"
9-
url = "https://github.com/JuliaLang/PackageCompiler.jl/releases/download/v1.0.0/x86_64-8.1.0-release-posix-seh-rt_v6-rev0.tar.gz"
8+
sha256 = "53645e06775a55733580426341395c67dda20a664af83bcda76a1d052b618b59"
9+
url = "https://github.com/JuliaLang/PackageCompiler.jl/releases/download/v2.1.24/x86_64-14.2.0-release-posix-seh-msvcrt-rt_v12-rev0.tar.gz"
1010

1111
[[mingw-w64]]
1212
arch = "i686"
13-
git-tree-sha1 = "bc760d8ef1b4840e55a36bd361587b4975af811f"
13+
git-tree-sha1 = "76b9f278e7de1d7dfdfe3a786afbe9c1e29003ea"
1414
os = "windows"
1515
lazy = true
1616

1717
[[mingw-w64.download]]
18-
sha256 = "ab0abb76384ce9b657141d3a54150d0b865f9c06576caa7901a6c8429c9008e5"
19-
url = "https://github.com/JuliaLang/PackageCompiler.jl/releases/download/v1.0.0/i686-8.1.0-release-posix-sjlj-rt_v6-rev0.tar.gz"
18+
sha256 = "d049bd771e01b02f2ca9274435f0e6f9f4f295bf2af72a8059dd851c52144910"
19+
url = "https://github.com/JuliaLang/PackageCompiler.jl/releases/download/v2.1.24/i686-14.2.0-release-posix-dwarf-msvcrt-rt_v12-rev0.tar.gz"

src/PackageCompiler.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ function get_compiler_cmd(; cplusplus::Bool=false)
148148
cc = get(ENV, "JULIA_CC", nothing)
149149
path = nothing
150150
@static if Sys.iswindows()
151-
path = joinpath(LazyArtifacts.artifact"mingw-w64", (Int==Int64 ? "mingw64" : "mingw32"), "bin", cplusplus ? "g++.exe" : "gcc.exe")
151+
path = joinpath(LazyArtifacts.artifact"mingw-w64", "extracted_files", (Int==Int64 ? "mingw64" : "mingw32"), "bin", cplusplus ? "g++.exe" : "gcc.exe")
152152
compiler_cmd = `$path`
153153
end
154154
if cc !== nothing

0 commit comments

Comments
 (0)