From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 29AFE385840B; Thu, 13 Jan 2022 21:39:12 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 29AFE385840B From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/104006] [12 regression] power-ieee128 merge breaks Solaris build Date: Thu, 13 Jan 2022 21:39:12 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Version: 12.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org X-Bugzilla-Target-Milestone: 12.0 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 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: Thu, 13 Jan 2022 21:39:12 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D104006 --- Comment #21 from Jakub Jelinek --- That is make -j48 from where? Toplevel, or the libgfortran build dir, or toplevel make -j48 all-target-libgfortran or make -j48 maybe-all-target-libgfortran? >>From what I can see, toplevel all-target-libgfortran should do make all in = the libgfortran build dir: ARGET-target-libgfortran=3Dall maybe-all-target-libgfortran: all-target-libgfortran all-target-libgfortran: configure-target-libgfortran @: $(MAKE); $(unstage) @r=3D`${PWD_COMMAND}`; export r; \ s=3D`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(NORMAL_TARGET_EXPORTS) \ (cd $(TARGET_SUBDIR)/libgfortran && \ $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS) \ $(TARGET-target-libgfortran)) and all: in the libgfortran Makefile should be: all: $(BUILT_SOURCES) config.h $(MAKE) $(AM_MAKEFLAGS) all-am (in your case with the ls -l added above it). Perhaps also above the ls do echo all in libgfortran, BUILT_SOURCES is $(BUILT_SOUCES) What version of GNU make are you using? I just don't understand how it could start building the object files etc. which is done from all-am before actually ensuring all those $(BUILT_SOURCE= S) like kinds.h exist.=