Looks related to https://github.com/JuliaLang/julia/issues/5587.
On Tue, Jan 28, 2014 at 5:25 AM, Anthony Worrall < [email protected]> wrote: > Hi > > I am trying to build Julia from git on Scientific Linux release 6.4 > (Carbon) > > But I get an error at the end of the make > > usage: git rev-list [OPTION] <commit-id>... [ -- paths... ] > limiting output: > --max-count=nr > --max-age=epoch > --min-age=epoch > --sparse > --no-merges > --remove-empty > --all > --branches > --tags > --remotes > --stdin > --quiet > ordering output: > --topo-order > --date-order > --reverse > formatting output: > --parents > --children > --objects | --objects-edge > --unpacked > --header | --pretty > --abbrev=nr | --no-abbrev > --abbrev-commit > --left-right > special purpose: > --bisect > --bisect-vars > --bisect-all > usage: git rev-list [OPTION] <commit-id>... [ -- paths... ] > limiting output: > --max-count=nr > --max-age=epoch > --min-age=epoch > --sparse > --no-merges > --remove-empty > --all > --branches > --tags > --remotes > --stdin > --quiet > ordering output: > --topo-order > --date-order > --reverse > formatting output: > --parents > --children > --objects | --objects-edge > --unpacked > --header | --pretty > --abbrev=nr | --no-abbrev > --abbrev-commit > --left-right > special purpose: > --bisect > --bisect-vars > --bisect-all > PERL base/version_git.jl.phony > CC ui/repl.o > CC ui/repl-readline.o > CC ui/repl-basic.o > LINK usr/bin/julia-basic > LINK usr/bin/julia-readline > version_git.jl > error during bootstrap: LoadError(at "sysimg.jl" line 26: LoadError(at > "version_git.jl" line 13: ErrorException("syntax: unexpected ,"))) > make[1]: *** [/var/tmp/julia/usr/lib/julia/sys0.bc] Error 1 > make: *** [release] Error 2 > > The content of base/version_git.jl is: > > bash-4.1$ more base/version_git.jl > # This file was autogenerated in base/version_git.sh > immutable GitVersionInfo > commit::String > commit_short::String > branch::String > build_number::Int > date_string::String > tagged_commit::Bool > fork_master_distance::Int > fork_master_timestamp::Float64 > end > > const GIT_VERSION_INFO = GitVersionInfo( > "142760cf656351ab554e017b9543da555eabb11e", > "142760c*", > "master", > , > "2014-01-28 08:48 UTC", > false, > , > 1390898926. > ) > > It looks like it is missing a couple of values in the arguments, > build_number and fork_master_distance. I would guess this relates to the > two failed git commands. > >
