summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2021-04-02 11:27:53 -0400
committerSolomon Peachy <pizza@shaftnet.org>2021-04-02 11:29:02 -0400
commit5d292d92835ecc4125a2a9719f1c598f9573e5f3 (patch)
tree730433911c69a1a8767730d0bd415b71f7a8b828
parent2ebfbd3b7c57b772add4ae3ab1f775ac2d7ba583 (diff)
downloadrockbox-5d292d92835ecc4125a2a9719f1c598f9573e5f3.tar.gz
rockbox-5d292d92835ecc4125a2a9719f1c598f9573e5f3.zip
README: Update cross-toolchain info
Change-Id: I23adcc2f08c8a6465b17fe7c755ab68ad0a4d2c4
-rw-r--r--docs/README19
1 files changed, 9 insertions, 10 deletions
diff --git a/docs/README b/docs/README
index 42339e078c..6c7df23b0f 100644
--- a/docs/README
+++ b/docs/README
@@ -22,14 +22,13 @@ Build Your Own Rockbox
22 $ mkdir build 22 $ mkdir build
23 $ cd build 23 $ cd build
24 24
253. Make sure you have sh/arm/m68k-elf-gcc and siblings in the PATH. Make sure 253. Make sure you have mips/m68k/arm-elf-gcc and siblings in the PATH. Make sure
26 that you have 'perl' in your PATH too. Your gcc cross compiler needs to be 26 that you have 'perl' in your PATH too. Your gcc cross compiler needs to be
27 a particular version depending on what player you are compiling for. These 27 a particular version depending on what player you are compiling for. These
28 can be acquired with the rockboxdev.sh script in the /tools/ folder of the 28 can be generated using the rockboxdev.sh script in the /tools/ folder of the
29 source, or will have been included if you've installed one of the 29 source.
30 toolchains or development environments provided at http://www.rockbox.org/
31 30
32 $ which sh-elf-gcc 31 $ which arm-elf-eabi-gcc
33 $ which perl 32 $ which perl
34 33
354. In your build directory, run the 'tools/configure' script and enter what 344. In your build directory, run the 'tools/configure' script and enter what
@@ -54,12 +53,12 @@ Build Your Own Rockbox
54If you want to build for more than one target, just create several build 53If you want to build for more than one target, just create several build
55directories and create a setup for each target: 54directories and create a setup for each target:
56 55
57 $ mkdir build-fmrecorder 56 $ mkdir build-fuzeplus
58 $ cd build-fmrecorder 57 $ cd build-fuzeplus
59 $ ../tools/configure 58 $ ../tools/configure
60 59
61 $ mkdir build-player 60 $ mkdir build-xduoox3
62 $ cd build-player 61 $ cd build-xduoox3
63 $ ../tools/configure 62 $ ../tools/configure
64 63
65Questions anyone? Ask on the mailing list. We'll be happy to help you! 64Questions anyone? Ask on the mailing list or on IRC. We'll be happy to help you!