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 5016213847C for ; Mon, 14 Jan 2013 09:46:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C921421C026; Mon, 14 Jan 2013 09:46:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6165121C026 for ; Mon, 14 Jan 2013 09:46:19 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4AB0433DA49 for ; Mon, 14 Jan 2013 09:46:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id D0812E4073 for ; Mon, 14 Jan 2013 09:46:16 +0000 (UTC) From: "Agostino Sarubbo" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Agostino Sarubbo" Message-ID: <1358156757.ed87fb57207ab2a0a5cd2457f980becb8d96c962.ago@gentoo> Subject: [gentoo-commits] dev/ago:master commit in: script/ X-VCS-Repository: dev/ago X-VCS-Files: script/best_makeopts.sh X-VCS-Directories: script/ X-VCS-Committer: ago X-VCS-Committer-Name: Agostino Sarubbo X-VCS-Revision: ed87fb57207ab2a0a5cd2457f980becb8d96c962 X-VCS-Branch: master Date: Mon, 14 Jan 2013 09:46:16 +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: 8c99d407-9f17-4c2c-b596-779452f81dbd X-Archives-Hash: dd1d65eb602a579a0ec1b28b219755fb commit: ed87fb57207ab2a0a5cd2457f980becb8d96c962 Author: Agostino Sarubbo gentoo org> AuthorDate: Mon Jan 14 09:45:57 2013 +0000 Commit: Agostino Sarubbo gentoo org> CommitDate: Mon Jan 14 09:45:57 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/ago.git;a=commit;h=ed87fb57 add best_makeopts --- script/best_makeopts.sh | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/script/best_makeopts.sh b/script/best_makeopts.sh new file mode 100755 index 0000000..58b070c --- /dev/null +++ b/script/best_makeopts.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +PACKAGE="kde-base/kdelibs" + +DISTDIR="/tmp/" emerge -f ${PACKAGE} + +for i in {1..10} +do + echo 1 > /proc/sys/vm/drop_caches + time DISTDIR="/tmp" MAKEOPTS="-j${i}" emerge -q1OB ${PACKAGE} + echo -ne "\n\n\n" +done