summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--www/cross-gcc.t14
1 files changed, 14 insertions, 0 deletions
diff --git a/www/cross-gcc.t b/www/cross-gcc.t
index 1eb026ed4e..de2907d11c 100644
--- a/www/cross-gcc.t
+++ b/www/cross-gcc.t
@@ -14,6 +14,20 @@ You will need the following archives:
14<li>gcc-3.0.4.tar.gz (find it at your closest GNU FTP site) 14<li>gcc-3.0.4.tar.gz (find it at your closest GNU FTP site)
15<li>(optional) gdb-5.1.1.tar.gz (find it at your closest GNU FTP site) 15<li>(optional) gdb-5.1.1.tar.gz (find it at your closest GNU FTP site)
16</ul> 16</ul>
17<p>
18 If you want to stay out of trouble, use the versions stated above. If you
19 want to live on the edge you can try building with the latest versions.
20 However, if you use binutils-2.13 or later you will not be able to build
21 Rockbox older that CVS 2002-09-08 if you don't add the .rodata.str1.4
22 section to the .rodata section in the linker script:
23
24<pre>
25 .rodata :
26 {
27 *(.rodata)
28<b> *(.rodata.str1.4)</b>
29 } > DRAM
30</pre>
17 31
18<h2>Unpack the archives</h2> 32<h2>Unpack the archives</h2>
19<p> 33<p>