- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you google it, there are several posts about this topic: After switching from Intel Fortran 9.1 to 10.0.027 we started getting an unresolved external ___intel_f2int when linking some release DLLs. Debug DLLs do not give the error.
Lionel has suggested in another post about this subject that you should check your library path to make sure you are not still linking in against 9.1. This seems to be the general cause of this. In our case we checked using the /verbose link option and all the Fortran paths were to 10.0, but we still got this error.
We use our own make files and since we support multiple compilers and mix different languages, we explicitly state against which compiler libraries we want to link.
So I used dumpbin in the Intel library directory to try and find out which library was missing and after some trial and error, it seems that the culprit LIB file that you need is libircmt.lib (maybe libirc.lib if you are using single threaded I guess).
So we added this lib to our list of library files and the unresolved error went away.
Oddly enough dumpbin says that intel_f2int is an export from several libraries including this one...
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is there any news on this i just tried 10.1.019 and my Win32 Release version gets this unsatisfied ref ___intel f2int but my Win32 Debug version works flawlessly
I have disabled Optimisation on my Win32 Release version and It now links ok so is some weird optimizer thing
Admitedly I am not using the fortran to link the program as the fortran bits are just subroutines compiled into a library.lib linked into my .net program
I tried linking with the libirc library but made no difference
Please someone reply :(
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for the reply Tim8,
I finaly found out using linker /Verbose that a third party gfx vendor was supplyign old 9.1 .libs (including libirc.lib) and these were in the link path i removed them and used your libirc.lib suggestion and i can now link with optimization again.
Many thanks for the ideas

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page