- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Today is my day for fortran problems, apparently. For some reason, my compiler (IVF 8.1.029, VS.Net 2003, Win32) is running extremely slow. I'm just doing a debug build of some static libraries and console apps, and each file (maybe 300 lines each) takes about a minute to compile. (My machine is a Win2k box with a 3.2 GHz Intel P4, with 2 GB of RAM and 800 MHz bus.)
It is just a debug build (no optimizations, as set by the project properties). But at the end of the (long) compilation, it gives a link error: "error: problem during multi-file optimization compilation (code 1)".
This is almost certainly a personal problem, but does anyone have any ideas that would point me in the direction of a fix?
It is just a debug build (no optimizations, as set by the project properties). But at the end of the (long) compilation, it gives a link error: "error: problem during multi-file optimization compilation (code 1)".
This is almost certainly a personal problem, but does anyone have any ideas that would point me in the direction of a fix?
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
Perhaps you should try a rebuild all.
I noticed that Ialso had to rebuild all, otherwise I would get an "error: problem during multi-file optimization compilation (code 3)".
This is caused by an internal compiler error, when linkingobject files generated from different compiler versions (8.1.028 and 8.1.029):
Fatal Error: Release/netapi32.obj: Object's il version(1.16809.2.728) does not match the compiler's il version(1.16809.2.824).
Severe: **Internal compiler error: internal abort** Please report this error along with the circumstances in which it occurred in a Software Problem Report. Note: File and line given may not be explicit cause of this error.
in file (null), line 0, column 0
in file (null), line 0, column 0
Link: error: problem during multi-file optimization compilation (code 3)
Link: error: problem during multi-file optimization compilation (code 3)
Link: error: problem during multi-file optimization compilation (code 3)
netapi32.obj is not relevant, after recompiling this file the same error message appeared for another file.
Walter
Message Edited by wkramer on 03-18-2005 03:13 PM
Message Edited by wkramer on 03-18-2005 03:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
On the other hand you are also getting this error message for the debug version. I had this before, and the cause was missing
references to $(VCInstallDir)lib and $(VCInstallDir)PlatformSDKlib in the libraries section of Tools|Options|Intel Fortran|General http://softwareforums.intel.com/ids/board/message?board.id=5&message.id=12515#M12515
Walter

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