a classical off topic. I am trying to make a simulation of earths magnetosphere, for that reason I researched a lot. Now there is something called the Tsynagenko Model and its written in fortran.
http://geo.phys.spbu.ru/~tsyganenko/modeling.html
Also I found f2c a fortran to c translation app and library for linking.
http://www.netlib.org/f2c/
Now I have succeeded in translating the original fortran code but I have failed building the f2c lib for windows (called vcf2c.lib) using nmake and a makefile... I thought I post the console output here, but I just realized it's longer than 900 lines, so I try to explain. It builds all the objects and fails linking them.
Since Loading.obj is not really referenced anywhere I guessed it must be either a minute mistake in the makefile or my messed up visual studio installation, not sure... So I downloaded a precompiled vcf2c.lib and included it for linking...LINK : fatal error LNK1181: Eingabedatei "Loading.obj" kann nicht geöffnet werde
n.
NMAKE : fatal error U1077: ".\comptry.bat": Rückgabe-Code "0x2"
Stop.
Now I get other linker errors, which either come from a mismatch release/debug or because the version I downloaded was not compiled with visual studio or because there is some multithreaded / singlethreaded conflict... not sure...#pragma comment(lib,"vcf2c.lib")
Code: Select all
1>libcmt.lib(tidtable.obj) : error LNK2005: __encode_pointer ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>libcmt.lib(tidtable.obj) : error LNK2005: __decode_pointer ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>libcmt.lib(invarg.obj) : error LNK2005: __invoke_watson ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>libcmt.lib(crt0dat.obj) : error LNK2005: __initterm_e ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>libcmt.lib(crt0dat.obj) : error LNK2005: __amsg_exit ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>libcmt.lib(crt0dat.obj) : error LNK2005: _exit ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>libcmt.lib(crt0dat.obj) : error LNK2005: __exit ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>libcmt.lib(crt0dat.obj) : error LNK2005: __cexit ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>libcmt.lib(mlock.obj) : error LNK2005: __unlock ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>libcmt.lib(mlock.obj) : error LNK2005: __lock ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>libcmt.lib(setlocal.obj) : error LNK2005: __configthreadlocale ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>libcmt.lib(winxfltr.obj) : error LNK2005: __XcptFilter ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>libcmt.lib(crt0init.obj) : error LNK2005: ___xi_a ist bereits in MSVCRT.lib(cinitexe.obj) definiert.
1>libcmt.lib(crt0init.obj) : error LNK2005: ___xi_z ist bereits in MSVCRT.lib(cinitexe.obj) definiert.
1>libcmt.lib(crt0init.obj) : error LNK2005: ___xc_a ist bereits in MSVCRT.lib(cinitexe.obj) definiert.
1>libcmt.lib(crt0init.obj) : error LNK2005: ___xc_z ist bereits in MSVCRT.lib(cinitexe.obj) definiert.
1>libcmt.lib(hooks.obj) : error LNK2005: "void __cdecl terminate(void)" (?terminate@@YAXXZ) ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>libcmt.lib(crt0.obj) : error LNK2005: _mainCRTStartup ist bereits in MSVCRT.lib(crtexe.obj) definiert.
1>libcmt.lib(errmode.obj) : error LNK2005: ___set_app_type ist bereits in MSVCRT.lib(MSVCR80.dll) definiert.
1>LINK : warning LNK4098: Standardbibliothek "MSVCRT" steht in Konflikt mit anderen Bibliotheken; /NODEFAULTLIB:Bibliothek verwenden.
1>MSVCRT.lib(cinitexe.obj) : warning LNK4098: Standardbibliothek "libcmt.lib" steht in Konflikt mit anderen Bibliotheken; /NODEFAULTLIB:Bibliothek verwenden.
1>C:\Dokumente und Einstellungen\tobi\Eigene Dateien\Visual Studio 2005\Projects\irrSolarSystem\Release\irrSolarSystem.exe : fatal error LNK1169: Mindestens ein mehrfach definiertes Symbol gefunden.
1>Das Buildprotokoll wurde unter "file://c:\Dokumente und Einstellungen\tobi\Eigene Dateien\Visual Studio 2005\Projects\irrSolarSystem\irrSolarSystem\Release\BuildLog.htm" gespeichert.
1>irrSolarSystem - 20 Fehler, 2 Warnung(en)
http://msdn.microsoft.com/en-us/library ... S.71).aspx
thx in advance