Build system-specific Julia image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From: #7 http://www.stochasticlifestyle.com/7-julia-gotchas-handle/ | |
Pkg.update() | |
if is_windows() | |
Pkg.add("WinRPM"); | |
using WinRPM | |
WinRPM.install("gcc", yes=true) | |
WinRPM.install("winpthreads-devel", yes=true) | |
end | |
include(joinpath(dirname(JULIA_HOME),"share","julia","build_sysimg.jl")); build_sysimg(force=true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've only tried this on my Windows machine. Haven't tried Linux yet.