- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hello Steve
I am trying to migrate from Compaq Visual Fortran to Intel fortran. I did what the page
http://software.intel.com/en-us/articles/migrating-from-compaq-visual-fortran/
tells. After trying to build the project I get
fatal error LNK1561: entry point must be defined
How to fix it? I am adding two files: the initial CVFproject and same project converted to intel.
The project is made of onesingle filewhich does nothing
program ...
...
stop
end
It would be great if you could help me out and give me a set of simple instructions how to migrate from CVF to intel
I am trying to migrate from Compaq Visual Fortran to Intel fortran. I did what the page
http://software.intel.com/en-us/articles/migrating-from-compaq-visual-fortran/
tells. After trying to build the project I get
fatal error LNK1561: entry point must be defined
How to fix it? I am adding two files: the initial CVFproject and same project converted to intel.
The project is made of onesingle filewhich does nothing
program ...
...
stop
end
It would be great if you could help me out and give me a set of simple instructions how to migrate from CVF to intel
コピーされたリンク
5 返答(返信)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Please do the following. Right click on the Project, select Properties. Click on the + next to Linker. On the General tab, remove the value for Additional Library Directories. On the Input tab, remove the two CXML libraries, leaving just kernel32.lib. Click OK and then rebuild the solution. Does this help?
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Quoting - Steve Lionel (Intel)
Please do the following. Right click on the Project, select Properties. Click on the + next to Linker. On the General tab, remove the value for Additional Library Directories. On the Input tab, remove the two CXML libraries, leaving just kernel32.lib. Click OK and then rebuild the solution. Does this help?
Thanks a lot! It seems to be working now!
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Glad to hear it. I recommend also removing the /MACHINE:I386 from the Linker > Command Line property page. It's harmless unless you try to convert this to an x64 configuration.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Quoting - Steve Lionel (Intel)
Glad to hear it. I recommend also removing the /MACHINE:I386 from the Linker > Command Line property page. It's harmless unless you try to convert this to an x64 configuration.
Hello Steve
Do you mind if I ask you couple of naive questions regarding adding MKL library here? I am moving from Compaque VFand havingnow aproblem with using LAPACK routines. First question:Arethe names of LAPACK routines same in MKL as in standars LAPACK package? If yes, then my second question iswhat would be the simplest way to link my project with MKL? I seem to have done what MKL manual tells to do but it does not work.
Thanks
Dmitry
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Dmitry,
Please ask your MKL questions in the MKL forum. There are lots of MKL experts there, not so many here...
Please ask your MKL questions in the MKL forum. There are lots of MKL experts there, not so many here...
