public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* PATCH: c++tools: fix compilation
@ 2022-10-20 16:33 Guillaume Gomez
  0 siblings, 0 replies; only message in thread
From: Guillaume Gomez @ 2022-10-20 16:33 UTC (permalink / raw)
  To: gcc-patches, jit


[-- Attachment #1.1: Type: text/plain, Size: 580 bytes --]

Hi,

This patch fixes the following compilation error:

../.././c++tools/server.cc: In function ‘void server(bool, int,
module_resolver*)’:
../.././c++tools/server.cc:756:69: error: ‘readers’ was not declared
in this scope; did you mean ‘read’?
  756 |               if (active < 0 && sock_fd >= 0 && FD_ISSET
(sock_fd, &readers))
      |
     ^~~~~~~

It was missing a preprocessor condition around this code to work as
the "readers" variable
is created only in a preprocessor condition.

Signed-off-by: Guillaume Gomez <guillaume1.gomez@gmail.com>

[-- Attachment #2: 0001-Add-missing-preprocessor-condition-to-fix-c-tools-se.patch --]
[-- Type: text/x-patch, Size: 755 bytes --]

From 39279d8b37287c09708d910921ce5cfa5b87ac01 Mon Sep 17 00:00:00 2001
From: Guillaume Gomez <guillaume1.gomez@gmail.com>
Date: Thu, 20 Oct 2022 18:18:52 +0200
Subject: [PATCH] Add missing preprocessor condition to fix c++tools/server.cc
 file compilation

---
 c++tools/server.cc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/c++tools/server.cc b/c++tools/server.cc
index 00154a05925..693aec6820a 100644
--- a/c++tools/server.cc
+++ b/c++tools/server.cc
@@ -753,8 +753,10 @@ server (bool ipv6, int sock_fd, module_resolver *resolver)
 		      }
 		  }
 
+#if defined (HAVE_PSELECT) || defined (HAVE_SELECT)
 	      if (active < 0 && sock_fd >= 0 && FD_ISSET (sock_fd, &readers))
 		active = -1;
+#endif
 	    }
 
 	  if (active >= 0)
-- 
2.34.1


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-10-20 16:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-20 16:33 PATCH: c++tools: fix compilation Guillaume Gomez

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).