https://github.com/JuliaLang/julia
Revision 0f04b33e01d3139ea103d9153dc442418c206b8a authored by Gabriel Baraldi on 14 March 2024, 19:30:40 UTC, committed by GitHub on 14 March 2024, 19:30:40 UTC
This shouldn't have any cost on smaller images because the only thing
that gets put into ldata is the system image data, which is only
reference via `dlsym`. This allows for images larger than 2gb (tested by
putting a 2gb array in the base image)

I did not test how this might be handled in other platforms (Windows
doesn't support it).
1 parent a910f04
Raw File
Tip revision: 0f04b33e01d3139ea103d9153dc442418c206b8a authored by Gabriel Baraldi on 14 March 2024, 19:30:40 UTC
Default to the medium code model in x86 linux (#53391)
Tip revision: 0f04b33
.gitignore
/*.tar.gz
/tmp
/dist
/dist-extras
/julia
/julia.bat
/usr
/oprofile_data
/usr-staging
/Make.user
/julia-*
/source-dist.tmp
/source-dist.tmp1

*.expmap
*.exe
*.dll
*.dwo
*.do
*.o
*.o.tmp
*.obj
*.so
*.dylib
*.dSYM
*.h.gen
*.jl.cov
*.jl.*.cov
*.jl.mem
*.jl.*.mem
*.ji

/perf*
.DS_Store
.idea/*
.vscode/*
*.heapsnapshot
.cache
# Buildkite: Ignore the entire .buildkite directory
/.buildkite

# Builtkite: json test data
/test/results.json

# Buildkite: Ignore the unencrypted repo_key
repo_key

# Buildkite: Ignore any agent keys (public or private) we have stored
agent_key*
back to top