- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have a simple Quickwin Fortran program that can be compiled by CVF 6.6 without any program. However, I always get the error in Intel Fortran 7.0. The major error is
Error FCE37 : Module DFLIB not found
Could anyone give me help. Many thanks.
Error FCE37 : Module DFLIB not found
Could anyone give me help. Many thanks.
Link Copied
3 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In Intel Fortran 7.x, you need to replace USE DFLIB with
INCLUDE 'FLIB.FD'
You may find some other changes are needed - Intel Fortran 7.x's QuickWin implementation is somewhat different from CVF's. This will all be reconciled in the future Intel Visual Fortran.
Steve
INCLUDE 'FLIB.FD'
You may find some other changes are needed - Intel Fortran 7.x's QuickWin implementation is somewhat different from CVF's. This will all be reconciled in the future Intel Visual Fortran.
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
...or, nicer, do it yourself:
MODULE DFLIB
INCLUDE "FLIB.FD"
END MODULE DFLIB
when/if porting to CVF/IVF, just remove the module above from the project.
Jugoslav
MODULE DFLIB
INCLUDE "FLIB.FD"
END MODULE DFLIB
when/if porting to CVF/IVF, just remove the module above from the project.
Jugoslav
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
No - this won't work. IF 7.1 will refuse to compile it because it disallows STRUCTURE/RECORD in MODULEs.
Steve
Steve

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