1
0
Fork 0
forked from len0rd/rockbox

Make m68k-elf 4.5.2 toolchain build on OS X 10.6.

OS X requires slightly different compiler options due to functions deprecated
in 10.6 (as done in r28179 for arm-eabi-elf).



git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29051 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2011-01-13 20:12:36 +00:00
parent c16deb3754
commit 37feed5287

View file

@ -290,7 +290,13 @@ do
;;
[Mm])
build "binutils" "m68k-elf" "2.20.1"
binopts=""
case $system in
Darwin)
binopts="--disable-werror"
;;
esac
build "binutils" "m68k-elf" "2.20.1" "" "$binopts"
build "gcc" "m68k-elf" "4.5.2" "" "--with-arch=cf" "gmp mpfr mpc"
;;