<?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: grit &#8211; GBA Raster Image Transmogrifier</title>
	<atom:link href="http://www.coranac.com/projects/grit/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.coranac.com</link>
	<description>my own little world</description>
	<lastBuildDate>Thu, 08 Jul 2010 23:15:00 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: cearn</title>
		<link>http://www.coranac.com/projects/grit/comment-page-1/#comment-3051</link>
		<dc:creator>cearn</dc:creator>
		<pubDate>Wed, 14 Apr 2010 17:41:29 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/projects/grit/#comment-3051</guid>
		<description>Unfortunately, I&#039;m limited to Windows, so I can&#039;t really help much with linux. That&#039;s more wintermute&#039;s department. Unfortunately, &lt;code&gt;mkstemp()&lt;/code&gt; isn&#039;t standard, which is why I&#039;m using &lt;code&gt;tmpnam&lt;/code&gt;. IIRC, the warning isn&#039;t that serious. 

The slew of errors in FreeImage looks like an improper build of the library, particularly of some of the sub-libraries it uses (libpng and libjpeg, for example). But again I can&#039;t built on linux, so there&#039;s little I can do here. This is also the reason I can&#039;t bundle a linux-usable &lt;tt&gt;libfreeimage.a&lt;/tt&gt; &#8211; well, that and I don&#039;t know if it&#039;ll work for the various linuxes out there. I imagine if there were a one-size-fits-all that it&#039;d have been included in the FreeImage distribution.

You may have better luck on the &lt;a href=&quot;http://forums.devkitpro.org/viewforum.php?f=22&quot; rel=&quot;nofollow&quot;&gt;devkitPro forum&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Unfortunately, I&#8217;m limited to Windows, so I can&#8217;t really help much with linux. That&#8217;s more wintermute&#8217;s department. Unfortunately, <code>mkstemp()</code> isn&#8217;t standard, which is why I&#8217;m using <code>tmpnam</code>. IIRC, the warning isn&#8217;t that serious. </p>
<p> The slew of errors in FreeImage looks like an improper build of the library, particularly of some of the sub-libraries it uses (libpng and libjpeg, for example). But again I can&#8217;t built on linux, so there&#8217;s little I can do here. This is also the reason I can&#8217;t bundle a linux-usable <tt>libfreeimage.a</tt> &ndash; well, that and I don&#8217;t know if it&#8217;ll work for the various linuxes out there. I imagine if there were a one-size-fits-all that it&#8217;d have been included in the FreeImage distribution.</p>
<p> You may have better luck on the <a href="http://forums.devkitpro.org/viewforum.php?f=22" rel="nofollow">devkitPro forum</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nobody</title>
		<link>http://www.coranac.com/projects/grit/comment-page-1/#comment-3038</link>
		<dc:creator>nobody</dc:creator>
		<pubDate>Tue, 06 Apr 2010 10:59:13 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/projects/grit/#comment-3038</guid>
		<description>I cannot compile grit on linux:
either it stops with
[code]
g++  -s -static -o grit build/grit_main.o build/cli.o build/fi.o  -L. -lgrit -lcldib -lfreeimage
/usr/lib/gcc/x86_64-pc-linux-gnu/4.3.4/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lfreeimage
[/code]
, indicating that libfreeimage is only bundled as Windows-dll.

having installed freeimage-3.13.1 via http://bugs.gentoo.org/show_bug.cgi?id=307487, compilations stops with
[code]
g++  -s -static -o grit build/grit_main.o build/cli.o build/fi.o  -L. -lgrit -lcldib -lfreeimage                                                                             
./libgrit.a(grit_xp.o): In function `grit_xp_h(GritRec*)&#039;:                                                                                                                   
grit_xp.cpp:(.text+0x1a6b): warning: the use of `tmpnam&#039; is dangerous, better use `mkstemp&#039;                                                                                  
/usr/lib/gcc/x86_64-pc-linux-gnu/4.3.4/../../../../lib64/libfreeimage.a(PluginEXR.o): In function `C_OStream::write(char const*, int)&#039;:                                      
(.text+0x26a): undefined reference to `Iex::throwErrnoExc(std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;)&#039;
[/code]

and lots of other undefined references in libfreeimage.a (complete buildlog at &lt;a href=&quot;http://pastebin.com/9eAz6hGb&quot; title=&quot;http://pastebin.com/9eAz6hGb&quot; rel=&quot;nofollow&quot;&gt;

The makefile looks like you link statically on linux anyway, so how about bundling libfreeimage.a in a usable version as well ?</description>
		<content:encoded><![CDATA[<p>I cannot compile grit on linux:<br />
 either it stops with</p>
<div class="none">
<div class="none proglist" style=" ">g++ &nbsp;-s -static -o grit build/grit_main.o build/cli.o build/fi.o &nbsp;-L. -lgrit -lcldib -lfreeimage<br /> /usr/lib/gcc/x86_64-pc-linux-gnu/4.3.4/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lfreeimage</div>
</div>
<p> , indicating that libfreeimage is only bundled as Windows-dll.</p>
<p> having installed freeimage-3.13.1 via <a href="http://bugs.gentoo.org/show_bug.cgi?id=307487" rel="nofollow">http://bugs.gentoo.org/show_bug.cgi?id=307487</a>, compilations stops with</p>
<div class="none">
<div class="none proglist" style=" ">g++ &nbsp;-s -static -o grit build/grit_main.o build/cli.o build/fi.o &nbsp;-L. -lgrit -lcldib -lfreeimage &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br /> ./libgrit.a(grit_xp.o): In function `grit_xp_h(GritRec*)<span class="st0">&#8216;: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br /> grit_xp.cpp:(.text+0&#215;1a6b): warning: the use of `tmpnam&#8217;</span> is dangerous, better use `mkstemp<span class="st0">&#8216; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br /> /usr/lib/gcc/x86_64-pc-linux-gnu/4.3.4/../../../../lib64/libfreeimage.a(PluginEXR.o): In function `C_OStream::write(char const*, int)&#8217;</span>: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br /> (.text+0&#215;26a): undefined reference to `Iex::throwErrnoExc(std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;)<span class="st0">&#8216;</span></div>
</div>
<p> and lots of other undefined references in libfreeimage.a (complete buildlog at <a href="http://pastebin.com/9eAz6hGb" title="http://pastebin.com/9eAz6hGb" rel="nofollow"></p>
<p> The makefile looks like you link statically on linux anyway, so how about bundling libfreeimage.a in a usable version as well ?</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cearn</title>
		<link>http://www.coranac.com/projects/grit/comment-page-1/#comment-2996</link>
		<dc:creator>cearn</dc:creator>
		<pubDate>Wed, 24 Feb 2010 18:31:28 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/projects/grit/#comment-2996</guid>
		<description>Seems I misnamed the file, sorry. The link should work now.</description>
		<content:encoded><![CDATA[<p>Seems I misnamed the file, sorry. The link should work now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: s_hansse</title>
		<link>http://www.coranac.com/projects/grit/comment-page-1/#comment-2995</link>
		<dc:creator>s_hansse</dc:creator>
		<pubDate>Wed, 24 Feb 2010 15:36:16 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/projects/grit/#comment-2995</guid>
		<description>Can&#039;t download the binary as it cannot be found... :(</description>
		<content:encoded><![CDATA[<p>Can&#8217;t download the binary as it cannot be found&#8230; :(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: (Quick) Getting started: NDS Programming &#171; embedded programming on the nds</title>
		<link>http://www.coranac.com/projects/grit/comment-page-1/#comment-2884</link>
		<dc:creator>(Quick) Getting started: NDS Programming &#171; embedded programming on the nds</dc:creator>
		<pubDate>Thu, 24 Dec 2009 05:50:56 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/projects/grit/#comment-2884</guid>
		<description>[...] [ Download [...]</description>
		<content:encoded><![CDATA[<p>[...] [ Download [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: toney</title>
		<link>http://www.coranac.com/projects/grit/comment-page-1/#comment-2873</link>
		<dc:creator>toney</dc:creator>
		<pubDate>Wed, 23 Dec 2009 03:53:36 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/projects/grit/#comment-2873</guid>
		<description>I&#039;m using gcc 4.3 but carl&#039;s fix mentioned above works.
Should&#039;ve tried that, sorry!</description>
		<content:encoded><![CDATA[<p>I&#8217;m using gcc 4.3 but carl&#8217;s fix mentioned above works.<br />
 Should&#8217;ve tried that, sorry!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: toney</title>
		<link>http://www.coranac.com/projects/grit/comment-page-1/#comment-2872</link>
		<dc:creator>toney</dc:creator>
		<pubDate>Wed, 23 Dec 2009 03:43:28 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/projects/grit/#comment-2872</guid>
		<description>Because I&#039;m getting this error when I try to compile on linux:


srcgrit/grit_main.cpp:  793: error: no matching function for call to &#039;std::vector&lt;char*,std::allocator &gt;::insert(char**, __gnu_cxx::__normal_iterator&lt;char**, std::vector&lt;char*, std::allocator &gt; &gt;, __gnu_cxx::__normal_iterator&lt;char**, std::vector&lt;char*, std::allocator &gt; &gt; &gt;)
/usr/include/c++/4.3/bits/vector.tcc:94: note: candidates are: __gnu_cxx::__normal_iterator&lt;typename std::_Vector_base::__normal_iterator&lt;typename std::_Vector_base &gt; std::vector::insert(__gnu_cxx::normal_iterator&lt;typename std::_Vector_base::_Tp_alloc_type::pointer, std::vector &gt;, const_Tp&amp;) [with _Tp = char*, _Alloc = std::allocator]


C++ libs related?</description>
		<content:encoded><![CDATA[<p>Because I&#8217;m getting this error when I try to compile on linux:</p>
<p> srcgrit/grit_main.cpp:  793: error: no matching function for call to &#8217;std::vector&lt;char*,std::allocator &gt;::insert(char**, __gnu_cxx::__normal_iterator&lt;char**, std::vector&lt;char*, std::allocator &gt; &gt;, __gnu_cxx::__normal_iterator&lt;char**, std::vector&lt;char*, std::allocator &gt; &gt; &gt;)<br />
 /usr/include/c++/4.3/bits/vector.tcc:94: note: candidates are: __gnu_cxx::__normal_iterator&lt;typename std::_Vector_base::__normal_iterator&lt;typename std::_Vector_base &gt; std::vector::insert(__gnu_cxx::normal_iterator&lt;typename std::_Vector_base::_Tp_alloc_type::pointer, std::vector &gt;, const_Tp&amp;) [with _Tp = char*, _Alloc = std::allocator]</p>
<p> C++ libs related?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: toney</title>
		<link>http://www.coranac.com/projects/grit/comment-page-1/#comment-2870</link>
		<dc:creator>toney</dc:creator>
		<pubDate>Tue, 22 Dec 2009 22:54:37 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/projects/grit/#comment-2870</guid>
		<description>has anyone compiled grit on linux?</description>
		<content:encoded><![CDATA[<p>has anyone compiled grit on linux?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carl Ådahl</title>
		<link>http://www.coranac.com/projects/grit/comment-page-1/#comment-2564</link>
		<dc:creator>Carl Ådahl</dc:creator>
		<pubDate>Mon, 02 Nov 2009 11:49:03 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/projects/grit/#comment-2564</guid>
		<description>To make Grit compile with GCC 4.4, I had to make the following changes:

srcgrit/cli.cpp, line 11, add #include 
srcgrit/grit_main.cpp, line 793, add a cast to first argument: 
   args.insert((strvec::iterator)&amp;args[ii], files.begin(), files.end());</description>
		<content:encoded><![CDATA[<p>To make Grit compile with GCC 4.4, I had to make the following changes:</p>
<p> srcgrit/cli.cpp, line 11, add #include<br />
 srcgrit/grit_main.cpp, line 793, add a cast to first argument:<br />
    args.insert((strvec::iterator)&amp;args[ii], files.begin(), files.end());</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Embedding graphics in the DS using grit</title>
		<link>http://www.coranac.com/projects/grit/comment-page-1/#comment-1835</link>
		<dc:creator>Embedding graphics in the DS using grit</dc:creator>
		<pubDate>Thu, 12 Jun 2008 10:34:36 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/projects/grit/#comment-1835</guid>
		<description>[...] Grit (previous GIT which stands of &quot;GBA Image Transmogrifier&quot;) is an image conversion utility for the GBA and Nintendo DS. [...]</description>
		<content:encoded><![CDATA[<p>[...] Grit (previous GIT which stands of &quot;GBA Image Transmogrifier&quot;) is an image conversion utility for the GBA and Nintendo DS. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!--
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
</head>
<body>
<p>
My database has called in sick. Please imagine some 
annoying elevator tune till he gets back.
</p>
<p>
<small>[[Doo-di-doo tooo. Dum-di-dum-di-doo-dooo.]]</small>
</p>
</body>
</html>

-->