- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
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.
コピーされたリンク
3 返答(返信)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
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
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
...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
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
No - this won't work. IF 7.1 will refuse to compile it because it disallows STRUCTURE/RECORD in MODULEs.
Steve
Steve
