- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hi,
I am using IVF compiler 9.1 with Microsoft Visual Studio 2005 and get the following error when trying to compile a module and newbie with Microsoft Visual Studio:
------ Build started: Project: xmlparser, Configuration: Debug|Win32 ------
Compiling with Intel Fortran 9.1 C:ProgrammeIntelCompilerFortran9.1IA32...
ifort /nologo /Zi /Od /gen-interfaces /warn:interfaces /traceback /check:bounds /libs:static /threads /dbglibs /Qvc8 /Qlocation,link,"C:Program FilesMicrosoft Visual Studio 8VCin" "H:VisualStudioUserIncludexmlparse.f90"
libifcoremt.lib(libifcoremain.obj) : error LNK2019: unresolved external symbol _MAIN__ referenced in function _main
xmlparse.exe : fatal error LNK1120: 1 unresolved externals
xmlparser build failed.
This is a module that is working. The problem must be me not getting along with MVS 2005.
Some ideas to solve this?
Jacques
コピーされたリンク
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
/c
This will prevent the linker from running as each source is compiled. The linker will be run after all sources are compiled.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Thanks, it works now!
This is quite a difficult one to figure out if youtry to compile for the firts time.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告