diff options
author | Erico Nunes <nunes.erico@gmail.com> | 2016-04-19 01:38:25 -0300 |
---|---|---|
committer | Erico Nunes <nunes.erico@gmail.com> | 2016-04-19 01:38:25 -0300 |
commit | d312347348ad6a5dbc2c49afc14fc2ea317f1968 (patch) | |
tree | df7c01cdcd1656078358f806002ed0c6c32b88e8 | |
parent | e1d494a2489bc469f4a50a6942fa15255621e985 (diff) | |
download | crosstool-ng-d312347348ad6a5dbc2c49afc14fc2ea317f1968.tar.gz crosstool-ng-d312347348ad6a5dbc2c49afc14fc2ea317f1968.tar.bz2 crosstool-ng-d312347348ad6a5dbc2c49afc14fc2ea317f1968.zip |
avr-libc: update to 2.0.0
The avr-libc project has released version 2.0.0:
http://savannah.nongnu.org/forum/forum.php?forum_id=8460
Apart from changes and bugfixes, this release adds support for gcc 5,
which allows us to build gcc 5 avr toolchains and also to update our avr
sample.
avr-libc 2.0.0 has been build tested both with gcc 4.9.3 and gcc 5.3.0.
Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
-rw-r--r-- | config/libc/avr-libc.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/libc/avr-libc.in b/config/libc/avr-libc.in index f08acb3a..2b8d891d 100644 --- a/config/libc/avr-libc.in +++ b/config/libc/avr-libc.in @@ -49,6 +49,10 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config LIBC_AVR_LIBC_V_2_0_0 + bool + prompt "2.0.0" + config LIBC_AVR_LIBC_V_1_8_1 bool prompt "1.8.1" @@ -63,6 +67,7 @@ config LIBC_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "2.0.0" if LIBC_AVR_LIBC_V_2_0_0 default "1.8.1" if LIBC_AVR_LIBC_V_1_8_1 default "1.8.0" if LIBC_AVR_LIBC_V_1_8_0 |