<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Using Boost C++ libraries with gcc / g++ under Windows</title>
	<link>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows</link>
	<description>One Blog Is Not Enough</description>
	<pubDate>Tue, 06 Jan 2009 06:07:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>

	<item>
		<title>By: leblanc meneses</title>
		<link>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-18068</link>
		<author>leblanc meneses</author>
		<pubDate>Sun, 30 Nov 2008 04:11:51 +0000</pubDate>
		<guid>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-18068</guid>
		<description>Hey thanks for this write up.

regex.cpp:8: error: unknown escape sequence '\s'

i ended up changing the argument for regex initialization to:
regex re(",&#124;:&#124;-&#124;\\s+");

is this just my compiler or is there another way to escape so i can just leave it as \s?

&#62;kind of defeats the whole point of being platform independent

here's my Makefile
all: regex.o
	g++ -Wall -o targetexe regex.cpp -lboost_regex


also concerning your code sample; line with cout seems to be missing the backslash for newline.


you know any other blogs dedicated to c++?</description>
		<content:encoded><![CDATA[<p>Hey thanks for this write up.</p>
<p>regex.cpp:8: error: unknown escape sequence &#8216;\s&#8217;</p>
<p>i ended up changing the argument for regex initialization to:<br />
regex re(&#8221;,|:|-|\\s+&#8221;);</p>
<p>is this just my compiler or is there another way to escape so i can just leave it as \s?</p>
<p>&gt;kind of defeats the whole point of being platform independent</p>
<p>here&#8217;s my Makefile<br />
all: regex.o<br />
	g++ -Wall -o targetexe regex.cpp -lboost_regex</p>
<p>also concerning your code sample; line with cout seems to be missing the backslash for newline.</p>
<p>you know any other blogs dedicated to c++?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Regular Expressions in C++ using NetBeans and Boost &#171; Projects 2008</title>
		<link>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-12160</link>
		<author>Regular Expressions in C++ using NetBeans and Boost &#171; Projects 2008</author>
		<pubDate>Sat, 11 Oct 2008 03:49:14 +0000</pubDate>
		<guid>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-12160</guid>
		<description>[...] http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] <a href="http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows" rel="nofollow"></a><a href='http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows'>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows</a> [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Regular Expressions in C++ using NetBeans and Boost &#171; Projects 2008</title>
		<link>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-12159</link>
		<author>Regular Expressions in C++ using NetBeans and Boost &#171; Projects 2008</author>
		<pubDate>Sat, 11 Oct 2008 03:41:29 +0000</pubDate>
		<guid>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-12159</guid>
		<description>[...] For windows&#8217; folks http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] For windows&#8217; folks <a href="http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows" rel="nofollow"></a><a href='http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows'>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows</a> [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Rios</title>
		<link>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-10562</link>
		<author>Alexander Rios</author>
		<pubDate>Fri, 26 Sep 2008 20:43:19 +0000</pubDate>
		<guid>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-10562</guid>
		<description>Thank you.
Your advice worked great.
I found this using Google.</description>
		<content:encoded><![CDATA[<p>Thank you.<br />
Your advice worked great.<br />
I found this using Google.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nzodd</title>
		<link>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-7641</link>
		<author>nzodd</author>
		<pubDate>Thu, 19 Jun 2008 17:14:17 +0000</pubDate>
		<guid>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-7641</guid>
		<description>bahadir:
you could try adding the line "/usr/local/lib" without quotes to the file /etc/ld.so.conf (create it first if it doesn't exist), run the command "export LD_LIBRARY_PATH=/usr/local/lib", and then run the command ldconfig.  This should (hopefully) ensure that when programs try to load dynamic libraries (like libboost_regex-gcc42-mt-1_35.so.1.35.0), they will search through /usr/local/lib, which seems to be the default installation directory for boost.

Now if only I could figure out how to use a compiler flag like -l boost_regex, instead of -l boost_regex-gcc42-mt-1_35.so.whatever ... kind of defeats the whole point of being platform independent</description>
		<content:encoded><![CDATA[<p>bahadir:<br />
you could try adding the line &#8220;/usr/local/lib&#8221; without quotes to the file /etc/ld.so.conf (create it first if it doesn&#8217;t exist), run the command &#8220;export LD_LIBRARY_PATH=/usr/local/lib&#8221;, and then run the command ldconfig.  This should (hopefully) ensure that when programs try to load dynamic libraries (like libboost_regex-gcc42-mt-1_35.so.1.35.0), they will search through /usr/local/lib, which seems to be the default installation directory for boost.</p>
<p>Now if only I could figure out how to use a compiler flag like -l boost_regex, instead of -l boost_regex-gcc42-mt-1_35.so.whatever &#8230; kind of defeats the whole point of being platform independent</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan</title>
		<link>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-7390</link>
		<author>Stefan</author>
		<pubDate>Tue, 03 Jun 2008 09:07:55 +0000</pubDate>
		<guid>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-7390</guid>
		<description>This tutorial just addresses Cygwin installations; I don't know what problems may arise with linux. Sorry.</description>
		<content:encoded><![CDATA[<p>This tutorial just addresses Cygwin installations; I don&#8217;t know what problems may arise with linux. Sorry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bahadir</title>
		<link>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-7283</link>
		<author>bahadir</author>
		<pubDate>Mon, 26 May 2008 20:58:28 +0000</pubDate>
		<guid>http://www.fischerlaender.net/development/using-boost-c-libraries-with-gcc-g-under-windows#comment-7283</guid>
		<description>hello,

i applied this tutorial in my linux system but i get this error:

 error while loading shared libraries: libboost_regex-gcc42-mt-1_35.so.1.35.0: cannot open shared object file: No such file or directory

what can be the cause?have you any idea?
thanks...</description>
		<content:encoded><![CDATA[<p>hello,</p>
<p>i applied this tutorial in my linux system but i get this error:</p>
<p> error while loading shared libraries: libboost_regex-gcc42-mt-1_35.so.1.35.0: cannot open shared object file: No such file or directory</p>
<p>what can be the cause?have you any idea?<br />
thanks&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
