-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
File ccalltest.c needs ifdef #17145
Labels
help wanted
Indicates that a maintainer wants help on an issue or pull request
Comments
tkelman
added
the
help wanted
Indicates that a maintainer wants help on an issue or pull request
label
Jun 29, 2016
I encountered the same problem. as suggested, comment the error code works, but this is a dirty fix. |
there's also a lot of code in that file that MSVC can't compile due to lack of c99 complex support, which should probably also be addressed with appropriate ifdefs. |
ehsantn
pushed a commit
to ehsantn/julia
that referenced
this issue
Aug 22, 2016
Complex int is GNU extension that Intel compiler does not support currently. JuliaLang#17145
ehsantn
pushed a commit
to ehsantn/julia
that referenced
this issue
Aug 22, 2016
Complex int is GNU extension that Intel compiler does not support currently. JuliaLang#17145
tkelman
pushed a commit
that referenced
this issue
Aug 23, 2016
Complex int is GNU extension that Intel compiler does not support currently. #17145
tkelman
pushed a commit
that referenced
this issue
Aug 29, 2016
mfasi
pushed a commit
to mfasi/julia
that referenced
this issue
Sep 5, 2016
Complex int is GNU extension that Intel compiler does not support currently. JuliaLang#17145
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Refer to this ticket:
https://groups.google.com/forum/#!topic/julia-users/PMrAfbaHwIE
The usage of "complex int" is afaik a gcc extension and needs to be ifdef'fed out for the Intel compiler. (At least Intel 15, which is the latest that I'm using.)
The text was updated successfully, but these errors were encountered: