Groups 172 of 99+ julia-users › 0.5.0 rc3 error 7 posts by 3 authors Henri Girard Aug 24 I have this error on ubuntu 16.04, any help ? checking usable gmp.h at link time... yes checking for GMP_NUMB_BITS and sizeof(mp_limb_t) consistency... yes checking for __gmpz_init in -lgmp... yes checking if gmp.h version and libgmp version are the same... (6.1.0/6.1.0) yes checking for GMP library vs header correctness... yes checking for double-to-integer conversion bug... no checking if gmp_printf supports "%jd"... yes checking if gmp_printf supports "%hhd"... yes checking if gmp_printf supports "%lld"... yes checking if gmp_printf supports "%Lf"... yes checking if gmp_printf supports "%td"... yes checking for __gmpn_rootrem... yes checking for __gmpn_sbpi1_divappr_q... yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating doc/Makefile config.status: creating src/Makefile config.status: creating tests/Makefile config.status: creating tune/Makefile config.status: creating src/mparam.h config.status: executing depfiles commands config.status: executing libtool commands Makefile:81 : la recette pour la cible « julia-deps » a échouée make: *** [julia-deps] Erreur 2 pi@pc:~/julia$ Henri Girard Aug 24 Translate message to English - show quoted text - Uwe Fechner Aug 24 Where did you get the source code from? Which command did you execute, that resulted in this error? - show quoted text - Henri Girard Aug 24 Re: [julia-users] Re: 0.5.0 rc3 error git clone git://github.com/JuliaLang/julia.git after : git checkout release-0.5 Before I got all dependances from ubuntu sudo apt build-dep julia (I have the 0.5 binary in repo) but I would like to get the dev rc3. - show quoted text - Tony Kelman Aug 24 Re: [julia-users] Re: 0.5.0 rc3 error The actual error likely occurred much earlier. You could try for i in `seq 10` do; make -j4; done then you'd probably see the actual error. If I had to guess, you're probably missing one or more of gfortran, libssl-dev, m4, or cmake. Uwe Fechner Aug 24 Re: [julia-users] Re: 0.5.0 rc3 error If you want to see the real error, do not use parallel make. Just type "make" instead of "make -j4". My guess: You don't have libssl-dev installed. - show quoted text - Henri Girard Aug 25 Re: [julia-users] Re: 0.5.0 rc3 error Yes... No cmake, no libssl-dev... Thanks. It's done now :) Henri - show quoted text -