- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Does the "optimize across files" (/Qipo options) work from the setup within the integrated Studio.NET2003 environment? It seems to compile the Fortran files individually, but the documentations seems to imply that this option has the effect of producing a single .obj file for multiple .for/.f90 files specified on the same command line with ifort.
Link Copied
3 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes, it does. The .obj files are not real objects but rather they contain intermediate code. When it comes time to link, an Intel provided xilink.exe is called, and this collects all the objects and does the optimization and code generation, then calls the real linker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for the reassurement, Steve!
I assume some similar "magic" is also applied when the Fortran code is not linked directly, but just built to a library file, which is then later linked [statically] with a C++ project?
-+-Ben-+-
I assume some similar "magic" is also applied when the Fortran code is not linked directly, but just built to a library file, which is then later linked [statically] with a C++ project?
-+-Ben-+-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes.

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