diff options
author | Joseph Myers <joseph@codesourcery.com> | 2014-12-10 18:45:03 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2014-12-10 18:45:03 +0000 |
commit | 2b89bce91e3c7c6113c3d8d3a52f87cafeafdfbf (patch) | |
tree | 75f48db7c48b0784590a76f46f5f7cbf40ff5637 /ChangeLog | |
parent | 07008f7d6ae9a75228d370c84d20e84616543ec0 (diff) | |
download | glibc-2b89bce91e3c7c6113c3d8d3a52f87cafeafdfbf.zip glibc-2b89bce91e3c7c6113c3d8d3a52f87cafeafdfbf.tar.gz glibc-2b89bce91e3c7c6113c3d8d3a52f87cafeafdfbf.tar.bz2 |
Fix MIPS sigaction build.
Building MIPS sigaction (for ABIs other than o32) fails because of
"'restore_rt' used but never defined", arising from static functions
being defined in asms and referred to from C code. There is no
corresponding -W option for that warning, so this patch uses
-Wno-error for building sigaction.c.
* sysdeps/unix/sysv/linux/mips/mips64/Makefile
[$(subdir) == signal] (CFLAGS-sigaction.c): New variable.
[$(subdir) == nptl] (CFLAGS-sigaction.c): Likewise.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,4 +1,10 @@ 2014-12-10 Joseph Myers <joseph@codesourcery.com> + + * sysdeps/unix/sysv/linux/mips/mips64/Makefile + [$(subdir) == signal] (CFLAGS-sigaction.c): New variable. + [$(subdir) == nptl] (CFLAGS-sigaction.c): Likewise. + +2014-12-10 Joseph Myers <joseph@codesourcery.com> Adhemerval Zanella <azanella@linux.vnet.ibm.com> [BZ #17634] |