compiling openttd with VS2005 - linker errors in freetype - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T19:58:44Z http://stackoverflow.com/feeds/question/422312 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/422312/compiling-openttd-with-vs2005-linker-errors-in-freetype 1 compiling openttd with VS2005 - linker errors in freetype lieutenanth 2009-01-07T21:59:30Z 2009-01-07T22:45:58Z <p>Well, here's a nice obscure one. I'm trying to compile the latest open transport tycoon source in Visual Studio 2005. (It's a C++ app that uses zlib, dx8 and a few other fairly common libraries).</p> <p>I get a few linker errors to do with the freetype dependencies:</p> <pre><code>Error 1 error LNK2001: unresolved external symbol @FT_Done_Face@4 fontcache.obj Error 2 error LNK2001: unresolved external symbol @FT_Load_Char@12 fontcache.obj Error 3 error LNK2001: unresolved external symbol @FT_Init_FreeType@4 fontcache.obj Error 4 error LNK2001: unresolved external symbol @FT_Select_Charmap@8 fontcache.obj Error 5 error LNK2001: unresolved external symbol @FT_Set_Charmap@8 fontcache.obj Error 6 error LNK2001: unresolved external symbol @FT_New_Face@16 fontcache.obj Error 7 error LNK2001: unresolved external symbol @FT_Render_Glyph@8 fontcache.obj Error 8 error LNK2001: unresolved external symbol @FT_Set_Pixel_Sizes@12 fontcache.obj Error 9 fatal error LNK1120: 8 unresolved externals ..\objs\Win32\Release\\openttd.exe </code></pre> <p>I've downloaded the most recent freetype stable and compiled it (also in VS2005), and put the ft2build.h and freetype include directories into my VS8/VC/include directory, and put the libfreetype2.lib library so compiled into my VS8/VC/lib directory. What could I be missing?</p> <p>Thanks!</p> http://stackoverflow.com/questions/422312/compiling-openttd-with-vs2005-linker-errors-in-freetype/422448#422448 1 Answer by ChrisN for compiling openttd with VS2005 - linker errors in freetype ChrisN 2009-01-07T22:27:09Z 2009-01-07T22:45:58Z <p>The <code>@</code> sign at the start of the mangled function names show that your <code>fontcache.obj</code> file is expecting these functions to have the <code>__fastcall</code> calling convention, which is unusual as the default calling convention is <code>__cdecl</code>. I suspect there's a mismatch somewhere in the compiler settings used to build the libraries and those used to build the application. See <a href="http://en.wikipedia.org/wiki/Name_mangling" rel="nofollow">here</a> and <a href="http://msdn.microsoft.com/en-us/library/46t77ak2.aspx" rel="nofollow">here</a> for more information.</p>