c - How to tell what version of Intel compiler was used to compile binary -
so relatively straightforward tell symbols embedded in executable if intel compiler used compile it, e.g. presence of symbols __intel_proc_init in executable.
is there way tell version of intel compiler used compile binary using similar diagnostics?
so think figured out partial answer own question. using strings utility, able extract following strings fortran executable:
@(#)intel fortran rtl message catalog v10.1-101 01-aug-2007
from fortran executable, found following strings:
/opt/intel/compiler/11.1/073/bin/intel64/ifort
@(#)intel fortran rtl message catalog v11.1-107 16-mar-2010
however, not able extract such string c compiled executables.
Comments
Post a Comment