How to compile Cairo for Visual C++ 2008 (Express edition) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T06:31:09Z http://stackoverflow.com/feeds/question/85622 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/85622/how-to-compile-cairo-for-visual-c-2008-express-edition 4 How to compile Cairo for Visual C++ 2008 (Express edition) akauppi 2008-09-17T17:29:46Z 2008-09-19T09:05:12Z <p>Most precompiled Windows binaries are made with the MSYS+gcc toolchain. It uses MSVCRT runtime, which is incompatible with Visual C++ 2005/2008.</p> <p>So, how to go about and compile Cairo 1.6.4 (or later) for Visual C++ only. Including dependencies (png,zlib,pixman).</p> http://stackoverflow.com/questions/85622/how-to-compile-cairo-for-visual-c-2008-express-edition/91312#91312 1 Answer by Roel for How to compile Cairo for Visual C++ 2008 (Express edition) Roel 2008-09-18T09:55:52Z 2008-09-18T09:55:52Z <p>Did you check here: <a href="http://cairographics.org/visualstudio/" rel="nofollow">http://cairographics.org/visualstudio/</a> ? What do you mean 'It uses MSCVRT runtime, which is incompatible with Visual C++ 2005/2008' ? What are the exact problems you're having?</p> http://stackoverflow.com/questions/85622/how-to-compile-cairo-for-visual-c-2008-express-edition/96149#96149 0 Answer by akauppi for How to compile Cairo for Visual C++ 2008 (Express edition) akauppi 2008-09-18T19:41:43Z 2008-09-18T19:53:07Z <p>MSYS+gcc toolchain uses the old MSVCRT runtime library (now built into Windows) and Visual C++ 2005/2008 bring their own. It is a <a href="http://lua-users.org/lists/lua-l/2008-09/msg00077.html" rel="nofollow">known fact</a> that code should not depend on multiple runtimes. Passing things s.a. file handles, memory pointers etc. will be affected, and will cause apparently random crashes in such scenario.</p> <p>I have not been bitted by this. Then again, I don't really target Windows any more, either. But I've been told enough to not even try the solution.</p> <p>What could have worked, is linking all the dependencies statically into the lib (say, Cairomm). Static libs don't have a runtime bound to them, do they? But I did not try this. I actually got the VC++ building of all ingredients to work, but it took days.</p> <p>I hadn't found the URL you give. Strange in itself; I looked 'everywhere'. Then again, it is for Visual Studio 2003.NET, so two generations behind already.</p> http://stackoverflow.com/questions/85622/how-to-compile-cairo-for-visual-c-2008-express-edition/96168#96168 0 Answer by jfs for How to compile Cairo for Visual C++ 2008 (Express edition) jfs 2008-09-18T19:44:00Z 2008-09-18T19:44:00Z <p>I have done this, but I don't have any ready-written instructions. My builds are also rather minimal as I haven't needed support for eg. PNG and SVG files, I just used it to render generated vector graphics to memory buffers.</p> <p>But what I did was read through the <code>config.h</code> and other files for the UNIX/GNU build system and write my own suited for MSVC, and then create a project with the appropriate source files. It probably takes a few hours at best to do this, but when you're done it just works ;)</p> <p>Edit: Do see this page, it has an MSVC 2003 (7.1) project for building cairo: <a href="http://slinavlee.googlepages.com/" rel="nofollow">http://slinavlee.googlepages.com/</a></p> http://stackoverflow.com/questions/85622/how-to-compile-cairo-for-visual-c-2008-express-edition/100607#100607 4 Answer by akauppi for How to compile Cairo for Visual C++ 2008 (Express edition) akauppi 2008-09-19T08:58:22Z 2008-09-19T09:05:12Z <p>Here are instructions for building Cairo/Cairomm with Visual C++.</p> <p>Required:</p> <ul> <li>Visual C++ 2008 Express SP1 (now includes SDK)</li> <li>MSYS 1.0</li> </ul> <p>To use VC++ command line tools, a batch file 'vcvars32.bat' needs to be run.</p> <pre> C:\Program Files\Microsoft Visual Studio 9.0\Common7\Tools\vcvars32.bat </pre> <h2>ZLib</h2> <p>Download (and extract) zlib123.zip from <a href="http://www.zlib.net/" rel="nofollow">http://www.zlib.net/</a></p> <pre> cd zlib123 nmake /f win32/Makefile.msc dir # zlib.lib is the static library # # zdll.lib is the import library for zlib1.dll # zlib1.dll is the shared library </pre> <h2>libpng</h2> <p>Download (and extract) lpng1231.zip from <a href="http://www.libpng.org/pub/png/libpng.html" rel="nofollow">http://www.libpng.org/pub/png/libpng.html</a></p> <p>The VC++ 9.0 compiler gives loads of "this might be unsafe" warnings. Ignore them; this is MS security panic (the code is good).</p> <pre> cd lpng1231\lpng1231 # for some reason this is two stories deep nmake /f ../../lpng1231.nmake ZLIB_PATH=../zlib123 dir # libpng.lib is the static library # # dll is not being created </pre> <h2>Pixman</h2> <p>Pixman is part of Cairo, but a separate download.</p> <p>Download (and extract) pixman-0.12.0.tar.gz from <a href="http://www.cairographics.org/releases/" rel="nofollow">http://www.cairographics.org/releases/</a></p> <p>Use MSYS to untar via 'tar -xvzf pixman*.tar.gz'</p> <p>Both Pixman and Cairo have Makefiles for Visual C++ command line compiler (cl), but they use Gnu makefile and Unix-like tools (sed etc.). This means we have to run the make from within MSYS.</p> <p>Open a command prompt with VC++ command line tools enabled (try 'cl /?'). Turn that command prompt into an MSYS prompt by 'C:\MSYS\1.0\MSYS.BAT'.</p> <p>DO NOT use the MSYS icon, because then your prompt will now know of VC++. You cannot run .bat files from MSYS.</p> <p>Try that VC++ tools work from here: 'cl -?'</p> <p>Try that Gnu make also works: 'make -v'.</p> <p>Cool.</p> <pre> cd (use /d/... instead of D:) cd pixman-0.12.0/pixman make -f Makefile.win32 </pre> <p>This defaults to MMX and SSE2 optimizations, which require a newish x86 processor (Pentium 4 or Pentium M or above: <a href="http://fi.wikipedia.org/wiki/SSE2" rel="nofollow">http://fi.wikipedia.org/wiki/SSE2</a> )</p> <p>There's quite some warnings but it seems to succeed.</p> <pre> ls release # pixman-1.lib (static lib required by Cairo) </pre> <p>Stay in the VC++ spiced MSYS prompt for also Cairo to compile.</p> <h2>cairo</h2> <p>Download (and extract) cairo-1.6.4.tar.gz from <a href="http://www.cairographics.org/releases/" rel="nofollow">http://www.cairographics.org/releases/</a></p> <pre> cd cd cairo-1.6.4 </pre> <p>The Makefile.win32 here is almost good, but has the Pixman path hardwired.</p> <p>Use the modified 'Makefile-cairo.win32':</p> <pre> make -f ../Makefile-cairo.win32 CFG=release \ PIXMAN_PATH=../../pixman-0.12.0 \ LIBPNG_PATH=../../lpng1231 \ ZLIB_PATH=../../zlib123 </pre> <p>(Write everything on one line, ignoring the backslashes)</p> <p>It says "no rule to make 'src/cairo-features.h'. Use the manually prepared one (in Cairo > 1.6.4 there may be a 'src/cairo-features-win32.h' that you can simply rename):</p> <pre> cp ../cairo-features.h src/ </pre> <p>Retry the make command (arrow up remembers it).</p> <pre> ls src/release # # cairo-static.lib </pre> <h2>cairomm (C++ API)</h2> <p>Download (and extract) cairomm-1.6.4.tar.gz from <a href="http://www.cairographics.org/releases/" rel="nofollow">http://www.cairographics.org/releases/</a></p> <p>There is a Visual C++ 2005 Project that we can use (via open &amp; upgrade) for 2008.</p> <pre> cairomm-1.6.4\MSCV_Net2005\cairomm\cairomm.vcproj </pre> <p>Changes that need to be done:</p> <ul> <li><p>Change active configuration to "Release"</p></li> <li><p>Cairomm-1.0 properties (with right click menu)</p></li> </ul> <pre> C++/General/Additional Include Directories: ..\..\..\cairo-1.6.4\src (append to existing) Linker/General/Additional library directories: ..\..\..\cairo-1.6.4\src\release ..\..\..\lpng1231\lpng1231 ..\..\..\zlib123 Linker/Input/Additional dependencies: cairo-static.lib libpng.lib zlib.lib msimg32.lib </pre> <ul> <li>Optimization: fast FPU code</li> </ul> <pre> C++/Code generation/Floating point model Fast </pre> <p>Right click on 'cairomm-1.0' and 'build'. There are some warnings.</p> <pre> dir cairomm-1.6.4\MSVC_Net2005\cairomm\Release # # cairomm-1.0.lib # cairomm-1.0.dll # cairomm.def </pre>