https://github.com/JuliaLang/julia
Revision ceec252630f08bff7901b06fe94cdbfe93f37cdc authored by Dilum Aluthge on 13 March 2022, 00:00:50 UTC, committed by GitHub on 13 March 2022, 00:00:50 UTC
1 parent b49a1b4
Raw File
Tip revision: ceec252630f08bff7901b06fe94cdbfe93f37cdc authored by Dilum Aluthge on 13 March 2022, 00:00:50 UTC
CI (`Create Buildbot Statuses`): add `linux32` to the list (#44594)
Tip revision: ceec252
write_base_cache.jl
# Write the sys source cache in format readable by Base._read_dependency_src
cachefile = ARGS[1]
open(cachefile, "w") do io
    for (_, filename) in Base._included_files
        src = read(filename, String)
        write(io, Int32(sizeof(filename)))
        write(io, filename)
        write(io, UInt64(sizeof(src)))
        write(io, src)
    end
    write(io, Int32(0))
end
back to top