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

Print Project Compiler Settings

JKrob1
Beginner
424 Views

Is there a quick way to print out all my project compiler settings (Fortran and/or C++)?

 

Thanks in advance,

Jeff

0 Kudos
2 Replies
jimdempseyatthecove
Honored Contributor III
363 Views

With a little work on your part, you can build a batch file (or other language) to locate all the "BuildLog.htm" files in the project output folders of interest (blabla\x64\BuildLog.htm) and extract the file names and options therein.

 

Jim Dempsey

0 Kudos
jimdempseyatthecove
Honored Contributor III
363 Views

If your output files are positioned below some specific folder:

 

CD \ThatFolderHere

dir BuildLog.htm /s/b>logFiles.htm

 

Then you have a file list

 

*** Note, prior to doing this, perform a Clean, then build the configuration of interest. Not doing so will result in having Debug builds, Release builds and all other builds BuildLog.htm files listed.

 

Jim Dempsey

0 Kudos
Reply