diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-04-23 09:21:42 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-04-23 09:21:42 +0000 |
commit | bf2017dfd996a070d2783af7c7d34039e30fdbec (patch) | |
tree | 162af7a9aa2ae9fee6355009f92c5edd802dcf75 /www/docs | |
parent | 5d0986de6be1f8b45a64023a18a156c569588f1b (diff) |
First version
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4551 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'www/docs')
-rw-r--r-- | www/docs/cygwin_sdk.t | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/www/docs/cygwin_sdk.t b/www/docs/cygwin_sdk.t new file mode 100644 index 0000000000..0680cdf608 --- /dev/null +++ b/www/docs/cygwin_sdk.t @@ -0,0 +1,55 @@ +#define _PAGE_ Setting up a cygwin Rockbox development environment +#include "head.t" + +<h1>Setting up a Cygwin development environment</h1> +<p> + Eric Lassauge has kindly compiled the SH-1 cross GCC tools as Cygwin packages + and put them up for us to use. + +<h2>Step 1: Download the cygwin installer</h2> +<p> + Go to the cygwin home page, <a href=http://www.cygwin.com>http://www.cygwin.com</a> + and download setup.exe from there ("Install or update now!"). + +<h2>Step 2: Install the base development environment</h2> +<p> + If you are unsure about the questions asked by the installer, just choose + the default. +<p> + When you are asked to select the packages to install, select the following, + except for the Base, which is required: + + <ul> + <li>Devel - binutils</li> + <li>Devel - cvs</li> + <li>Devel - gcc</li> + <li>Devel - gcc-mingw-core</li> + <li>Devel - gdb (if you want to debug simulator code)</li> + <li>Devel - gcc-mingw-runtime</li> + <li>Devel - make</li> + <li>Devel - patchutils</li> + <li>Interpreters - perl</li> + </ul> + +<p> + If you have CVS commit access, you also want to install SSH: + + <ul> + <li>Net - openssh</li> + </ul> + +<h2>Step 3: Select the Eric's mirror site and install</h2> +<p> + Start the Setup program again. When the installer prompts you for a mirror + site URL, enter <b>http://lassauge.free.fr/cygwin</b> in the "User URL" field. + +<p> + Then select your packages and install: + + <ul> + <li>Devel - sh-binutils</li> + <li>Devel - sh-gcc</li> + </ul> + + +#include "foot.t" |