You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# fix some code that gets bogus references inserted
67
+
docs[doci] =replace(docs[doci], "for (struct [`aws_hash_iter`](@ref) iter = [`aws_hash_iter_begin`](@ref)(&map); (&iter); [`aws_hash_iter_next`](@ref)(&iter)) { const key\\_type key = *(const key\\_type *)iter.element.key; value\\_type value = *(value\\_type *)iter.element.value; // etc. }"=>"`for (struct aws_hash_iter iter = aws_hash_iter_begin(&map); !aws_hash_iter_done(&iter); aws_hash_iter_next(&iter)) { const key\\_type key = *(const key\\_type *)iter.element.key; value\\_type value = *(value\\_type *)iter.element.value; // etc. }`")
68
+
end
69
+
70
+
return docs
71
+
end
72
+
73
+
functionshould_skip_target(target)
74
+
# aws_c_common_jll does not support i686 windows https://github.com/JuliaPackaging/Yggdrasil/blob/bbab3a916ae5543902b025a4a873cf9ee4a7de68/A/aws_c_common/build_tarballs.jl#L48-L49
75
+
return target =="i686-w64-mingw32"
76
+
end
77
+
78
+
# download toolchains in parallel
79
+
Threads.@threadsfor target in JLLEnvs.JLL_ENV_TRIPLES
80
+
ifshould_skip_target(target)
81
+
continue
82
+
end
83
+
get_default_args(target) # downloads the toolchain
84
+
end
85
+
36
86
for target in JLLEnvs.JLL_ENV_TRIPLES
37
-
if target =="i686-w64-mingw32"
38
-
# aws_c_common_jll does not support i686 windows https://github.com/JuliaPackaging/Yggdrasil/blob/bbab3a916ae5543902b025a4a873cf9ee4a7de68/A/aws_c_common/build_tarballs.jl#L48-L49
0 commit comments