<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Installing C++ Boost on Microsoft Windows for Visual Studio .NET 2003/2005/Orcas</title>
	<atom:link href="http://beans.seartipy.com/2007/08/20/installing-c-boost-on-microsoft-windows-for-visual-studio-net-20032005/feed/" rel="self" type="application/rss+xml" />
	<link>http://beans.seartipy.com/2007/08/20/installing-c-boost-on-microsoft-windows-for-visual-studio-net-20032005/</link>
	<description>"The time has come...to talk of many [technologies]." --Lewis Carroll('The Walrus and the Carpenter')</description>
	<lastBuildDate>Thu, 11 Mar 2010 08:25:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Filesystem</title>
		<link>http://beans.seartipy.com/2007/08/20/installing-c-boost-on-microsoft-windows-for-visual-studio-net-20032005/comment-page-1/#comment-138225</link>
		<dc:creator>Filesystem</dc:creator>
		<pubDate>Tue, 09 Mar 2010 23:30:46 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2007/08/20/installing-c-boost-on-microsoft-windows-for-visual-studio-net-20032005/#comment-138225</guid>
		<description>I do have the same problem as Lars.
WTF 
&quot;fatal error LNK1104: cannot open file &#039;libboost_filesystem-vc71-sgd-1_38.lib&#039;
and indeed that variant of the file does not exist.
I have ...-mt-1_38.dll, -mt-1_38.lib, -mt-gd-1_38.dll, and -mt-gd-1_38.lib in my lib folder.&quot;
What is sgd ? Some static linking?
I tried to put ready-made &quot;libboost_filesystem-vc71-sgd-1_38.lib&quot; in subdirs in filesystem folder with no success, including
\boost\bin.v2\libs\filesystem\build\msvc-7.1\debug\link-static\runtime-link-static\
\boost\bin.v2\libs\filesystem\build\msvc-7.1\release\link-static\runtime-link-static\</description>
		<content:encoded><![CDATA[<p>I do have the same problem as Lars.<br />
WTF<br />
&#8220;fatal error LNK1104: cannot open file &#8216;libboost_filesystem-vc71-sgd-1_38.lib&#8217;<br />
and indeed that variant of the file does not exist.<br />
I have &#8230;-mt-1_38.dll, -mt-1_38.lib, -mt-gd-1_38.dll, and -mt-gd-1_38.lib in my lib folder.&#8221;<br />
What is sgd ? Some static linking?<br />
I tried to put ready-made &#8220;libboost_filesystem-vc71-sgd-1_38.lib&#8221; in subdirs in filesystem folder with no success, including<br />
\boost\bin.v2\libs\filesystem\build\msvc-7.1\debug\link-static\runtime-link-static\<br />
\boost\bin.v2\libs\filesystem\build\msvc-7.1\release\link-static\runtime-link-static\</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lars</title>
		<link>http://beans.seartipy.com/2007/08/20/installing-c-boost-on-microsoft-windows-for-visual-studio-net-20032005/comment-page-1/#comment-137629</link>
		<dc:creator>Lars</dc:creator>
		<pubDate>Tue, 09 Jun 2009 08:51:43 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2007/08/20/installing-c-boost-on-microsoft-windows-for-visual-studio-net-20032005/#comment-137629</guid>
		<description>Hi,
I&#039;m having a hard time getting an example program to link with the Boost Filesystem library.
I followed your procedure for installing boost for VS.NET 2003 (Visual C++ 7.1) as above. I selected *all* variants of the library just to be safe.
I also put in
#define BOOST_ALL_DYN_LINK
#define BOOST_LIB_DIAGNOSTIC
at the top of the file, and put the boost lib folder in my PATH and in Additional Library Directories.

Right now I&#039;m getting this error:

c:\Program Files\boost\boost_1_38\boost\config\auto_link.hpp(297) : fatal error C1189: #error :  &quot;Mixing a dll boost library with a static runtime is a really bad idea...&quot;

OK, I&#039;m glad to know it&#039;s finding the dll boost library, but... what do I do about this error??
I tried googling on it and found some discussion, but it was a bit over my head. Ideally I would prefer using a dll to using a static runtime, but I don&#039;t know what to change to stop using a static runtime.

Without the two #defines I mentioned above, I get the error
example fatal error LNK1104: cannot open file &#039;libboost_filesystem-vc71-sgd-1_38.lib&#039;
and indeed that variant of the file does not exist.
I have ...-mt-1_38.dll, -mt-1_38.lib, -mt-gd-1_38.dll, and -mt-gd-1_38.lib in my lib folder.
Do I have to build the -sgd- variant from source? Even though I used the Boost Consultancy installer and asked for all variants to be installed?

Thanks,
Lars</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#8217;m having a hard time getting an example program to link with the Boost Filesystem library.<br />
I followed your procedure for installing boost for VS.NET 2003 (Visual C++ 7.1) as above. I selected *all* variants of the library just to be safe.<br />
I also put in<br />
#define BOOST_ALL_DYN_LINK<br />
#define BOOST_LIB_DIAGNOSTIC<br />
at the top of the file, and put the boost lib folder in my PATH and in Additional Library Directories.</p>
<p>Right now I&#8217;m getting this error:</p>
<p>c:\Program Files\boost\boost_1_38\boost\config\auto_link.hpp(297) : fatal error C1189: #error :  &#8220;Mixing a dll boost library with a static runtime is a really bad idea&#8230;&#8221;</p>
<p>OK, I&#8217;m glad to know it&#8217;s finding the dll boost library, but&#8230; what do I do about this error??<br />
I tried googling on it and found some discussion, but it was a bit over my head. Ideally I would prefer using a dll to using a static runtime, but I don&#8217;t know what to change to stop using a static runtime.</p>
<p>Without the two #defines I mentioned above, I get the error<br />
example fatal error LNK1104: cannot open file &#8216;libboost_filesystem-vc71-sgd-1_38.lib&#8217;<br />
and indeed that variant of the file does not exist.<br />
I have &#8230;-mt-1_38.dll, -mt-1_38.lib, -mt-gd-1_38.dll, and -mt-gd-1_38.lib in my lib folder.<br />
Do I have to build the -sgd- variant from source? Even though I used the Boost Consultancy installer and asked for all variants to be installed?</p>
<p>Thanks,<br />
Lars</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phoenix</title>
		<link>http://beans.seartipy.com/2007/08/20/installing-c-boost-on-microsoft-windows-for-visual-studio-net-20032005/comment-page-1/#comment-137408</link>
		<dc:creator>Phoenix</dc:creator>
		<pubDate>Tue, 21 Oct 2008 13:36:13 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2007/08/20/installing-c-boost-on-microsoft-windows-for-visual-studio-net-20032005/#comment-137408</guid>
		<description>I&#039;d add one thing.

Code generation -&gt; Runtime Library (Multi-thread Debug (/MTd))

If you are going with Multithread Debug, static runtime.

Just to be sure.</description>
		<content:encoded><![CDATA[<p>I&#8217;d add one thing.</p>
<p>Code generation -&gt; Runtime Library (Multi-thread Debug (/MTd))</p>
<p>If you are going with Multithread Debug, static runtime.</p>
<p>Just to be sure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: deena abraham</title>
		<link>http://beans.seartipy.com/2007/08/20/installing-c-boost-on-microsoft-windows-for-visual-studio-net-20032005/comment-page-1/#comment-137233</link>
		<dc:creator>deena abraham</dc:creator>
		<pubDate>Thu, 14 Aug 2008 01:56:49 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2007/08/20/installing-c-boost-on-microsoft-windows-for-visual-studio-net-20032005/#comment-137233</guid>
		<description>i am student  am using visual c++ at home i do not have that software pls accept this thank you sir</description>
		<content:encoded><![CDATA[<p>i am student  am using visual c++ at home i do not have that software pls accept this thank you sir</p>
]]></content:encoded>
	</item>
</channel>
</rss>
