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

ifort compilation summary

efengle
Novice
513 Views

I am currently working on a Cray HPC.  I am using Intel Fortran, but through Cray's recommended Fortran front-end wrapper, ftn.  Is there an ifort compiler option that will provide a compilation/linking summary of all flags used for compiling, linking, along with libraries/includes that were used?

Thanks!

0 Kudos
2 Replies
Kevin_D_Intel
Employee
513 Views

Try: -dryrun

This just shows the details, it doesn't execute the commands. Discussed in the ifort User's Guide: https://software.intel.com/en-us/node/579633

0 Kudos
Steven_L_Intel1
Employee
513 Views

There's also -list that generates a listing file (.lst file type). This include a summary at the end of everything you asked for.

0 Kudos
Reply