BuildExecutable.jl icon indicating copy to clipboard operation
BuildExecutable.jl copied to clipboard

Fails with "@unix_only not defined"

Open dluciv opened this issue 7 years ago • 5 comments

Fails with @unix_only not defined on:

  • Julia 0.6.0 64 bit Windows
  • Julia 0.6.0 32 bit Linux

dluciv avatar Aug 20 '17 12:08 dluciv

Experiencing this too.

timofeymukha avatar Aug 20 '17 19:08 timofeymukha

idem Linux Mint 64bits Julia 0.6.0

nodrygo avatar Sep 20 '17 12:09 nodrygo

https://github.com/dhoegh/BuildExecutable.jl/commit/7da95d8855f90da89431eb8d11520e8c9f15ffac

akaldine avatar Sep 20 '17 15:09 akaldine

Works fine for simple code thank's

nodrygo avatar Sep 20 '17 18:09 nodrygo

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))

tomchor avatar Apr 29 '18 21:04 tomchor