glibc:hjl/pr14654

Last commit made on 2012-10-04
Get this branch:
git clone -b hjl/pr14654 https://git.launchpad.net/glibc

Branch merges

Branch information

Name:
hjl/pr14654
Repository:
lp:glibc

Recent commits

7f2e6e8... by "H.J. Lu" <email address hidden>

Extract __mul from sysdeps/ieee754/dbl-64/mpa.c

Compile __mul with both AVX and FMA4. Compile other functions only with
AVX since they don't benefit from FMA4.

f57f805... by Roland McGrath <email address hidden>

Clean up conditionalize of ld.so.cache support.

8f565a2... by Steve Ellcey <email address hidden>

2012-10-03 Steve Ellcey <email address hidden>

 * sysdeps/mips/ieee754.h: Move to...
 * sysdeps/mips/ieee754/ieee754.h: Here.
 * sysdeps/mips/mips32/Implies: Add mips/ieee754.
 * sysdeps/mips/mips64/Implies: Ditto.
 * sysdeps/mips/mips64/n32/Implies: Ditto.
 * sysdeps/mips/mips64/n64/Implies: Ditto.

05088f1... by Steve Ellcey <email address hidden>

2012-10-03 Steve Ellcey <email address hidden>

 * sysdeps/mips/ieee754.h: Move to...
 * sysdeps/mips/ieee754/ieee754.h: Here.
 * sysdeps/mips/mips32/Implies: Add mips/ieee754.
 * sysdeps/mips/mips64/Implies: Ditto.
 * sysdeps/mips/mips64/n32/Implies: Ditto.
 * sysdeps/mips/mips64/n64/Implies: Ditto.

5bb0c10... by Pino Toscano

sysconf/posix: handle _SC_LEVEL4_CACHE_LINESIZE

010188c... by Roland McGrath <email address hidden>

Remove sysdeps/unix/bsd/confstr.h file.

b6c5ec0... by Alexandre Oliva <email address hidden>

* scripts/check-local-headers.sh: Exclude sys/sdt.h and
sys/sdt-config.h.

b2f80a4... by "H.J. Lu" <email address hidden>

Update copyright years

408223d... by Roland McGrath <email address hidden>

Use ElfW(Off) rather than off_t for offsets within ELF files.

fc997c6... by Dmitry V. Levin

nscd: fix compilation flags

Commit 61653dfb81b776bb72ce4304175b861d77c357a8 added support for
compilers predefining _FORTIFY_SOURCE by adding -U_FORTIFY_SOURCE to
CPPFLAGS for these compilers, but that change doesn't work quite well in
case of nscd: its Makefile sets _FORTIFY_SOURCE using CFLAGS instead of
CPPFLAGS and, thanks to compilation rules defined in Makerules, CPPFLAGS
are passed to compiler after CFLAGS, resulting to a build with
_FORTIFY_SOURCE turned off.

This change implements a more safe method of passing preprocessor and
compiler flags so that no nscd modules could be accidentally forgotten.