introducing MIPS support, not included in the "build all" action yet
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17986 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
39de8688f9
commit
e6dde60a3e
1 changed files with 10 additions and 0 deletions
|
@ -166,6 +166,9 @@ case $1 in
|
|||
target="arm-elf"
|
||||
gccpatch="rockbox-multilibs-arm-elf-gcc-4.0.3_2.diff"
|
||||
;;
|
||||
[Ii])
|
||||
target="mipsel-elf"
|
||||
;;
|
||||
*)
|
||||
echo "unsupported"
|
||||
exit
|
||||
|
@ -261,6 +264,7 @@ echo "Select target arch:"
|
|||
echo "s - sh (Archos models)"
|
||||
echo "m - m68k (iriver h1x0/h3x0, ifp7x0 and iaudio)"
|
||||
echo "a - arm (ipods, iriver H10, Sansa, etc)"
|
||||
echo "i - mips (Jz4740 and ATJ-based players)"
|
||||
echo "all - all three compilers"
|
||||
|
||||
arch=`input`
|
||||
|
@ -269,6 +273,9 @@ case $arch in
|
|||
[Ss])
|
||||
buildone $arch
|
||||
;;
|
||||
[Ii])
|
||||
buildone $arch
|
||||
;;
|
||||
[Mm])
|
||||
buildone $arch
|
||||
;;
|
||||
|
@ -285,6 +292,9 @@ case $arch in
|
|||
|
||||
buildone a
|
||||
|
||||
# include this when we want MIPS added in the "build all"
|
||||
#buildone i
|
||||
|
||||
# show the summaries:
|
||||
cat $builddir/summary-*
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue