Add *-ldbl.h headers to include/bits
commit1a502f5260f1513b9ba38b68d8087e48bc0ede0c
authorGabriel F. T. Gomes <gabriel@inconstante.eti.br>
Fri, 23 Nov 2018 16:00:06 +0000 (23 14:00 -0200)
committerGabriel F. T. Gomes <gabriel@inconstante.eti.br>
Tue, 11 Dec 2018 17:00:11 +0000 (11 15:00 -0200)
treec1a66c606e09135bcbae4be49b74d9f3fe759417
parentdf682d1d745e078621bee5a1f4a0b40f1b8dfca1
Add *-ldbl.h headers to include/bits

On some platforms, long double may have either the same format as double
or another, wider format, such as the Quadruple IEC 60559 long double
format or the IBM Extended Precision format (both 128-bits wide).
Selecting between the available formats is done by using one of the
following compiler switches: -mlong-double-128, for the wider format, or
-mlong-double-64, for the narrower.  On all platforms that provide this
choice, the wider format is the default.

When the non-default format is selected by user code (i.e.: when
building with -mlong-double-64) calls to functions that take long double
parameters or return a long double type (e.g.: strfroml) are redirected
to a compat function, via assembler redirection, by headers such as
bits/stdlib-ldbl.h or bits/misc-ldbl.h.

In glibc builds, however, these headers are currently being read from
the system directories (/usr/include/bits) rather than from the source
directory.  Although this works correctly today, it raises
reproducibility concerns.  Besides that, builds for powerpc64le will
need these files from the source directory, because on powerpc64le, the
new redirections for long double with IEEE binary128 format will be
implemented in these headers.

Tested for powerpc64 and powerpc64le.
ChangeLog
include/bits/monetary-ldbl.h [new file with mode: 0644]
include/bits/printf-ldbl.h [new file with mode: 0644]
include/bits/stdio-ldbl.h [new file with mode: 0644]
include/bits/stdlib-ldbl.h [new file with mode: 0644]
include/bits/syslog-ldbl.h [new file with mode: 0644]
include/bits/wchar-ldbl.h [new file with mode: 0644]