Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fails with "@unix_only not defined" #44

Open
dluciv opened this issue Aug 20, 2017 · 5 comments
Open

Fails with "@unix_only not defined" #44

dluciv opened this issue Aug 20, 2017 · 5 comments

Comments

@dluciv
Copy link

dluciv commented Aug 20, 2017

Fails with @unix_only not defined on:

  • Julia 0.6.0 64 bit Windows
  • Julia 0.6.0 32 bit Linux
@dluciv dluciv changed the title Fails with @unix_only is not defined Fails with "@unix_only not defined" Aug 20, 2017
@timofeymukha
Copy link

Experiencing this too.

@nodrygo
Copy link

nodrygo commented Sep 20, 2017

idem Linux Mint 64bits Julia 0.6.0

@akaldine
Copy link

7da95d8

@nodrygo
Copy link

nodrygo commented Sep 20, 2017

Works fine for simple code
thank's

@tomchor
Copy link

tomchor commented Apr 29, 2018

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants