https://github.com/JuliaLang/julia
Raw File
Tip revision: e1c01930bde504fbbe85133e81cae58962ee568c authored by Tim Besard on 22 September 2023, 13:22:31 UTC
Don't use swiftcc on RISC-V.
Tip revision: e1c0193
download.jl
# This file is a part of Julia. License is MIT: https://julialang.org/license

cmd = `$(Base.julia_cmd()) --depwarn=no --startup-file=no download_exec.jl`
if !success(pipeline(cmd; stdout=stdout, stderr=stderr))
    error("download test failed, cmd : $cmd")
end
back to top