[julia-users] Re: Installing with Intel compiler

2016-06-24 Thread Victor Eijkhout
I wish I could supply some general help. Here's the story as I understand 
it: the latest Intel compilers rely on gcc for full C++11 and higher 
support. That means you have to specify some tricky combination of Intel & 
gcc setup. On my system this was done by someone else, so I don't know the 
details. Here's the script that loads C++ support:

prepend_path("PATH","/opt/apps/gcc/4.9.1/bin")

prepend_path("LD_LIBRARY_PATH","/opt/apps/gcc/4.9.1/lib")

prepend_path("LD_LIBRARY_PATH","/opt/apps/gcc/4.9.1/lib64")


(that's lua, btw, but the meaning is obvious)


If you know what to ask me I'll be happy to dig further, but right now I 
can't explicitly tell you what Intel icpc uses from gcc to obtain C++1y 
functionality.


Victor.


[julia-users] Re: Installing with Intel compiler

2016-06-23 Thread Tony Kelman
We'd welcome notes or adjustments if necessary to keep the Intel compilers 
working. We don't test against them very often at all. If the license 
agreement or the hardware resources we had available allowed us to do so, 
we'd like to test more regularly and ensure the build system and code works 
properly with Intel tools.


On Thursday, June 23, 2016 at 9:54:12 AM UTC-4, Victor Eijkhout wrote:
>
> Ok, feel free to close this ticket. By putting enough gcc stuff in the 
> path I managed to get it to install in the Intel compiler. At least I think 
> it's doing that. The configure messages are still quite ambiguous.
>
> V.
>


[julia-users] Re: Installing with Intel compiler

2016-06-23 Thread Victor Eijkhout
Ok, feel free to close this ticket. By putting enough gcc stuff in the path 
I managed to get it to install in the Intel compiler. At least I think it's 
doing that. The configure messages are still quite ambiguous.

V.