- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I try to compile my old CVF6.6 source code. But I always get an error message on USE DFWIN
"This is not a DEC Fortran module file [DFWIN]"
INTEGER FUNCTION mrqcof(hWnd, ... )
--> USE dfwin
INCLUDE 'param.inc'
What's wrong???
"This is not a DEC Fortran module file [DFWIN]"
INTEGER FUNCTION mrqcof(hWnd, ... )
--> USE dfwin
INCLUDE 'param.inc'
What's wrong???
コピーされたリンク
2 返答(返信)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Based on the symptom, I'm going to make the following guesses:
1. You have installed Intel Fortran.
2. You're trying to compile using CVF (whether you think you are or not, you are.)
The problem is this - installing Intel Fortran, even if you say no to integration with Visual Studio 6, inserts the INCLUDE and LIB paths for Intel Fortran ahead of the CVF paths, for both the command line and Developer Studio. CVF is finding the Intel Fortran DFWIN.MOD, which is incompatible with CVF.
To fix this - in Developer Studio (the CVF version), select Tools..Options..Directories. In the various directory types (Include, Library, Executable), delete the Intel Fortran directories from the lists.
That should take care of it. Note that you cannot have Intel Fortran using the Visual Studio 6 IDE when CVF is also installed - the two will conflict. You can use Intel Fortran from the command line, or in Visual Studio.NET, if you have it.
Steve
1. You have installed Intel Fortran.
2. You're trying to compile using CVF (whether you think you are or not, you are.)
The problem is this - installing Intel Fortran, even if you say no to integration with Visual Studio 6, inserts the INCLUDE and LIB paths for Intel Fortran ahead of the CVF paths, for both the command line and Developer Studio. CVF is finding the Intel Fortran DFWIN.MOD, which is incompatible with CVF.
To fix this - in Developer Studio (the CVF version), select Tools..Options..Directories. In the various directory types (Include, Library, Executable), delete the Intel Fortran directories from the lists.
That should take care of it. Note that you cannot have Intel Fortran using the Visual Studio 6 IDE when CVF is also installed - the two will conflict. You can use Intel Fortran from the command line, or in Visual Studio.NET, if you have it.
Steve