diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/i386/Makefile | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2011-01-10 Paul Pluzhnikov <ppluzhnikov@google.com> + + * sysdeps/i386/Makefile: stdlib/cxa_finalize.c needs 16-byte stack + alignment for SSE2. + 2011-01-12 Ulrich Drepper <drepper@gmail.com> [BZ #12394] diff --git a/sysdeps/i386/Makefile b/sysdeps/i386/Makefile index ef45ce6e78..3d9f3fc358 100644 --- a/sysdeps/i386/Makefile +++ b/sysdeps/i386/Makefile @@ -47,6 +47,7 @@ endif # And a couple of other routines ifeq ($(subdir),stdlib) CFLAGS-exit.c += -mpreferred-stack-boundary=4 +CFLAGS-cxa_finalize.c += -mpreferred-stack-boundary=4 endif ifeq ($(subdir),elf) CFLAGS-dl-init.c += -mpreferred-stack-boundary=4 |