[julia-users] building julia 0.5.0 on FreeBSD 11

2016-10-30 Thread Kostas Oikonomou
Hi, I'm following the instructions in the README, trying to build 0.5.0 from source on an amd64 machine. However, I'm stuck at errors in the OpenBlas build: blas_server.c:569:16: error: variable has incomplete type 'struct rlimit' struct rlimit rlim; ^ blas_ser

Re: [julia-users] building julia 0.5.0 on FreeBSD 11

2016-11-02 Thread Kostas Oikonomou
Thanks, I found an entire set of patches. On Sunday, October 30, 2016 at 10:28:40 PM UTC-4, Isaiah wrote: > > Just guessing here from some quick poking around: try adding `#include > ` to that file (`OPENBLAS_SRC/driver/others/blas_server.c`). > > On Sat, Oct 29, 2016 at

Re: [julia-users] building julia 0.5.0 on FreeBSD 11

2016-11-04 Thread Kostas Oikonomou
The patches for OpenBlas are included in the FreeBSD port of openblas, specifically they may be found in /usr/ports/math/openblas/files So the general procedure I followed for building the dependencies (that's the only place where there were problems) is: every time a dependency fails to build

[julia-users] problems (and some fixes) for using Plots and PlotlyJS on FreeBSD

2016-11-07 Thread Kostas Oikonomou
I am using Julia 0.5.0 on FreeBSD 11. I've had a few problems trying to install the Plots and PlotlyJS packages: 1. Just after installing Plots, I had to make this fix in ~/.julia/v0.5/Plots/src/backends/web.jl, function open_browser_window: @static if is_linux() || is_bsd() return r

Re: [julia-users] problems (and some fixes) for using Plots and PlotlyJS on FreeBSD

2016-11-07 Thread Kostas Oikonomou
Yes, I did. Unfortunately it didn't help. On Monday, November 7, 2016 at 3:44:29 PM UTC-5, Tom Breloff wrote: > > I'll ask the obvious question... did you try "Blink.AtomShell.install()"? > Nice work getting as far as you did. > > >

Re: [julia-users] problems (and some fixes) for using Plots and PlotlyJS on FreeBSD

2016-11-07 Thread Kostas Oikonomou
n, Nov 7, 2016 at 5:09 PM, Kostas Oikonomou > wrote: > >> Yes, I did. Unfortunately it didn't help. >> >> On Monday, November 7, 2016 at 3:44:29 PM UTC-5, Tom Breloff wrote: >>> >>> I'll ask the obvious question... did you try >>> "Blink.AtomShell.install()"? Nice work getting as far as you did. >>> >>> >>> >

Re: [julia-users] problems (and some fixes) for using Plots and PlotlyJS on FreeBSD

2016-11-07 Thread Kostas Oikonomou
(::Blink.AtomShell.#kw##init)(::Array{Any,1}, ::Blink.AtomShell.#init) at ./:0 in #shell#8(::Bool, ::Function) at /usr/home/ko/.julia/v0.5/Blink/src/AtomShell/process.jl:114 The in line 4 looks suspicious. Does it give you any clue? On Monday, November 7, 2016 at 5:27:34 PM UTC-5, Kostas

[julia-users] Re: problems (and some fixes) for using Plots and PlotlyJS on FreeBSD

2016-11-08 Thread Kostas Oikonomou
Thanks. Before reading your post, I had added an "if is_bsd()" statement to Blink/src/AtomShell/install.jl, and I set arch to "ia32" as FreeBSD has default support for 32-bit Linux. The result is that when I redo AtomBlink.AtomShell.install(), the 32-bit Linux binary is installed. However, w

Re: [julia-users] Re: problems (and some fixes) for using Plots and PlotlyJS on FreeBSD

2016-11-08 Thread Kostas Oikonomou
u might try restarting Julia, and also try the > plotting command a few times. Blink is known to have a race condition on > startup that sometimes produces this sort of error. > > On Tue, Nov 8, 2016 at 1:02 PM, Kostas Oikonomou > wrote: > >> >> Thanks. Before readin