]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
socket: Add CFLAGS-accept.c and CFLAGS-connect.c
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 1 Apr 2021 17:43:08 +0000 (14:43 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 1 Apr 2021 17:45:49 +0000 (14:45 -0300)
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).

io/Makefile
socket/Makefile

index c9919d666f8361d83546a62eb611591fa8e47c84..914d7689b22cb3e1ab82d4d67b252c8e272b2e62 100644 (file)
@@ -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
index 855510ad48ba3cf49636dcd3bd424c446fae0d7e..27ffe44c052524a6311a2b8049b04190ebe6b6e5 100644 (file)
@@ -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