Re: [OMPI users] Issues with compilers

2021-02-02 Thread Alvaro Payero Pinto via users
Hello Jeff, I could make the wrapper works. However, I found the the issue with the link phase. The new wrapper is as following: - #!/bin/bash WORDTOREMOVE1="-static-intel" WORDTOREMOVE2="-Wc,$WORDTOREMOVE1" CMD="gcc" for ARG in "$

Re: [OMPI users] Issues with compilers

2021-02-01 Thread Jeff Squyres (jsquyres) via users
Can you `make V=1` for that orte-info build? That will show us the exact command that was used to build orte-info (vs. just the abbreviated "CCorte-info.o" On Feb 1, 2021, at 4:50 AM, Alvaro Payero Pinto <10alvaro...@gmail.com> wrote: Hi Jeff, First of all,

Re: [OMPI users] Issues with compilers

2021-01-22 Thread Reuti via users
Hi, what about putting the "-static-intel" into a configuration file for the Intel compiler. Besides the default configuration, one can have a local one and put the path in an environment variable IFORTCFG (there are other ones for C/C++). $ cat myconf --version $ export IFORTCFG=/home/reuti/m

Re: [OMPI users] Issues with compilers

2021-01-22 Thread Brian Dobbins via users
As a work-around, but not a 'solution', it's worth pointing out that the (new) Intel compilers are now *usable* for free - no licensing cost or login needed. (As are the MKL, Intel MPI, etc). Link: https://software.intel.com/content/www/us/en/develop/tools/oneapi/all-toolkits.html They've got Yu

Re: [OMPI users] Issues with compilers

2021-01-22 Thread Jeff Squyres (jsquyres) via users
On Jan 22, 2021, at 9:49 AM, Alvaro Payero Pinto via users wrote: > > I am trying to install Open MPI with Intel compiler suite for the Fortran > side and GNU compiler suite for the C side. For factors that don’t depend > upon me, I’m not allowed to change the C compiler suite to Intel one sin