From: Adhemerval Zanella Date: Thu, 1 Apr 2021 17:43:08 +0000 (-0300) Subject: socket: Add CFLAGS-accept.c and CFLAGS-connect.c X-Git-Tag: glibc-2.34~715 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a4dceb2684dfe63748e1f18ac2d6acd39e2f27c3;p=thirdparty%2Fglibc.git socket: Add CFLAGS-accept.c and CFLAGS-connect.c The c59f716993 (accept) and 3ddf9bc185 (connect) added on io/Makefile instead of socket/Makefile. Checked on arm-linux-gnueabihf (where without the flags both the tst-cancelx4 and tst-cancelx5 fails). --- diff --git a/io/Makefile b/io/Makefile index c9919d666f8..914d7689b22 100644 --- a/io/Makefile +++ b/io/Makefile @@ -105,8 +105,6 @@ CFLAGS-fallocate64.c += -fexceptions CFLAGS-read.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-write.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-close.c += -fexceptions -fasynchronous-unwind-tables -CFLAGS-accept.c += -fexceptions -fasynchronous-unwind-tables -CFLAGS-connect.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-test-stat.c += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE CFLAGS-test-lfs.c += -D_LARGEFILE64_SOURCE diff --git a/socket/Makefile b/socket/Makefile index 855510ad48b..27ffe44c052 100644 --- a/socket/Makefile +++ b/socket/Makefile @@ -43,3 +43,5 @@ CFLAGS-sendto.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-recvmsg.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-sendmsg.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-send.c += -fexceptions -fasynchronous-unwind-tables +CFLAGS-connect.c += -fexceptions -fasynchronous-unwind-tables +CFLAGS-accept.c += -fexceptions -fasynchronous-unwind-tables