I blew away the previous install of Julia 0.6.0-dev and are redoing 0.5 as per the instructions:
https://github.com/JuliaLang/julia/tree/v0.5.0
$ cd /../git
$ git clone git://github.com/JuliaLang/julia.git
... git gits some stuff
$ cd julia
$ git checkout release-0.5
... changed origin to master release-0.5
Compile options for Multi-CPU AMD:
https://github.com/JuliaLang/julia#platform-specific-build-notes
"Set one of the following build options in Make.user and build again:
OPENBLAS_TARGET_ARCH=BARCELONA (AMD CPUs)"
Edit Make.user:
$ cp Make.inc Make.user && vim Make.user
Modify ARCH_flags:
12 # OPENBLAS build options
13 OPENBLAS_TARGET_ARCH:=
… becomes
12 # OPENBLAS build options
13 OPENBLAS_TARGET_ARCH:=BARCELONA
Save/exit Make.user
$ make
Compile fails with error message … too many pipes open, install GNU tar or bsdtar
Eveytime I compile trying to use Multi-CPU flags for AMD CPUs, release-0.5 fails. Is this a common issue? Have searched through this site and can find no other direct/indirect install match.
For the time being, I killed the Make.user, reran $ make but I would like a Mult-core build of Julia to best use this system and increase my learning.
Comments welcome.
TIA. JNA.
Edit: changed “multi-core” to “multi-cpu”