From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 05760138010 for ; Thu, 11 Oct 2012 18:37:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F41D21C00A; Thu, 11 Oct 2012 18:37:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id F12D421C00A for ; Thu, 11 Oct 2012 18:37:08 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3A6D6335E31 for ; Thu, 11 Oct 2012 18:37:08 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2261) id 0099821601; Thu, 11 Oct 2012 18:37:06 +0000 (UTC) From: "PaweA Hajdan (phajdan.jr)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, phajdan.jr@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/nacl-toolchain-newlib/files: gcc-parallel-build-r0.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: gcc-parallel-build-r0.patch X-VCS-Directories: dev-lang/nacl-toolchain-newlib/files X-VCS-Committer: phajdan.jr X-VCS-Committer-Name: PaweA Hajdan Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20121011183707.0099821601@flycatcher.gentoo.org> Date: Thu, 11 Oct 2012 18:37:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b700d1f4-6097-42ae-ab78-4eb405aed1bf X-Archives-Hash: 0ad40df62d49238b53cde6ea5f80672c phajdan.jr 12/10/11 18:37:06 Added: gcc-parallel-build-r0.patch Log: Fix parallel build failure, bug #437048 by Kai Krakow. (Portage version: 2.1.11.9/cvs/Linux i686) Revision Changes Path 1.1 dev-lang/nacl-toolchain-newlib/files/gcc-parallel-build-r0.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/nacl-toolchain-newlib/files/gcc-parallel-build-r0.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/nacl-toolchain-newlib/files/gcc-parallel-build-r0.patch?rev=1.1&content-type=text/plain Index: gcc-parallel-build-r0.patch =================================================================== Parallel build error: all-tree.def: No such file or directory http://gcc.gnu.org/PR46173 --- a/gcc/gcc/Makefile.in +++ b/gcc/gcc/Makefile.in @@ -3421,7 +3421,7 @@ build/genattrtab.o : genattrtab.c $(RTL_BASE_H) $(OBSTACK_H) \ build/genautomata.o : genautomata.c $(RTL_BASE_H) $(OBSTACK_H) \ $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h vec.h \ $(HASHTAB_H) gensupport.h -build/gencheck.o : gencheck.c tree.def $(BCONFIG_H) $(GTM_H) \ +build/gencheck.o : gencheck.c all-tree.def $(BCONFIG_H) $(GTM_H) \ $(SYSTEM_H) coretypes.h $(lang_tree_files) gimple.def build/genchecksum.o : genchecksum.c $(BCONFIG_H) $(SYSTEM_H) $(MD5_H) build/gencodes.o : gencodes.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \