Skip to content

Commit ad7b3cd

Browse files
committed
Regenerate files for newlib 2.3.0.
1 parent bb231f6 commit ad7b3cd

File tree

105 files changed

+4639
-6207
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+4639
-6207
lines changed

newlib/NEWS

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
*** Major changes in newlib version 2.3.0:
2+
3+
- dynamic atexit logic fixed
4+
- various arm performance enhancements
5+
- new version of strtold
6+
- doc improvements
7+
- arc platform support redone
8+
- strftime improvements/enhancements
9+
- imported logic from FreeBSD
10+
- locking fixes
11+
- complex math enhancements
12+
- visium platform support added
13+
- or1k platform support added
14+
115
*** Major changes in newlib version 2.2.0:
216

317
- multiple functional/performance enhancements for arm/aarch64

newlib/README

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README for newlib-2.2.0 release
1+
README for newlib-2.3.0 release
22
(mostly cribbed from the README in the gdb-4.13 release)
33

44
This is `newlib', a simple ANSI C library, math library, and collection
@@ -17,8 +17,8 @@ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
1717
Unpacking and Installation -- quick overview
1818
==========================
1919

20-
When you unpack the newlib-2.2.0.tar.gz file, you'll find a directory
21-
called `newlib-2.2.0', which contains:
20+
When you unpack the newlib-2.3.0.tar.gz file, you'll find a directory
21+
called `newlib-2.3.0', which contains:
2222

2323
COPYING config/ install-sh* mpw-configure
2424
COPYING.LIB config-ml.in libgloss/ mpw-install
@@ -94,13 +94,13 @@ directory. If the path to `configure' would be the same as the
9494
argument to `--srcdir', you can leave out the `--srcdir' option; it
9595
will be assumed.)
9696

97-
For example, with version 2.2.0, you can build NEWLIB in a separate
97+
For example, with version 2.3.0, you can build NEWLIB in a separate
9898
directory for a Sun 4 cross m68k-aout environment like this:
9999

100-
cd newlib-2.2.0
100+
cd newlib-2.3.0
101101
mkdir ../newlib-m68k-aout
102102
cd ../newlib-m68k-aout
103-
../newlib-2.2.0/configure --host=sun4 --target=m68k-aout
103+
../newlib-2.3.0/configure --host=sun4 --target=m68k-aout
104104
make
105105

106106
When `configure' builds a configuration using a remote source
@@ -116,8 +116,8 @@ called `configure' (or one of its subdirectories).
116116

117117
The `Makefile' that `configure' generates in each source directory
118118
also runs recursively. If you type `make' in a source directory such
119-
as `newlib-2.2.0' (or in a separate configured directory configured with
120-
`--srcdir=PATH/newlib-2.2.0'), you will build all the required libraries.
119+
as `newlib-2.3.0' (or in a separate configured directory configured with
120+
`--srcdir=PATH/newlib-2.3.0'), you will build all the required libraries.
121121

122122
When you have multiple hosts or targets configured in separate
123123
directories, you can run `make' on them in parallel (for example, if
@@ -586,7 +586,7 @@ Reporting Bugs
586586

587587
The correct address for reporting bugs found in NEWLIB is
588588
"[email protected]". Please email all bug reports to that
589-
address. Please include the NEWLIB version number (e.g., newlib-2.2.0),
589+
address. Please include the NEWLIB version number (e.g., newlib-2.3.0),
590590
and how you configured it (e.g., "sun4 host and m68k-aout target").
591591
Since NEWLIB supports many different configurations, it is important
592592
that you be precise about this.

newlib/acinclude.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl This provides configure definitions used by all the newlib
22
dnl configure.in files.
33

44
AC_DEFUN([DEF_NEWLIB_VERSION],
5-
m4_define([NEWLIB_VERSION],[2.2.0]))
5+
m4_define([NEWLIB_VERSION],[2.3.0]))
66

77
dnl Basic newlib configury. This calls basic introductory stuff,
88
dnl including AM_INIT_AUTOMAKE and AC_CANONICAL_HOST. It also runs

0 commit comments

Comments
 (0)