From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id 285313858D35 for ; Thu, 22 Jun 2023 19:59:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 285313858D35 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1687463996; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=ddMabo7CaN4hD2RoWfFFJ0G/OFW4d7KLiWyohvi1XE0=; b=LeOmUIqFb7g1tjH6xSJH6CptTPqBG3R9Y/Yg3elputmJ5A3Hxs3Vx7bG1CxiktKTXsv1mu W5SzmQwYVTjoiMPKs/nUHEf3rDUQoD/ws2+yCDd+D2/S+ZV0kzprxYNlbmEBqZOkp0YlZ1 Qyu1jx2hX/UaQgBZ/wMfT33DNH0hwfU= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-160-M_3_F-bgMKuBwjX97_brEg-1; Thu, 22 Jun 2023 15:59:55 -0400 X-MC-Unique: M_3_F-bgMKuBwjX97_brEg-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id B18DF88D0F7 for ; Thu, 22 Jun 2023 19:59:53 +0000 (UTC) Received: from oak (unknown [10.22.8.210]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 9C4A7200A3AD for ; Thu, 22 Jun 2023 19:59:53 +0000 (UTC) Date: Thu, 22 Jun 2023 15:59:52 -0400 From: Joe Simmons-Talbott To: libc-help@sourceware.org Subject: build-many-glibcs.py build failure for i686-gnu Message-ID: <20230622195952.GL6392@oak> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.4 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Spam-Status: No, score=-5.7 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H5,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi, I'm investigating a build failure using build-many-glibcs.py for i686-gnu. There seems to be a mismatch between the declaration of _hurdsig_fault_catch_exception_raise in hurd/hurdfault.c and the generated header hurd/faultexc_server.h. I can't figure out how the header is being generated. The error I'm seeing is: hurdfault.c:39:1: error: conflicting types for <80><98>_hurdsig_fault_catch_exception_raise<80><99>; have <80><98>kern_return_t(mach_port_t, thread_t, task_t, integer_t, integer_t, long_integer_t)<80><99> {aka <80><98>int(unsigned int, unsigned int, unsigned int, int, int, long int)<80><99>} 39 | _hurdsig_fault_catch_exception_raise (mach_port_t port, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from hurdfault.c:27: /home/josepht/build-many-glibcs/build/glibcs/i686-gnu/glibc/hurd/faultexc_server.h:19:15: note: previous declaration o f <80><98>_hurdsig_fault_catch_exception_raise<80><99> with type <80><98>kern_return_t(mach_port_t, mach_ port_t, mach_port_t, integer_t, integer_t, integer_t)<80><99> {aka <80><98>int(unsigned int, unsigned int , unsigned int, int, int, int)<80><99>} 19 | kern_return_t _hurdsig_fault_catch_exception_raise | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ make[3]: *** [../o-iterator.mk:9: /home/josepht/build-many-glibcs/build/glibcs/i686-gnu/glibc/hurd/hurdfault.o] Error 1 Thanks for any insights. Thanks, Joe