From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id ABC5A3854175; Fri, 5 May 2023 12:48:15 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org ABC5A3854175 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1683290895; bh=GMP2ggECZSVDjFAvUAdJ3tVLhTE53zKVm1SJ01Ek5XY=; h=From:To:Subject:Date:In-Reply-To:References:From; b=xe/DwubazLjIMpe9w9Sq/Ad8FdXprzuGUcvlHMhrxu+DqwQeRgVCqPpNPzkqDzbrF QXlNcS9ma7qMGe7maSa7FR654Xe17MQrGAomC3FPAos74RDQ/g1paGzOyaU/m7ZS8F UryR/TAv9PSAA+bz3CHo+fhXaqOVKExF+XDjQs8s= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/84402] [meta] GCC build system: parallelism bottleneck Date: Fri, 05 May 2023 12:48:14 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: unknown X-Bugzilla-Keywords: build, meta-bug X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D84402 --- Comment #70 from CVS Commits --- The master branch has been updated by Tamar Christina : https://gcc.gnu.org/g:0a85544e1aaeca41133ecfc438cda913dbc0f122 commit r14-501-g0a85544e1aaeca41133ecfc438cda913dbc0f122 Author: Tamar Christina Date: Fri May 5 13:42:17 2023 +0100 match.pd: Use splits in makefile and make configurable. This updates the build system to split up match.pd files into chunks of= 10. This also introduces a new flag --with-matchpd-partitions which can be = used to change the number of partitions. For the analysis of why 10 please look at the previous patch in the ser= ies. gcc/ChangeLog: PR bootstrap/84402 * Makefile.in (NUM_MATCH_SPLITS, MATCH_SPLITS_SEQ, GIMPLE_MATCH_PD_SEQ_SRC, GIMPLE_MATCH_PD_SEQ_O, GENERIC_MATCH_PD_SEQ_SRC, GENERIC_MATCH_PD_SEQ_O): New. (OBJS, MOSTLYCLEANFILES, .PRECIOUS): Use them. (s-match): Split into s-generic-match and s-gimple-match. * configure.ac (with-matchpd-partitions, DEFAULT_MATCHPD_PARTITIONS): New. * configure: Regenerate.=