diff options
author | aesok <aesok@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-17 17:13:14 +0000 |
---|---|---|
committer | aesok <aesok@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-17 17:13:14 +0000 |
commit | e3f16a041fc5a1596cf2c44865637b3484464dbf (patch) | |
tree | b55f303b33d649340eb3934c2c75d5af9c13d820 /gcc/config/avr | |
parent | 7ce4675cc364c059bb6fe49bb41c48d6676e9b69 (diff) | |
download | gcc-e3f16a041fc5a1596cf2c44865637b3484464dbf.tar.gz |
* config/avr/avr.c (avr_mcu_types): Add attiny43u.
* config/avr/avr.h (CRT_BINUTILS_SPECS): Likewsie.
* config/avr/t-avr (MULTILIB_MATCHES): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129411 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/avr')
-rw-r--r-- | gcc/config/avr/avr.c | 1 | ||||
-rw-r--r-- | gcc/config/avr/avr.h | 1 | ||||
-rw-r--r-- | gcc/config/avr/t-avr | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/gcc/config/avr/avr.c b/gcc/config/avr/avr.c index a7a151488df..d72512eca74 100644 --- a/gcc/config/avr/avr.c +++ b/gcc/config/avr/avr.c @@ -188,6 +188,7 @@ static const struct mcu_type_s avr_mcu_types[] = { { "attiny261", ARCH_AVR25, "__AVR_ATtiny261__" }, { "attiny461", ARCH_AVR25, "__AVR_ATtiny461__" }, { "attiny861", ARCH_AVR25, "__AVR_ATtiny861__" }, + { "attiny43u", ARCH_AVR25, "__AVR_ATtiny43U__" }, { "at86rf401", ARCH_AVR25, "__AVR_AT86RF401__" }, /* Classic, > 8K. */ { "avr3", ARCH_AVR3, NULL }, diff --git a/gcc/config/avr/avr.h b/gcc/config/avr/avr.h index 585243a767a..cc6e91bb8f5 100644 --- a/gcc/config/avr/avr.h +++ b/gcc/config/avr/avr.h @@ -844,6 +844,7 @@ mmcu=*:-mmcu=%*}" %{mmcu=attiny261:crttn261.o%s} \ %{mmcu=attiny461:crttn461.o%s} \ %{mmcu=attiny861:crttn861.o%s} \ +%{mmcu=attiny43u:crttn43u.o%s} \ %{mmcu=atmega103|mmcu=avr3:crtm103.o%s} \ %{mmcu=atmega603:crtm603.o%s} \ %{mmcu=at43usb320:crt43320.o%s} \ diff --git a/gcc/config/avr/t-avr b/gcc/config/avr/t-avr index 38a7903a0b1..28e4e7c24ba 100644 --- a/gcc/config/avr/t-avr +++ b/gcc/config/avr/t-avr @@ -53,6 +53,7 @@ MULTILIB_MATCHES = \ mmcu?avr25=mmcu?attiny261 \ mmcu?avr25=mmcu?attiny461 \ mmcu?avr25=mmcu?attiny861 \ + mmcu?avr25=mmcu?attiny43u \ mmcu?avr25=mmcu?at86rf401 \ mmcu?avr3=mmcu?atmega103 \ mmcu?avr3=mmcu?atmega603 \ |