aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README26
-rw-r--r--README.md9
2 files changed, 4 insertions, 31 deletions
diff --git a/README b/README
deleted file mode 100644
index 7ec228b..0000000
--- a/README
+++ /dev/null
@@ -1,26 +0,0 @@
-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-<arch>.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).
diff --git a/README.md b/README.md
index 2f8c98c..fcece2a 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-These scripts create a cross-compiler toolchain in your $HOME/usr directory.
+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
@@ -21,10 +21,9 @@ 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-<arch>.sh for the architecture you target
+- Add the following line to your `.bashrc` : `export PATH=$PATH:$HOME/usr/bin`
+- Run `cross-<arch>.sh` for the architecture you target
Go on the internet and read some useless stuff, this step is long.
-The compiler is available as *-gcc and *-g++, where * is one of the prefixes listed above (ex: i586-elf-gcc).
+The compiler is available as `*-gcc` and `*-g++`, where * is one of the prefixes listed above (ex: i586-elf-gcc).