diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2011-12-02 18:31:36 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2011-12-02 18:31:36 +0000 |
| commit | ab76a0db287f41c100be1d467a4077fd60789d72 (patch) | |
| tree | d9ddbe1cd33805ce49d9dcc597ae52f64f98a45d | |
| parent | 8687c5cebb458e983fa858f37a3bb1e1916fbfb2 (diff) | |
| download | rockbox-ab76a0db287f41c100be1d467a4077fd60789d72.zip rockbox-ab76a0db287f41c100be1d467a4077fd60789d72.tar.gz rockbox-ab76a0db287f41c100be1d467a4077fd60789d72.tar.bz2 rockbox-ab76a0db287f41c100be1d467a4077fd60789d72.tar.xz | |
mkamsboot/dualboot: use arm-elf-eabi cross compiler by default
also allows user to change it with CROSS_COMPILE=xxx
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31111 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | rbutil/mkamsboot/dualboot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/mkamsboot/dualboot/Makefile b/rbutil/mkamsboot/dualboot/Makefile index 32e609c..0aa1e3f 100644 --- a/rbutil/mkamsboot/dualboot/Makefile +++ b/rbutil/mkamsboot/dualboot/Makefile @@ -1,5 +1,5 @@ CC=gcc -CROSS_PREFIX=arm-elf +CROSS_PREFIX?=arm-elf-eabi # Edit the following variables (plus copy/paste another set of rules) when # adding a new target. mkamsboot.c also needs to be edited to refer to these # new images. |