BuildExecutable.jl
BuildExecutable.jl copied to clipboard
Fails with "@unix_only not defined"
Fails with @unix_only not defined
on:
- Julia 0.6.0 64 bit Windows
- Julia 0.6.0 32 bit Linux
Experiencing this too.
idem Linux Mint 64bits Julia 0.6.0
https://github.com/dhoegh/BuildExecutable.jl/commit/7da95d8855f90da89431eb8d11520e8c9f15ffac
Works fine for simple code thank's
This is my first time trying this package, so I might be doing something wrong, but I'm also experiencing this. Fails even with this very simple code for me:
function rowcol(N)
# preferred way
A=zeros(N,N)
for j=1:N
for i=1:N
A[i,j]=i+j*N
end
end
end
function colrow(N)
A=zeros(N,N)
for i=1:N
for j=1:N
A[i,j]=i+j*N
end
end
end
println(rowcol(10000))