aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Pall <mike>2011-07-13 22:06:44 +0200
committerMike Pall <mike>2011-07-13 22:06:44 +0200
commit9c58bd6689876e36879ff24f357bb32d9e780b03 (patch)
treedce673cf6cce06e9bc398600c1e3e3b0a6927d9a
parentca8dadb328be41dc9349a5d620348a17e90dba84 (diff)
downloadluajit-9c58bd6689876e36879ff24f357bb32d9e780b03.tar.gz
luajit-9c58bd6689876e36879ff24f357bb32d9e780b03.tar.bz2
luajit-9c58bd6689876e36879ff24f357bb32d9e780b03.zip
PPC: Update install docs.
-rw-r--r--doc/install.html21
1 files changed, 17 insertions, 4 deletions
diff --git a/doc/install.html b/doc/install.html
index ebf3ff73..8f2796e7 100644
--- a/doc/install.html
+++ b/doc/install.html
@@ -122,14 +122,21 @@ operating systems, CPUs and compilers:
122<td class="compatos">MSVC + SDK v7.0<br>WinSDK v7.0</td> 122<td class="compatos">MSVC + SDK v7.0<br>WinSDK v7.0</td>
123</tr> 123</tr>
124<tr class="odd"> 124<tr class="odd">
125<td class="compatcpu">ARMv5+<br>ARM9E+</td> 125<td class="compatcpu"><a href="#android">ARMv5+<br>ARM9E+</a></td>
126<td class="compatos">GCC 4.2+</td> 126<td class="compatos">GCC 4.2+</td>
127<td class="compatos">GCC 4.2+</td> 127<td class="compatos">GCC 4.2+</td>
128<td class="compatos">GCC 4.2+</td> 128<td class="compatos">GCC 4.2+</td>
129<td class="compatos compatno">&nbsp;</td> 129<td class="compatos compatno">&nbsp;</td>
130</tr> 130</tr>
131<tr class="even"> 131<tr class="even">
132<td class="compatcpu">PPC/e500v2</td> 132<td class="compatcpu"><a href="#ppc">PPC</a></td>
133<td class="compatos">GCC 4.3+</td>
134<td class="compatos">GCC 4.3+</td>
135<td class="compatos compatno">&nbsp;</td>
136<td class="compatos compatno">&nbsp;</td>
137</tr>
138<tr class="odd">
139<td class="compatcpu"><a href="#ppc">PPC/e500v2</a></td>
133<td class="compatos">GCC 4.3+</td> 140<td class="compatos">GCC 4.3+</td>
134<td class="compatos">GCC 4.3+</td> 141<td class="compatos">GCC 4.3+</td>
135<td class="compatos compatno">&nbsp;</td> 142<td class="compatos compatno">&nbsp;</td>
@@ -383,12 +390,18 @@ make HOST_CC="gcc -m32 -arch i386" CROSS=$ISDKP TARGET_FLAGS="$ISDKF" \
383 TARGET=arm TARGET_SYS=iOS 390 TARGET=arm TARGET_SYS=iOS
384</pre> 391</pre>
385<p> 392<p>
386You can cross-compile for a <b>PPC/e500v2 target</b> on an x86 or x64 host system 393You can cross-compile for a <b id="ppc">PPC target</b> or a
387using a standard GNU cross-compile toolchain (Binutils, GCC, EGLIBC). 394<b>PPC/e500v2 target</b> on x86 or x64 host systems using a standard
395GNU cross-compile toolchain (Binutils, GCC, EGLIBC).
388The <tt>CROSS</tt> prefix may vary depending on the <tt>--target</tt> 396The <tt>CROSS</tt> prefix may vary depending on the <tt>--target</tt>
389of the toolchain: 397of the toolchain:
390</p> 398</p>
391<pre class="code"> 399<pre class="code">
400# PPC
401make HOST_CC="gcc -m32" CROSS=powerpc-linux-gnu- TARGET=ppc
402</pre>
403<pre class="code">
404# PPC/e500v2
392make HOST_CC="gcc -m32" CROSS=powerpc-e500v2-linux-gnuspe- TARGET=ppcspe 405make HOST_CC="gcc -m32" CROSS=powerpc-e500v2-linux-gnuspe- TARGET=ppcspe
393</pre> 406</pre>
394<p> 407<p>