mirror of git://gcc.gnu.org/git/gcc.git
config.host (avr-*-rtems*): Add config/avr/t-rtems.
2011-11-05 Ralf Corsépius <ralf.corsepius@rtems.org> * config.host (avr-*-rtems*): Add config/avr/t-rtems. * config/avr/t-rtems: New. Filter out _exit from LIB1ASMFUNCS. From-SVN: r181003
This commit is contained in:
parent
e2df21bfc6
commit
d618bb2c86
|
@ -1,3 +1,9 @@
|
||||||
|
2011-11-05 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* config.host (avr-*-rtems*): Add config/avr/t-rtems.
|
||||||
|
* config/avr/t-rtems: New.
|
||||||
|
Filter out _exit from LIB1ASMFUNCS.
|
||||||
|
|
||||||
2011-11-04 David S. Miller <davem@davemloft.net>
|
2011-11-04 David S. Miller <davem@davemloft.net>
|
||||||
|
|
||||||
* configure.ac: Test for 64-bit addresses on !x86 using __LP64__.
|
* configure.ac: Test for 64-bit addresses on !x86 using __LP64__.
|
||||||
|
|
|
@ -390,7 +390,7 @@ arm*-wince-pe*)
|
||||||
tmake_file="$tmake_file arm/t-arm arm/t-wince-pe"
|
tmake_file="$tmake_file arm/t-arm arm/t-wince-pe"
|
||||||
;;
|
;;
|
||||||
avr-*-rtems*)
|
avr-*-rtems*)
|
||||||
tmake_file="$tmake_file avr/t-avr t-fpbit"
|
tmake_file="$tmake_file avr/t-avr avr/t-rtems t-fpbit"
|
||||||
tm_file="$tm_file avr/avr-lib.h"
|
tm_file="$tm_file avr/avr-lib.h"
|
||||||
# Don't use default.
|
# Don't use default.
|
||||||
extra_parts=
|
extra_parts=
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
# RTEMS uses _exit from newlib
|
||||||
|
LIB1ASMFUNCS := $(filter-out _exit,$(LIB1ASMFUNCS))
|
Loading…
Reference in New Issue