From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B0A511382C5 for ; Thu, 15 Mar 2018 15:40:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83D85E08C3; Thu, 15 Mar 2018 15:40:19 +0000 (UTC) Received: from pmta31.teksavvy.com (pmta31.teksavvy.com [76.10.157.38]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 34BE7E07E0 for ; Thu, 15 Mar 2018 15:40:19 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2E5ZgCikqpa/7jSSC1eHAEBAQQBAQoBA?= =?us-ascii?q?YNQZHAoiFSEfY4OggOBFpYNL4RrAoM0ITgUAQIBAQEBAQECA2gcDIJrS1sBAQE?= =?us-ascii?q?BAQEjAg1eAQQBOkQLCw0UExIPBVyFEAgPsFQhAoRLg3KCBQWFLoIUU4EBhHSDB?= =?us-ascii?q?xcBA4IwgmyCMQOHLQSGIIpPCQKBdYQPiRWIFhcMhH+JK4gpNSKBUn0Igm0BAQE?= =?us-ascii?q?Niy6FWyQ0AQEBkCkBAQE?= X-IPAS-Result: =?us-ascii?q?A2E5ZgCikqpa/7jSSC1eHAEBAQQBAQoBAYNQZHAoiFSEfY4?= =?us-ascii?q?OggOBFpYNL4RrAoM0ITgUAQIBAQEBAQECA2gcDIJrS1sBAQEBAQEjAg1eAQQBO?= =?us-ascii?q?kQLCw0UExIPBVyFEAgPsFQhAoRLg3KCBQWFLoIUU4EBhHSDBxcBA4IwgmyCMQO?= =?us-ascii?q?HLQSGIIpPCQKBdYQPiRWIFhcMhH+JK4gpNSKBUn0Igm0BAQENiy6FWyQ0AQEBk?= =?us-ascii?q?CkBAQE?= X-IronPort-AV: E=Sophos;i="5.48,311,1517893200"; d="scan'208";a="22706521" Received: from unknown (HELO waltdnes.org) ([45.72.210.184]) by smtp.teksavvy.com with SMTP; 15 Mar 2018 11:40:17 -0400 Received: by waltdnes.org (sSMTP sendmail emulation); Thu, 15 Mar 2018 11:40:13 -0400 From: "Walter Dnes" Date: Thu, 15 Mar 2018 11:40:13 -0400 To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] webkit-gtk-2.18.6 failed (compile phase) Message-ID: <20180315154013.GA3476@waltdnes.org> References: <0d96deec-57b2-83bb-61f9-40f384b5244d@sys-concept.com> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <0d96deec-57b2-83bb-61f9-40f384b5244d@sys-concept.com> User-Agent: Mutt/1.7.2 (2016-11-26) X-Archives-Salt: 2f113379-4a07-4c02-8f12-0b7395591c77 X-Archives-Hash: 578689f3e8558f6c125e115315f7f005 On Wed, Mar 14, 2018 at 10:29:49PM -0600, thelma@sys-concept.com wrote > I've installed webkit-gtk-2.18.6 on two other boxes and it went just > fine but the third box is giving me an error. > ninja: build stopped: subcommand failed. > * ERROR: net-libs/webkit-gtk-2.18.6::gentoo failed (compile phase): > * ninja -v -j5 -l8 failed One option that sometimes cures mysterious failures is to do the build with... MAKEOPTS="-j1" Yes, the build takes longer, but it may actually build. Remember to set the option back to normal value after experimenting. A couple of unrelated items... 1) > ================================================================= > System Settings > ================================================================= > System uname: Linux-4.9.72-gentoo-x86_64-Intel-R-_Core-TM-2_Quad_CPU_Q9550_@_2.83GHz-with-gentoo-2.4.1 > CFLAGS="-march=nocona -O2 -pipe" > CXXFLAGS="-march=nocona -O2 -pipe" Your kernel indicates "Core2", but your C(XX)FLAGS show "nocona". https://gcc.gnu.org/onlinedocs/gcc-6.4.0/gcc/x86-Options.html#x86-Options indicates that Core2 has the SSSE3 instruction set (not to be confused with SSE3) that Nocona doesn't have. "-march=native" is recommended unless you're using the machine to do binary builds for other Nocona machines. 2) > MAKEOPTS="-j5 -l8" ...on a 4-core cpu. There is some question about MAKEOPTS="-j($cores+1)" https://blogs.gentoo.org/ago/2013/01/14/makeopts-jcore-1-is-not-the-best-optimization/ As the old saying goes, "your mileage may vary". -- Walter Dnes I don't run "desktop environments"; I run useful applications