Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
diff --git a/tools/configure b/tools/configure index 50b89dc..8b024be 100755 findarmgcc() { prefixtools arm-elf- gccchoice="4.0.3" fi + extravars="export ARM_CORE=$ARM_CORE\nexport ARM_TDMI=${ARM_TDMI:-0}" } # scan the $PATH for the given command coldfirecc () { } arm7tdmicc () { + ARM_CORE=7 + ARM_TDMI=1 findarmgcc GCCOPTS="$CCOPTS -mcpu=arm7tdmi" if test "X$1" != "Xshort" -a "$ARG_ARM_EABI" != "1"; then arm7tdmicc () { } arm9tdmicc () { + ARM_CORE=9 + ARM_TDMI=1 findarmgcc GCCOPTS="$CCOPTS -mcpu=arm9tdmi" if test "$modelname" != "gigabeatf" -a "$t_manufacturer" != "as3525" -a "$ARG_ARM_EABI" != "1"; then arm9tdmicc () { } arm940tbecc () { + ARM_CORE=9 + ARM_TDMI=0 findarmgcc GCCOPTS="$CCOPTS -mbig-endian -mcpu=arm940t" if test "ARG_ARM_EABI" != "1"; then arm940tbecc () { } arm940tcc () { + ARM_CORE=9 + ARM_TDMI=0 findarmgcc GCCOPTS="$CCOPTS -mcpu=arm940t" if test "ARG_ARM_EABI" != "1"; then arm940tcc () { } arm946cc () { + ARM_CORE=9 + ARM_TDMI=0 findarmgcc GCCOPTS="$CCOPTS -mcpu=arm9e" if test "ARG_ARM_EABI" != "1"; then arm946cc () { } arm926ejscc () { + ARM_CORE=9 + ARM_TDMI=0 findarmgcc GCCOPTS="$CCOPTS -mcpu=arm926ej-s" if test "ARG_ARM_EABI" != "1"; then arm926ejscc () { } arm1136jfscc () { + ARM_CORE=11 + ARM_TDMI=0 findarmgcc GCCOPTS="$CCOPTS -mcpu=arm1136jf-s" if test "$modelname" != "gigabeats" -a "ARG_ARM_EABI" != "1"; then arm1136jfscc () { } arm1176jzscc () { + ARM_CORE=11 + ARM_TDMI=0 findarmgcc GCCOPTS="$CCOPTS -mcpu=arm1176jz-s" if test "ARG_ARM_EABI" != "1"; then sed > Makefile \ -e "s,@RBDIR@,${rbdir},g" \ -e "s,@PREFIX@,$PREFIX,g" \ -e "s,@CMDLINE@,$cmdline,g" \ + -e "s*@EXTRA@*$extravars*g" \ <<EOF ## Automatically generated. http://www.rockbox.org/ export ENC_OPTS=@ENC_OPTS@ export ENCODER=@ENCODER@ export USE_ELF=@USE_ELF@ export RBDIR=@RBDIR@ +@EXTRA@ CONFIGURE_OPTIONS=@CMDLINE@ |