https://github.com/JuliaLang/julia
Revision d0a612f389d45e672a09684753f712389efa02de authored by Kristoffer on 15 April 2024, 14:37:49 UTC, committed by Kristoffer on 15 April 2024, 14:37:49 UTC
Apparently (thanks ChatGPT) each line in a make file is executed in a
separate shell so adding an `export` line on one line does not propagate
to the next line.
1 parent 9de150c
Raw File
Tip revision: d0a612f389d45e672a09684753f712389efa02de authored by Kristoffer on 15 April 2024, 14:37:49 UTC
Fix `JULIA_CPU_TARGET` being propagated to workers precompiling stdlib pkgimages
Tip revision: d0a612f
.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