<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Coding Naked in a Box of Rats</title>
	<atom:link href="http://codingnaked.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://codingnaked.wordpress.com</link>
	<description>My thoughts on programming</description>
	<lastBuildDate>Tue, 17 Nov 2009 17:00:18 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Build and install cx_Oracle on MacOS X Leopard Intel by Robert Myers</title>
		<link>http://codingnaked.wordpress.com/2008/05/07/build-and-install-cx_oracle-on-macos-x-leopard-intel/#comment-66</link>
		<dc:creator>Robert Myers</dc:creator>
		<pubDate>Tue, 17 Nov 2009 17:00:18 +0000</pubDate>
		<guid isPermaLink="false">http://codingnaked.wordpress.com/?p=5#comment-66</guid>
		<description>I had the &#039;Symbol not found: ___divdi3&#039; problem as well, using Python 2.6.2 from python.org. The problem is that python itself is not built correctly? (not linked against libgcc dynamically - I&#039;m not exactly sure) The solution is to link cx_Oracle.so against gcc with the flag

-lgcc

Place that right after &#039;-lclntsh&#039; and the build should work and run without issues. The full gcc line I used was:

gcc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup build/temp.macosx-10.3-i386-2.6-10g/cx_Oracle.o -L/usr/lib -L/oracle_home/lib -lclntsh -lgcc -o build/lib.macosx-10.3-i386-2.6-10g/cx_Oracle.so</description>
		<content:encoded><![CDATA[<p>I had the &#8216;Symbol not found: ___divdi3&#8242; problem as well, using Python 2.6.2 from python.org. The problem is that python itself is not built correctly? (not linked against libgcc dynamically &#8211; I&#8217;m not exactly sure) The solution is to link cx_Oracle.so against gcc with the flag</p>
<p>-lgcc</p>
<p>Place that right after &#8216;-lclntsh&#8217; and the build should work and run without issues. The full gcc line I used was:</p>
<p>gcc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup build/temp.macosx-10.3-i386-2.6-10g/cx_Oracle.o -L/usr/lib -L/oracle_home/lib -lclntsh -lgcc -o build/lib.macosx-10.3-i386-2.6-10g/cx_Oracle.so</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build and install cx_Oracle on MacOS X Leopard Intel by catfishlar</title>
		<link>http://codingnaked.wordpress.com/2008/05/07/build-and-install-cx_oracle-on-macos-x-leopard-intel/#comment-63</link>
		<dc:creator>catfishlar</dc:creator>
		<pubDate>Sat, 24 Oct 2009 19:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://codingnaked.wordpress.com/?p=5#comment-63</guid>
		<description>jaythomas is it possible you did not change the 2.5 in the command?  Did you use the command as brad had it or did you get it from the results of the build?


Using Stackless 2.6.2 on a MacbookPro OSX Leopard. I was using virtualenv and simply ran easy_install cx_Oracle.

When this was done I had the __divdi3 problem per above.

I then went to another directory and downloaded the cx_oracle tar file per above.  Created a subdirectory bob.  Added bob to my PYTHONPATH (export PYTHONPATH=${PYTHONPATH}:./bob/)  then ran:

python setup.py install --install-lib ./bob/

looking back in the output I see.  
creating build/lib.macosx-10.3-fat-2.6-10g
gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup build/temp.macosx-10.3-fat-2.6-10g/cx_Oracle.o -L/Applications/instantclient/ohome/lib -L/Applications/instantclient/ohome -lclntsh -o build/lib.macosx-10.3-fat-2.6-10g/cx_Oracle.so

Looking in the bob directory there is an egg that is 102871 bytes long.  

running this gcc command with &quot;-arch ppc&quot; taken out... 
then rerunning my install to ./bob/...  I get an egg now that is 51521 bytes long.  

I then moved that egg to where easy_install put the bad egg :)

It a bit longer than it needs to be. But I wanted to make sure I was not introducing additional path problems etc.</description>
		<content:encoded><![CDATA[<p>jaythomas is it possible you did not change the 2.5 in the command?  Did you use the command as brad had it or did you get it from the results of the build?</p>
<p>Using Stackless 2.6.2 on a MacbookPro OSX Leopard. I was using virtualenv and simply ran easy_install cx_Oracle.</p>
<p>When this was done I had the __divdi3 problem per above.</p>
<p>I then went to another directory and downloaded the cx_oracle tar file per above.  Created a subdirectory bob.  Added bob to my PYTHONPATH (export PYTHONPATH=${PYTHONPATH}:./bob/)  then ran:</p>
<p>python setup.py install &#8211;install-lib ./bob/</p>
<p>looking back in the output I see.<br />
creating build/lib.macosx-10.3-fat-2.6-10g<br />
gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup build/temp.macosx-10.3-fat-2.6-10g/cx_Oracle.o -L/Applications/instantclient/ohome/lib -L/Applications/instantclient/ohome -lclntsh -o build/lib.macosx-10.3-fat-2.6-10g/cx_Oracle.so</p>
<p>Looking in the bob directory there is an egg that is 102871 bytes long.  </p>
<p>running this gcc command with &#8220;-arch ppc&#8221; taken out&#8230;<br />
then rerunning my install to ./bob/&#8230;  I get an egg now that is 51521 bytes long.  </p>
<p>I then moved that egg to where easy_install put the bad egg <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It a bit longer than it needs to be. But I wanted to make sure I was not introducing additional path problems etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build and install cx_Oracle on MacOS X Leopard Intel by jaythomas</title>
		<link>http://codingnaked.wordpress.com/2008/05/07/build-and-install-cx_oracle-on-macos-x-leopard-intel/#comment-62</link>
		<dc:creator>jaythomas</dc:creator>
		<pubDate>Mon, 19 Oct 2009 19:29:31 +0000</pubDate>
		<guid isPermaLink="false">http://codingnaked.wordpress.com/?p=5#comment-62</guid>
		<description>For what it&#039;s worth, I didn&#039;t run into the Symbol not found: ___divdi3 problem until I tried installing python 2.6, and Yaroslav&#039;s fix did not work for me.

When I reverted back to 2.5 (that is, the OSX default install), the problem went away.</description>
		<content:encoded><![CDATA[<p>For what it&#8217;s worth, I didn&#8217;t run into the Symbol not found: ___divdi3 problem until I tried installing python 2.6, and Yaroslav&#8217;s fix did not work for me.</p>
<p>When I reverted back to 2.5 (that is, the OSX default install), the problem went away.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build and install cx_Oracle on MacOS X Leopard Intel by bradmontgomery</title>
		<link>http://codingnaked.wordpress.com/2008/05/07/build-and-install-cx_oracle-on-macos-x-leopard-intel/#comment-61</link>
		<dc:creator>bradmontgomery</dc:creator>
		<pubDate>Wed, 07 Oct 2009 16:39:53 +0000</pubDate>
		<guid isPermaLink="false">http://codingnaked.wordpress.com/?p=5#comment-61</guid>
		<description>I&#039;m trying to get cx_Oracle-5.0.1 built against the instant client 10.2.0.4 (instantclient-basic-10.2.0.4.0-macosx-x86.zip and instantclient-sdk-10.2.0.4.0-macosx-x86.zip) on OS X 10.5.8 with Python 2.5.1, and I&#039;m running across the same problem as  Yaroslav Bulatov.  

Luckily, his suggestion works for me.  After running &quot;python setup.py build&quot; look for the call to gcc, remove the &quot;-arch ppc&quot; option, and run that command again.  For me this was:

gcc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup build/temp.macosx-10.3-fat-2.5-10g/cx_Oracle.o -L$ORACLE_HOME/lib -L$ORACLE_HOME -lclntsh -o build/lib.macosx-10.3-fat-2.5-10g/cx_Oracle.so

Then running &quot;python setup.py install&quot; works as expected.

Thanks for the article and the comments!</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to get cx_Oracle-5.0.1 built against the instant client 10.2.0.4 (instantclient-basic-10.2.0.4.0-macosx-x86.zip and instantclient-sdk-10.2.0.4.0-macosx-x86.zip) on OS X 10.5.8 with Python 2.5.1, and I&#8217;m running across the same problem as  Yaroslav Bulatov.  </p>
<p>Luckily, his suggestion works for me.  After running &#8220;python setup.py build&#8221; look for the call to gcc, remove the &#8220;-arch ppc&#8221; option, and run that command again.  For me this was:</p>
<p>gcc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup build/temp.macosx-10.3-fat-2.5-10g/cx_Oracle.o -L$ORACLE_HOME/lib -L$ORACLE_HOME -lclntsh -o build/lib.macosx-10.3-fat-2.5-10g/cx_Oracle.so</p>
<p>Then running &#8220;python setup.py install&#8221; works as expected.</p>
<p>Thanks for the article and the comments!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Snow Leopard and Java compatibility issues by Jem</title>
		<link>http://codingnaked.wordpress.com/2009/08/30/snow-leopard-and-java-issues/#comment-58</link>
		<dc:creator>Jem</dc:creator>
		<pubDate>Wed, 09 Sep 2009 15:33:43 +0000</pubDate>
		<guid isPermaLink="false">http://codingnaked.wordpress.com/?p=156#comment-58</guid>
		<description>I had exactly the same problems with Java... I think that they should simply had left 1.4 &amp; 1.5 as they were - changing them to symbolic links to 1.6 is just *wrong*.

BTW... the installation does free up some space (some 5GB, it is said) but the reason you saw such a dramatic increase in your free space is also down to the use of &#039;metric&#039; sizes in Snow Leopard.</description>
		<content:encoded><![CDATA[<p>I had exactly the same problems with Java&#8230; I think that they should simply had left 1.4 &amp; 1.5 as they were &#8211; changing them to symbolic links to 1.6 is just *wrong*.</p>
<p>BTW&#8230; the installation does free up some space (some 5GB, it is said) but the reason you saw such a dramatic increase in your free space is also down to the use of &#8216;metric&#8217; sizes in Snow Leopard.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up maven for Scala and ProGuard by Twitted by scalaBin</title>
		<link>http://codingnaked.wordpress.com/2009/08/07/setting-up-maven-for-scala-and-proguard/#comment-52</link>
		<dc:creator>Twitted by scalaBin</dc:creator>
		<pubDate>Mon, 10 Aug 2009 09:09:51 +0000</pubDate>
		<guid isPermaLink="false">http://codingnaked.wordpress.com/?p=133#comment-52</guid>
		<description>[...] This post was Twitted by scalaBin [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was Twitted by scalaBin [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Porting ZMPP to Android in one day by Wei-ju Wu</title>
		<link>http://codingnaked.wordpress.com/2009/05/06/porting-zmpp-to-android-in-one-day/#comment-44</link>
		<dc:creator>Wei-ju Wu</dc:creator>
		<pubDate>Sat, 06 Jun 2009 14:43:27 +0000</pubDate>
		<guid isPermaLink="false">http://codingnaked.wordpress.com/?p=58#comment-44</guid>
		<description>Yeah, I plan to put the sourcecode out together with the Android Market release once it gets in a form that other people can use it.
In principle it&#039;s working, but it is not a full Android integration yet.</description>
		<content:encoded><![CDATA[<p>Yeah, I plan to put the sourcecode out together with the Android Market release once it gets in a form that other people can use it.<br />
In principle it&#8217;s working, but it is not a full Android integration yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Porting ZMPP to Android in one day by Dmitry Jemerov</title>
		<link>http://codingnaked.wordpress.com/2009/05/06/porting-zmpp-to-android-in-one-day/#comment-43</link>
		<dc:creator>Dmitry Jemerov</dc:creator>
		<pubDate>Sat, 06 Jun 2009 13:06:10 +0000</pubDate>
		<guid isPermaLink="false">http://codingnaked.wordpress.com/?p=58#comment-43</guid>
		<description>Is the code for the Android port available somewhere, or do you plan to publish it? I don&#039;t see it in the SVN repository on SoureForge.</description>
		<content:encoded><![CDATA[<p>Is the code for the Android port available somewhere, or do you plan to publish it? I don&#8217;t see it in the SVN repository on SoureForge.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build and install cx_Oracle on MacOS X Leopard Intel by Kashif Ali</title>
		<link>http://codingnaked.wordpress.com/2008/05/07/build-and-install-cx_oracle-on-macos-x-leopard-intel/#comment-21</link>
		<dc:creator>Kashif Ali</dc:creator>
		<pubDate>Thu, 05 Feb 2009 19:57:47 +0000</pubDate>
		<guid isPermaLink="false">http://codingnaked.wordpress.com/?p=5#comment-21</guid>
		<description>Hi,

I have created an updated HowTo for version 5.0 of the cx_Oracle module. 

&lt;a href=&quot;http://wiki.unixcraft.com/display/MainPage/Install+Oracle+(cx_Oracle)+module+for+Python&quot; rel=&quot;nofollow&quot;&gt;http://wiki.unixcraft.com/display/MainPage/Install+Oracle+(cx_Oracle)+module+for+Python&lt;/a&gt;

Regards

Kashif</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have created an updated HowTo for version 5.0 of the cx_Oracle module. </p>
<p><a href="http://wiki.unixcraft.com/display/MainPage/Install+Oracle+(cx_Oracle)+module+for+Python" rel="nofollow">http://wiki.unixcraft.com/display/MainPage/Install+Oracle+(cx_Oracle)+module+for+Python</a></p>
<p>Regards</p>
<p>Kashif</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new ZMPP design by codingnaked</title>
		<link>http://codingnaked.wordpress.com/2008/08/02/a-new-zmpp-design/#comment-20</link>
		<dc:creator>codingnaked</dc:creator>
		<pubDate>Thu, 18 Dec 2008 05:13:11 +0000</pubDate>
		<guid isPermaLink="false">http://codingnaked.wordpress.com/?p=7#comment-20</guid>
		<description>Yes, I actually have the plan to pick it up again over the Christmas holidays. There is still some considerable work to do, especially that dreaded V6 model :)

Thank you for everything you have done to make ZMPP better.</description>
		<content:encoded><![CDATA[<p>Yes, I actually have the plan to pick it up again over the Christmas holidays. There is still some considerable work to do, especially that dreaded V6 model <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thank you for everything you have done to make ZMPP better.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
