I am having significant difficulty compiling Julia from source.
O.S.: RHEL6.5
Julia: .0.0.2
GCC: 4.8.2
I have tried this two ways, both from clean source. Either way I only get
I. First Method
1. I grabbed the source:
git clone https://github.com/JuliaLang/julia.git
2. Cd to julia
3. make
Error:
fatal: Needed a single revision
fatal: Needed a single revision
fatal: Needed a single revision
fatal: Needed a single revision
% Total % Received % Xferd Average Speed Time Time Time
Current
Dload Upload Total Spent Left
Speed
100 284k 100 284k 0 0 78290 0 0:00:03 0:00:03 --:--:--
83120
patching file dSFMT.h
patching file dSFMT.c
% Total % Received % Xferd Average Speed Time Time Time
Current
Dload Upload Total Spent Left
Speed
100 6848k 100 6848k 0 0 1420k 0 0:00:04 0:00:04 --:--:--
1433k
/bin/sh: line 1: ./configure: No such file or directory
make[2]: *** [libuv/config.status] Error 127
make[1]: *** [julia-release] Error 2
make: *** [release] Error 2
II. Second Method
1. I grabbed the source:
git clone https://github.com/JuliaLang/julia.git
2. Cd to julia
3. make -C deps getall
4. make
Error:
fatal: Needed a single revision
fatal: Needed a single revision
fatal: Needed a single revision
fatal: Needed a single revision
/bin/sh: line 1: ./configure: No such file or directory
make[2]: *** [libuv/config.status] Error 127
make[1]: *** [julia-release] Error 2
make: *** [release] Error 2
What am I missing here? Any help will be greatly appreciated.