From bd724ec9898538d74bd5e64571f14ccaca744cd9 Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Mon, 2 Aug 2010 11:38:41 +0200 Subject: Added a README. --- README | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 README diff --git a/README b/README new file mode 100644 index 0000000..7ec228b --- /dev/null +++ b/README @@ -0,0 +1,26 @@ +These scripts create a cross-compiler toolchain in your $HOME/usr directory. +This kind of cross-compiler is mostly useful for basic Operating System developpment. + +== INCLUDED PACKAGES == + +These scripts install the following things in the toolchain : +- binutils (ld, ...) +- gcc for C and C++ + +== SETTING UP THE CROSS-COMPILER == + +- Create a directory named `usr` in your home directory. +- Add the following line to your .bashrc : + export PATH=$PATH:$HOME/usr/bin +- Run cross-.sh for the architecture you target + Go on the internet and read some useless stuff, this step is long. + +== SUPPORTED CROSS-COMPILING ARCHITECTURES == + + ARCH PREFIX +- x86 i586-elf +- arm arm-elf + +== USING THE CROSS-COMPILER == + +The compiler is available as *-gcc and *-g++, where * is one of the prefixes listed above (ex: i586-elf-gcc). -- cgit v1.2.3