diff options
-rwxr-xr-x | summon-arm-toolchain | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/summon-arm-toolchain b/summon-arm-toolchain index 892c687..6a00c12 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -2,6 +2,13 @@ # Written by Uwe Hermann <uwe@hermann-uwe.de>, released as public domain. # Modified by Piotr Esden-Tempski <piotr@esden.net>, released as public domain. +# +# Requirements (example is for Debian, replace package names as needed): +# +# apt-get install flex bison libgmp3-dev libmpfr-dev libncurses5-dev \ +# libmpc-dev autoconf texinfo build-essential +# + TARGET=arm-none-eabi # Or: TARGET=arm-elf PREFIX=${HOME}/arm-none-eabi # Install location of your final toolchain PARALLEL="" # Or: PARALLEL="-j 5" for 4 CPUs |