From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id D38D5385840A; Sat, 11 Sep 2021 22:58:29 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D38D5385840A From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/57125] Build not SMP safe; fails to build bconfig.h Date: Sat, 11 Sep 2021 22:58:29 +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 X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 8.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution target_milestone bug_status keywords 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Sep 2021 22:58:29 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D57125 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Target Milestone|--- |8.0 Status|UNCONFIRMED |RESOLVED Keywords| |build --- Comment #10 from Andrew Pinski --- f142b5bc2102 (Romain Geissler 2011-08-04 11:30:45 +0000 2872) gengtype-lex.o build/gengtype-lex.o : gengtype-lex.c gengtype.h $(SYSTEM_H) d6d34aa9133a (Jakub Jelinek 2014-12-03 17:44:27 +0100 2873) CFLAGS-gengtype-lex.o +=3D -DHOST_GENERATOR_FILE f142b5bc2102 (Romain Geissler 2011-08-04 11:30:45 +0000 2874) build/gengtype-lex.o: $(BCONFIG_H) 18406601136a (Paolo Bonzini 2010-11-13 09:42:58 +0000 3001) # Generated source files for gengtype. Prepend inclusion of 8c7dbea9f193 (Boris Kolpackov 2017-11-26 13:00:48 +0000 3002) # config.h/bconfig.h because AIX requires _LARGE_FILES to be defined before 18406601136a (Paolo Bonzini 2010-11-13 09:42:58 +0000 3003) # a= ny system header is included. 03787dfd8153 (Kelley Cook 2004-01-15 04:02:24 +0000 3004) gengtype-lex.c : gengtype-lex.l 8fb15466274a (Paolo Bonzini 2010-11-11 23:44:44 +0000 3005)=20= =20=20=20=20=20=20=20 -$(FLEX) $(FLEXFLAGS) -o$@ $< && { \ 8c7dbea9f193 (Boris Kolpackov 2017-11-26 13:00:48 +0000 3006)=20= =20=20=20=20=20=20=20 echo '#ifdef HOST_GENERATOR_FILE' > $@.tmp; \ 8c7dbea9f193 (Boris Kolpackov 2017-11-26 13:00:48 +0000 3007)=20= =20=20=20=20=20=20=20 echo '#include "config.h"' >> $@.tmp; \ 8c7dbea9f193 (Boris Kolpackov 2017-11-26 13:00:48 +0000 3008)=20= =20=20=20=20=20=20=20 echo '#else' >> $@.tmp; \ 8c7dbea9f193 (Boris Kolpackov 2017-11-26 13:00:48 +0000 3009)=20= =20=20=20=20=20=20=20 echo '#include "bconfig.h"' >> $@.tmp; \ 8c7dbea9f193 (Boris Kolpackov 2017-11-26 13:00:48 +0000 3010)=20= =20=20=20=20=20=20=20 echo '#endif' >> $@.tmp; \ 8fb15466274a (Paolo Bonzini 2010-11-11 23:44:44 +0000 3011)=20= =20=20=20=20=20=20=20 cat $@ >> $@.tmp; \ 8fb15466274a (Paolo Bonzini 2010-11-11 23:44:44 +0000 3012)=20= =20=20=20=20=20=20=20 mv $@.tmp $@; \ 8fb15466274a (Paolo Bonzini 2010-11-11 23:44:44 +0000 3013)=20= =20=20=20=20=20=20=20 } So this was fixed with r8-4925-g8c7dbea9f193=