02ce382cd3
On bare-metal targets, I/O support is typically provided by a BSP and requires a linker script and/or hosting library to be specified on the linker command line. Linking an empty program with the default linker script may succeed, however, which confuses libstdc++ configuration when programs that probe for the presence of various I/O features fail with link errors. 2020-02-12 Sandra Loosemore <sandra@codesourcery.com> PR libstdc++/79193 PR libstdc++/88999 config/ * no-executables.m4: Use a non-empty program to test for linker support. libgcc/ * configure: Regenerated. libgfortran/ * configure: Regenerated. libiberty/ * configure: Regenerated. libitm/ * configure: Regenerated. libobjc/ * configure: Regenerated. libquadmath/ * configure: Regenerated. libssp/ * configure: Regenerated. libstdc++v-3/ * configure: Regenerated.
55 lines
1.7 KiB
Plaintext
55 lines
1.7 KiB
Plaintext
2020-02-12 Sandra Loosemore <sandra@codesourcery.com>
|
||
|
||
PR libstdc++/79193
|
||
PR libstdc++/88999
|
||
|
||
* configure: Regenerated.
|
||
|
||
2020-01-24 Maciej W. Rozycki <macro@wdc.com>
|
||
|
||
* configure.ac: Handle `--with-toolexeclibdir='.
|
||
* Makefile.in: Regenerate.
|
||
* aclocal.m4: Regenerate.
|
||
* configure: Regenerate.
|
||
|
||
2020-01-17 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||
|
||
PR libfortran/93234
|
||
* io/unit.c (set_internal_unit): Set round and sign flags
|
||
correctly.
|
||
|
||
2020-01-17 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||
|
||
PR libfortran/90374
|
||
* io/format.c (parse_format_list): Zero width not allowed with
|
||
FMT_D.
|
||
* io/write_float.def (build_float_string): Include range of
|
||
higher exponent values that require wider width.
|
||
|
||
2020-01-01 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||
|
||
PR libfortran/90374
|
||
* io/format.c (parse_format_list): Implement the E0 exponent
|
||
width to provide smallest possible width for exponent fields.
|
||
Refactor code for correct parsing and better readability of the
|
||
code.
|
||
* io/io.h (write_real_w0): Change interface to pass in pointer
|
||
to fnode.
|
||
* io/transfer.c: Update all calls to write_real_w0 to use the
|
||
new interface.
|
||
* io/write.c ((write_real_w0): Use the new interface with fnode
|
||
to access both the decimal precision and exponent widths used in
|
||
build_float_string.
|
||
* io/write_float.def (build_float_string): Use the passed in
|
||
exponent width to calculate the used width in the case of E0.
|
||
|
||
2020-01-01 Jakub Jelinek <jakub@redhat.com>
|
||
|
||
Update copyright years.
|
||
|
||
Copyright (C) 2020 Free Software Foundation, Inc.
|
||
|
||
Copying and distribution of this file, with or without modification,
|
||
are permitted in any medium without royalty provided the copyright
|
||
notice and this notice are preserved.
|