Re: [julia-users] Re: problem with build

2014-04-19 Thread Comer Duncan
Thanks for the help. Given the commit pointed out by Tony Kelman, julia now builds and runs on my macbookpro running mavericks given the recent Xcode update by Apple to use Xcode 5.1.1. Comer On Sat, Apr 19, 2014 at 4:19 AM, Tony Kelman wrote: > That last one should be fixed by > https://gith

Re: [julia-users] Re: problem with build

2014-04-19 Thread Tony Kelman
That last one should be fixed by https://github.com/JuliaLang/julia/commit/5ab3020077f8947d806fddaab8de45381908a9c5, there's been some churn in random-number generation recently and how those dependencies are handled. On Friday, April 18, 2014 1:43:10 PM UTC-7, Comer Duncan wrote: > > Ok, I

Re: [julia-users] Re: problem with build

2014-04-18 Thread Comer Duncan
Ok, I nuked the original julia and downloaded from scratch and have done a make. This time it got pretty far along but again chokes. Here is the spew near the end: Making install in expr Making install in tune Making install in doc /opt/local/bin/gmkdir -p '/Users/comerduncan/julia/usr/share/i

Re: [julia-users] Re: problem with build

2014-04-18 Thread Keno Fischer
Looks like https://github.com/JuliaLang/julia/issues/6157 to me? On Fri, Apr 18, 2014 at 2:27 PM, Comer Duncan wrote: > I did make -C deps cleanall, then a make. In my julia directory I have a > Make.user containing just USE_SYSTEM_BLAS=1. The make choked I think late > in the build. Here are t

Re: [julia-users] Re: problem with build

2014-04-18 Thread Rahul Dave
The problem that the OP has certainly seems like its coming from the clang changes that Xcode 5.1 in mavericks has created. For one thing, clang docent support all the gcc flags, and with Apple forcing this change in their clang, there is going to be lots of work that software maintainers will h

Re: [julia-users] Re: problem with build

2014-04-18 Thread Elliot Saba
Where does your compiler come from? Did you install Xcode? On Fri, Apr 18, 2014 at 9:28 AM, Rahul Dave < rahuldave.mailingli...@gmail.com> wrote: > Does ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future > make target work? > > If so it might be this irritating clang-warning

Re: [julia-users] Re: problem with build

2014-04-18 Thread Rahul Dave
Does ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future make target work? If so it might be this irritating clang-warning of unused flags is an error thing…. --  Rahul Dave Sent with Airmail On April 18, 2014 at 12:07:34 PM, Ivar Nesje (iva...@gmail.com) wrote: It is often

[julia-users] Re: problem with build

2014-04-18 Thread Ivar Nesje
It is often hard to see the real error if you use parallel make (eg: make -j 4), because other processes might create lots of output after the error in one process. If you did a parallel make, you run just plain `make` to see the error at the bottom. Julia also does not clean dependencies on `m