Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

What does the -Vaxlib option do?

john_low
Beginner
1,340 Views
I have noticed this in some makefiles i am using. It appears to have something to do MPI or linking routines written in C with Fortran routines. What does -Vaxlib ifort option do?
0 Kudos
3 Replies
Ron_Green
Moderator
1,340 Views
I have noticed this in some makefiles i am using. It appears to have something to do MPI or linking routines written in C with Fortran routines. What does -Vaxlib ifort option do?

-Vaxlib is an older option for the version 9.0 and older compilers and no longer exists. It linked in a compatibility library to provide routines supported on Vax Fortran amongst other routines. It really had nothing to do with MPI or C, although you may find some web search engine hits on these topics. It really was needed to bring in functions like GETARG and IARGC.

These routines are folded into the base libraries (libifcore) and thus -Vaxlib is no longer needed.

ron
0 Kudos
Neon_Ngo
Beginner
1,340 Views
What version of the Intel Fortran compiler no longer needs -Vaxlib option? ifort 9.1 and later? 10.0 and later?
0 Kudos
Steven_L_Intel1
Employee
1,340 Views
I'm not sure it was needed as of 8.0 - it was certainly misnamed.
0 Kudos
Reply