[julia-users] Re: Error using Pkg.add

2014-08-10 Thread Patrick O'Leary
It appears that the system image is being built with instructions that your processor doesn't support. I believe as a quick fix you can remove the file sys.so though I'm not sure where that is put on the system in the binary package. What processor does this system have? On Sunday, August 10,

Re: [julia-users] Re: Error using Pkg.add

2014-08-10 Thread Elliot Saba
You can always find the system image by running the following julia command: filter( x - contains(x, sys.), Sys.dllist()) That being said, we try to compile with a conservative set of CPU instructions to avoid this problem. What is your CPU hardware, and are you running inside of a virtual

[julia-users] Re: Error using Pkg.add

2014-08-10 Thread Pablo Zubieta
My processor is an AMD Turion X2. I was using the 0.3.0-rc1 version without a problem.

[julia-users] Re: Error using Pkg.add

2014-08-10 Thread Pablo Zubieta
Is it safe to remove the sys.so file?

[julia-users] Re: Error using Pkg.add

2014-08-10 Thread Tony Kelman
Yes, though removing it will make Julia take a bit longer to start. You can rename it to something if you want to keep a backup copy. On Sunday, August 10, 2014 11:44:15 AM UTC-7, Pablo Zubieta wrote: Is it safe to remove the sys.so file?

[julia-users] Re: Error using Pkg.add

2014-08-10 Thread Pablo Zubieta
I renamed the file, but it does not sort out the problem.

[julia-users] Re: Error using Pkg.add

2014-08-10 Thread Tony Kelman
Could you post an issue on github, including the output of versioninfo() ? Unless Elliot or Patrick have any better ideas. On Sunday, August 10, 2014 11:57:03 AM UTC-7, Pablo Zubieta wrote: I renamed the file, but it does not sort out the problem.

[julia-users] Re: Error using Pkg.add

2014-08-10 Thread Pablo Zubieta
I forgot to mention, I am not running a VM.

[julia-users] Re: Error using Pkg.add

2014-08-10 Thread Patrick O'Leary
On Sunday, August 10, 2014 2:01:20 PM UTC-5, Tony Kelman wrote: Could you post an issue on github, including the output of versioninfo() ? Unless Elliot or Patrick have any better ideas. Nope. Turion 64 x2 appears to support up through SSE3, so the conservative settings from the binary

[julia-users] Re: Error using Pkg.add

2014-08-10 Thread Pablo Zubieta
I can't see an sse3 flag in /proc/cpuinfo. Here it is anyway. processor: 0 vendor_id: AuthenticAMD cpu family: 17 model: 3 model name: AMD Turion(tm) X2 Dual-Core Mobile RM-70 stepping: 1 microcode: 0x232 cpu MHz: 500.000 cache size: 512 KB physical

[julia-users] Re: Error using Pkg.add

2014-08-10 Thread Patrick O'Leary
On Sunday, August 10, 2014 2:32:03 PM UTC-5, Pablo Zubieta wrote: Should I still open an issue? Yes, please. You should include that output in the issue.

[julia-users] Re: Error using Pkg.add

2014-08-10 Thread Pablo Zubieta
Done! Here is the link to the issue https://github.com/JuliaLang/julia/issues/7946 .