Reputation: 14561
I have a fork (or a feature branch) of the core Julia Language and I want to build the code into an actual language I can use and test out. How do I build Julia from source to test my change?
Upvotes: 6
Views: 1425
Reputation: 14561
Per the JuliaLang repo's README:
git checkout v1.8.2
for example.make
command.Note: The build process will fail badly if any of the build directory's parent directories have spaces or other shell meta-characters such as $ or : in their names (this is due to a limitation in GNU make). Once it is built, you can run the julia executable after you enter your julia directory and run
./julia
Then you can run the tests for Julia by typing make testall
and observing the output. Find out more in the Getting Started manual.
Upvotes: 7