From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by sourceware.org (Postfix) with ESMTPS id D793B3858D28 for ; Thu, 21 Jul 2022 11:52:42 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org D793B3858D28 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.cz Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id E897634822; Thu, 21 Jul 2022 11:52:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1658404360; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=wU+PLCvNc8gp+YyWvOsrIxSl7YhrP0vOqc3F4wkDiUs=; b=Da3ApTQW6sU68tSTQ9HZKxZlzJV0aB16nbIre204GzxNBIV0D1yAi6QUle5ml6/tCi6mr2 un1/DeVQ8waI3dVmNJ6tE7Vg31vKoFmigk7HhPh1pOMK9hFa8AIHhX/dMMnVmn034r4WBY 85/YlG6qYGt/tzNwlTm1dr9jmQ+AJ7o= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1658404360; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=wU+PLCvNc8gp+YyWvOsrIxSl7YhrP0vOqc3F4wkDiUs=; b=0VjxmqiH6J2w532l+CpVF4p3Uu9oW4k1fGNKRxHenqbvaCl42DF/Aw5t3dZDI9Pw2Rt1Vc R4MGfqbeG/87GCBw== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id B36C113A1B; Thu, 21 Jul 2022 11:52:40 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id g0y3KQg+2WLueAAAMHmgww (envelope-from ); Thu, 21 Jul 2022 11:52:40 +0000 Message-ID: Date: Thu, 21 Jul 2022 13:52:40 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.11.0 Subject: Re: libgo patch committed: Don't include in sysinfo.c Content-Language: en-US To: Richard Biener , Ian Lance Taylor Cc: gcc-patches , gofrontend-dev References: From: =?UTF-8?Q?Martin_Li=c5=a1ka?= In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-5.9 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, KAM_SHORT, NICE_REPLY_A, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jul 2022 11:52:44 -0000 On 7/21/22 12:19, Richard Biener via Gcc-patches wrote: > On Wed, Jul 13, 2022 at 6:03 PM Ian Lance Taylor via Gcc-patches > wrote: >> >> This libgo patch stops including when building >> gen-sysinfo.go. Removing this doesn't change anything at least with >> glibc 2.33. The include was added in https://go.dev/cl/6100049 but >> it's not clear why. This should fix GCC PR 106266. Bootstrapped and >> ran Go testsuite on x86_64-pc-linux-gnu. Committed to mainline. > > Btw, active branches are affected the same way - can you please backport? I've just done that. Martin > >> Ian