<?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: Building Perl modules for Solaris</title>
	<atom:link href="http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/feed/" rel="self" type="application/rss+xml" />
	<link>http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/</link>
	<description>Blog O' Matty</description>
	<lastBuildDate>Fri, 04 May 2012 19:58:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: shurikroger</title>
		<link>http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/comment-page-1/#comment-831252</link>
		<dc:creator>shurikroger</dc:creator>
		<pubDate>Tue, 14 Feb 2012 07:50:25 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/#comment-831252</guid>
		<description>/usr/perl5/5.8.4/bin/perlgcc Makefile.PL; make</description>
		<content:encoded><![CDATA[<p>/usr/perl5/5.8.4/bin/perlgcc Makefile.PL; make</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anoopv</title>
		<link>http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/comment-page-1/#comment-829571</link>
		<dc:creator>anoopv</dc:creator>
		<pubDate>Mon, 20 Sep 2010 16:01:08 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/#comment-829571</guid>
		<description>I got the DBI and DBD:Oracle modules compiled successfully with gcc 3.4.6 and perl 5.8.4 with the instructions mentioned here. However, while running, DBI is complaining with the following error:

--
install_driver(Oracle) failed: Unable to get DBI state from DBI::_dbistate at 14d580. DBI not loaded. at /usr/perl5/5.8.4/lib/sun4-solaris-64int/DynaLoader.pm line 253.
Compilation failed in require at (eval 4) line 3.
--

Any pointers on what the problem could be?</description>
		<content:encoded><![CDATA[<p>I got the DBI and DBD:Oracle modules compiled successfully with gcc 3.4.6 and perl 5.8.4 with the instructions mentioned here. However, while running, DBI is complaining with the following error:</p>
<p>&#8211;<br />
install_driver(Oracle) failed: Unable to get DBI state from DBI::_dbistate at 14d580. DBI not loaded. at /usr/perl5/5.8.4/lib/sun4-solaris-64int/DynaLoader.pm line 253.<br />
Compilation failed in require at (eval 4) line 3.<br />
&#8211;</p>
<p>Any pointers on what the problem could be?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/comment-page-1/#comment-794563</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Mon, 01 Jun 2009 22:43:11 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/#comment-794563</guid>
		<description>Great blog. I searched high and low for a solution to compiling DBD on Solaris 10. In the end I decided to go with the instructions in the following link: http://hivearchive.com/category/perl/

After removing SUNW Perl (core) and CSWperl and installing the gcc compiled package from sunfreeware, DBI compiled without any issues.</description>
		<content:encoded><![CDATA[<p>Great blog. I searched high and low for a solution to compiling DBD on Solaris 10. In the end I decided to go with the instructions in the following link: <a href="http://hivearchive.com/category/perl/" rel="nofollow">http://hivearchive.com/category/perl/</a></p>
<p>After removing SUNW Perl (core) and CSWperl and installing the gcc compiled package from sunfreeware, DBI compiled without any issues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Riccardo Murri</title>
		<link>http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/comment-page-1/#comment-653602</link>
		<dc:creator>Riccardo Murri</dc:creator>
		<pubDate>Thu, 20 Nov 2008 15:28:03 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/#comment-653602</guid>
		<description>Hi - thanks for this post, it contains the solution I&#039;ve been googling after for a long time!

After reading it, I created a simple wrapper script that will invoke &quot;gcc&quot; and remove the offending options:

https://twiki.cscs.ch/twiki/bin/viewfile/LCGTier2/PhoenixBlog20081120x1505?filename=perlcc

I installed it as &quot;/usr/bin/cc&quot; and now &quot;cpan -i Time::HiRes&quot; works fine.</description>
		<content:encoded><![CDATA[<p>Hi &#8211; thanks for this post, it contains the solution I&#8217;ve been googling after for a long time!</p>
<p>After reading it, I created a simple wrapper script that will invoke &#8220;gcc&#8221; and remove the offending options:</p>
<p><a href="https://twiki.cscs.ch/twiki/bin/viewfile/LCGTier2/PhoenixBlog20081120x1505?filename=perlcc" rel="nofollow">https://twiki.cscs.ch/twiki/bin/viewfile/LCGTier2/PhoenixBlog20081120x1505?filename=perlcc</a></p>
<p>I installed it as &#8220;/usr/bin/cc&#8221; and now &#8220;cpan -i Time::HiRes&#8221; works fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy McMillan</title>
		<link>http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/comment-page-1/#comment-297090</link>
		<dc:creator>Jeremy McMillan</dc:creator>
		<pubDate>Fri, 29 Feb 2008 23:30:46 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/#comment-297090</guid>
		<description>OK, I&#039;m in the same boat as Tmack. I&#039;m looking at the Config_heavy.pl, and I don&#039;t like editing that crap. If I have to, I will post my results here.</description>
		<content:encoded><![CDATA[<p>OK, I&#8217;m in the same boat as Tmack. I&#8217;m looking at the Config_heavy.pl, and I don&#8217;t like editing that crap. If I have to, I will post my results here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tmack</title>
		<link>http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/comment-page-1/#comment-191718</link>
		<dc:creator>Tmack</dc:creator>
		<pubDate>Thu, 10 Jan 2008 00:37:42 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/#comment-191718</guid>
		<description>wrt previous comment, the perl version I used requiring the extra steps is not the one installed w/solaris, but a blastwave package, which does things a little different (thus the extra files and flags) and uses perl 5.8.8 .</description>
		<content:encoded><![CDATA[<p>wrt previous comment, the perl version I used requiring the extra steps is not the one installed w/solaris, but a blastwave package, which does things a little different (thus the extra files and flags) and uses perl 5.8.8 .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tmack</title>
		<link>http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/comment-page-1/#comment-191651</link>
		<dc:creator>Tmack</dc:creator>
		<pubDate>Wed, 09 Jan 2008 23:53:12 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/#comment-191651</guid>
		<description>You might also need to edit Config_heavy.pl (in the same dir as the Config.pm) to edit the flags and make CPAN.pm happy, since it is req&#039;d in Config.pm. Another flag that might need removal is -xarch=386, it still complains with that present on an x2200.</description>
		<content:encoded><![CDATA[<p>You might also need to edit Config_heavy.pl (in the same dir as the Config.pm) to edit the flags and make CPAN.pm happy, since it is req&#8217;d in Config.pm. Another flag that might need removal is -xarch=386, it still complains with that present on an x2200.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/comment-page-1/#comment-49432</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 05 Apr 2007 23:37:19 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/#comment-49432</guid>
		<description>perlgcc failed to install PathTools-3.24 on my sparc Solaris 10 system.
I also got make errors when I tried matty&#039;s edits in Config.pm. Gonna try installing Sun Studio, see how that works.</description>
		<content:encoded><![CDATA[<p>perlgcc failed to install PathTools-3.24 on my sparc Solaris 10 system.<br />
I also got make errors when I tried matty&#8217;s edits in Config.pm. Gonna try installing Sun Studio, see how that works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Gallagher</title>
		<link>http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/comment-page-1/#comment-30689</link>
		<dc:creator>Andrew Gallagher</dc:creator>
		<pubDate>Tue, 01 Aug 2006 21:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/#comment-30689</guid>
		<description>perlgcc is included in solaris 10.  /usr/perl5/bin/perlgcc</description>
		<content:encoded><![CDATA[<p>perlgcc is included in solaris 10.  /usr/perl5/bin/perlgcc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Gallagher</title>
		<link>http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/comment-page-1/#comment-30688</link>
		<dc:creator>Andrew Gallagher</dc:creator>
		<pubDate>Tue, 01 Aug 2006 21:25:14 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2006/07/29/building-perl-modules-for-solaris/#comment-30688</guid>
		<description>The perlgcc module will not work with perl 5.8.4.  See the README for Solaris-PerlGcc.</description>
		<content:encoded><![CDATA[<p>The perlgcc module will not work with perl 5.8.4.  See the README for Solaris-PerlGcc.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

