From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by sourceware.org (Postfix) with ESMTPS id 1632738DF3CF for ; Fri, 9 Dec 2022 10:07:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 1632738DF3CF 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-out2.suse.de (Postfix) with ESMTPS id E2B561FDB1; Fri, 9 Dec 2022 10:07:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1670580474; 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; bh=EJysvUJa8OqW51oom61V9fqpYw2ZHXSsyCPLUbg0RLI=; b=fE79lwraFp/5DnxKscrgraQ3Ru+diOsl4VRrLzCQp7sjyvXZ7HI55tR1EuDtsR57HS6WUs Tfrck9+FdwL5tjljK2n/Kf66+NoHBAmxEW9jSHyqz84lGDb3bOTgOixLB0oCVvUqcGlWB5 4d0QnDzYZsaKGQr/lsE37lcAjGosBcM= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1670580474; 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; bh=EJysvUJa8OqW51oom61V9fqpYw2ZHXSsyCPLUbg0RLI=; b=amsH7XeOdYIsg0ETwrBgHkYzafAu6rL36pCchXutkKKc5WjwMLCgVRohdshAZ8OW/GeFGK jb5zsqZ5jLKiSoBw== 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 A6D91138E0; Fri, 9 Dec 2022 10:07:54 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id 9OH7JfoIk2M5fAAAMHmgww (envelope-from ); Fri, 09 Dec 2022 10:07:54 +0000 Message-ID: <8b594fb7-343d-ca34-20c7-e15f6315c884@suse.cz> Date: Fri, 9 Dec 2022 11:07:54 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.5.1 Content-Language: en-US To: GCC Patches Cc: Jakub Jelinek , =?UTF-8?Q?Arsen_Arsenovi=c4=87?= , Richard Biener From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: [PATCH] Backport gcc-12: jobserver FIFO support 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,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 List-Id: Hi. As make 4.4 has been release, it switches to FIFO by default. That makes troubles to the latest GCC release, version 12. Right now, we've been using the following 4 patches in openSUSE gcc12 package: 1270ccda70ca09f7d4fe76b5156dca8992bd77a6 53e3b2bf16a486c15c20991c6095f7be09012b55 fed766af32ed6cd371016cc24e931131e19b4eb1 3f1c2f89f6b8b8d23a9072f8549b0a2c1de06b03 Would it be fine to backport it to gcc-12 branch? Arsen asked me the today as Gentoo people want it as well. Patch can bootstrap on x86_64-linux-gnu and survives regression tests. Ready to be installed? Thanks, Martin