staticfloat / homebrew-julia

small repository to install julia
221 stars 35 forks source link

Installation not working for me (hangs on julia--dsfmt) #97

Closed yuzeh closed 10 years ago

yuzeh commented 10 years ago

I've followed the instructions on the README page for the project, but I am seeing issues similar to #87 . There is one difference though: Instead of a hanging rm command, I see a hanging make command:

make PREFIX=/usr/local/Cellar/julia/0.2.1 USE_BLAS64=1 FC=/usr/local/bin/gfortran LLVM_CONFIG=llvm-config-3.3 USECLANG=1 LIBBLAS=-lopenblas LIBBLASNAME=libopenblas LIBLAPACK=-lopenblas LIBLAPACKNAME=libopenblas USE_SYSTEM_ZLIB=1 USE_SYSTEM_FFTW=1 USE_SYSTEM_GLPK=1 USE_SYSTEM_GMP=1 USE_SYSTEM_LLVM=1 USE_SYSTEM_PCRE=1 USE_SYSTEM_BLAS=1 USE_SYSTEM_SUITESPARSE=1 USE_SYSTEM_ARPACK=1 USE_SYSTEM_MPFR=1 USE_SYSTEM_READLINE=1 USE_SYSTEM_LAPACK=1 install

This is what top looks like for that command:

PID    COMMAND      %CPU TIME     #TH  #WQ  #POR #MRE RPRVT RSHRD RSIZE VPRVT  VSIZE  PGRP  PPID  STATE    UID  FAUL COW  MSGS MSGR SYSBS SYSM CSW  PAGE KPRVT  KSHRD
13744  make         0.0  00:00.02 1    0    17   25   312K  212K  828K  9640K  2376M  87192 87222 sleeping 501  867  164  47   22   1042  71   114  0    3239K  2188K

Any idea what's going on?

staticfloat commented 10 years ago

Can you upload the whole build log? You can gist it if it's super long.

yuzeh commented 10 years ago

I ran it again, and captured the logs: https://gist.github.com/yuzeh/d45413f508fca3d65d47

This time it seems like it's hanging on a few things:

screen shot 2014-08-06 at 8 01 04 pm

staticfloat commented 10 years ago

Can you add the -v flag so we get verbose output?

That is, brew install -v --64bit julia

Also, you are installing the 0.2.1 version of Julia which is many months old at this point. I highly suggest installing the 0.3 release candidate, which you can get through brew install -v --HEAD julia. --64bit is optional. You likely don't need it, (Julia is always a 64-bit process on OSX, that --64bit flag is for something else) but it shouldn't hurt either. -E

On Wed, Aug 6, 2014 at 11:01 PM, Dan Huang notifications@github.com wrote:

I ran it again, and captured the logs: https://gist.github.com/yuzeh/d45413f508fca3d65d47

This time it seems like it's hanging on a few things:

[image: screen shot 2014-08-06 at 8 01 04 pm] https://cloud.githubusercontent.com/assets/351023/3836885/1cee3712-1ddf-11e4-94df-657b4409abe0.png

— Reply to this email directly or view it on GitHub https://github.com/staticfloat/homebrew-julia/issues/97#issuecomment-51425443 .

yuzeh commented 10 years ago

Installed from head; that worked. thanks!