<?xml version="1.0" encoding="UTF-8" standalone="yes"?><oembed><version><![CDATA[1.0]]></version><provider_name><![CDATA[Krzysztof Narkowicz]]></provider_name><provider_url><![CDATA[https://knarkowicz.wordpress.com]]></provider_url><author_name><![CDATA[Krzysztof Narkowicz]]></author_name><author_url><![CDATA[https://knarkowicz.wordpress.com/author/knarkowicz/]]></author_url><title><![CDATA[CELL SDK installation on Fedora 13&nbsp;x86_64]]></title><type><![CDATA[link]]></type><html><![CDATA[<div>
<p>I just installed IBM CELL SDK, CELL simulator and CELLIDE on my PC box with newest Fedora. It was a quite painful process and I couldn&#8217;t find anywhere full installation instruction. It&#8217;s a pity that IBM releases such interesting technology without proper support. So here is the full installation guide.</p>
</div>
<p>First get all the needed rpm&#8217;s and iso&#8217;s from <a href="http://www.ibm.com/developerworks/power/cell/index.html">IBM</a> or other <a href="http://www.bsc.es/plantillaH.php?cat_id=583">website</a>:</p>
<pre class="brush: plain; title: ; notranslate" title="">

systemsim-cell-3.1-25.f9.x86_64.rpm
sysroot_image-3.1-1.noarch.rpm
cell-install-3.1.0-0.0.noarch.rpm
CellSDK-Extras-Fedora_3.1.0.0.0.iso
CellSDK-Devel-Fedora_3.1.0.0.0.iso


</pre>
<p>Now let&#8217;s install sdk and simulator.</p>
<pre class="brush: plain; title: ; notranslate" title="">

yum install tk rsync sed tcl wget
rpm -ivh cell-install-3.1.0-0.0.noarch.rpm
cd /opt/cell
cellsdk --iso /root/cell/cellsdk/ install
cellsdk_sync_simulator install


</pre>
<p>Open ~/.bash_rc with You favourite text editor and modify PATH there:</p>
<pre class="brush: plain; title: ; notranslate" title="">

export PATH=$PATH:/opt/ibm/systemsim-cell/bin:/opt/cell/toolchain/bin

</pre>
<p>To run simulator from console use:</p>
<pre class="brush: plain; title: ; notranslate" title="">

systemsim -g

</pre>
<p>Remember to use fast simulator mode, it&#8217;s very useful even on newest i7 :). Now let&#8217;s setup cellide (You don&#8217;t need to install Fedora Eclipse).</p>
<pre class="brush: plain; title: ; notranslate" title="">

yum install cellide cell-spu-timing alf-ide-template fdpr-launcher ibm-java2-i386-jre

</pre>
<p>Time to download fix pack <a href="http://www-933.ibm.com/support/fixcentral/">3.1-SDKMA-Linux-x86_64-IF01</a> &#8220;intended only for RHEL&#8221; :), so Eclipse will detect local cell simulator. Install it.</p>
<pre class="brush: plain; title: ; notranslate" title="">

rpm -Uvh cellide-3.1.0-7.i386.rpm

</pre>
<p>Finally run eclipse with:</p>
<pre class="brush: plain; title: ; notranslate" title="">

./eclipse -vm /opt/ibm/java2-i386-50/jre/bin

</pre>
]]></html></oembed>