<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.ethernut.de/nutwiki/index.php?action=history&amp;feed=atom&amp;title=Documents%2FOS_X_Build</id>
		<title>Documents/OS X Build - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://www.ethernut.de/nutwiki/index.php?action=history&amp;feed=atom&amp;title=Documents%2FOS_X_Build"/>
		<link rel="alternate" type="text/html" href="http://www.ethernut.de/nutwiki/index.php?title=Documents/OS_X_Build&amp;action=history"/>
		<updated>2026-04-26T18:55:42Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.26.2</generator>

	<entry>
		<id>http://www.ethernut.de/nutwiki/index.php?title=Documents/OS_X_Build&amp;diff=353&amp;oldid=prev</id>
		<title>Harald: Created page with &quot;&lt;div id=&quot;content&quot;&gt;  = Building Nut/OS on OS X =  == Installing Xcode ==  Xcode Icon Apple's Xcode package contains all the tools we need to bu...&quot;</title>
		<link rel="alternate" type="text/html" href="http://www.ethernut.de/nutwiki/index.php?title=Documents/OS_X_Build&amp;diff=353&amp;oldid=prev"/>
				<updated>2017-07-13T07:56:59Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;lt;div id=&amp;quot;content&amp;quot;&amp;gt;  = Building Nut/OS on OS X =  == Installing Xcode ==  [[File:../../img/xcodeicon.jpg|Xcode Icon]] Apple&amp;#039;s Xcode package contains all the tools we need to bu...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;div id=&amp;quot;content&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Building Nut/OS on OS X =&lt;br /&gt;
&lt;br /&gt;
== Installing Xcode ==&lt;br /&gt;
&lt;br /&gt;
[[File:../../img/xcodeicon.jpg|Xcode Icon]] Apple's Xcode package contains all the tools we need to build the cross toolchain. Open Terminal and enter&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;coding&amp;quot;&amp;gt;$ gcc --version&amp;lt;/pre&amp;gt;&lt;br /&gt;
If the response is similar to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;coding&amp;quot;&amp;gt;powerpc-apple-darwin9-gcc-4.0.1 (GCC) 4.0.1 (Apple Inc. build 5465)&lt;br /&gt;
Copyright (C) 2005 Free Software Foundation, Inc.&amp;lt;/pre&amp;gt;&lt;br /&gt;
then GCC is already available and probably there is no need to install it again. However, if the response is&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;coding&amp;quot;&amp;gt;-bash: gcc: command not found&amp;lt;/pre&amp;gt;&lt;br /&gt;
then you need to download Xcode from&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://developer.apple.com/tools/xcode/ developer.apple.com/tools/xcode/]&lt;br /&gt;
&lt;br /&gt;
A registration is required, but this is free of charge.&lt;br /&gt;
&lt;br /&gt;
Leave the Terminal window open. We'll need it later on.&lt;br /&gt;
&lt;br /&gt;
[[../../img/xcode_inst00.png|[[File:../../img/xcode_inst00th.png|128x83px|Xcode Installation Step 0]]]] [[../../img/xcode_inst01.png|[[File:../../img/xcode_inst01th.png|128x95px|Xcode Installation Step 1]]]] [[../../img/xcode_inst02.png|[[File:../../img/xcode_inst02th.png|128x95px|Xcode Installation Step 2]]]] [[../../img/xcode_inst03.png|[[File:../../img/xcode_inst03th.png|128x95px|Xcode Installation Step 3]]]] [[../../img/xcode_inst04.png|[[File:../../img/xcode_inst04th.png|128x95px|Xcode Installation Step 4]]]] [[../../img/xcode_inst05.png|[[File:../../img/xcode_inst05th.png|128x95px|Xcode Installation Step 5]]]]&lt;br /&gt;
&lt;br /&gt;
== Installing wxWidgets ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;coding&amp;quot;&amp;gt;$ curl -O http://heanet.dl.sourceforge.net/sourceforge/wxwindows/wxMac-2.8.7.tar.gz&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre class=&amp;quot;coding&amp;quot;&amp;gt;$ cd wxmac-2.8.7&lt;br /&gt;
$ mkdir build-release&lt;br /&gt;
$ cd build-release&lt;br /&gt;
$ ../configure --disable-shared --enable-unicode \&lt;br /&gt;
    --with-macosx-sdk=/Developer/SDKs/MacOSX10.4u.sdk \&lt;br /&gt;
    --with-macosx-version-min=10.4&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre class=&amp;quot;coding&amp;quot;&amp;gt;$ make&lt;br /&gt;
$ sudo make install&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Installing Lua ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;coding&amp;quot;&amp;gt;$ curl -O http://www.lua.org/ftp/lua-5.0.3.tar.gz&lt;br /&gt;
$ tar -xzf lua-5.0.3.tar.gz&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre class=&amp;quot;coding&amp;quot;&amp;gt;$ cd lua-5.0.3&lt;br /&gt;
$ make&lt;br /&gt;
$ sudo make install&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Installing Nut/OS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;coding&amp;quot;&amp;gt;$ curl -O http://www.lua.org/ftp/lua-5.0.3.tar.gz&lt;br /&gt;
$ tar -xzf lua-5.0.3.tar.gz&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre class=&amp;quot;coding&amp;quot;&amp;gt;$ wx-config --version&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Harald</name></author>	</entry>

	</feed>