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 926C91382C5 for ; Thu, 8 Mar 2018 22:19:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF89AE09AD; Thu, 8 Mar 2018 22:19:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B161FE09B7 for ; Thu, 8 Mar 2018 22:19:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5828335C34 for ; Thu, 8 Mar 2018 22:19:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4AFBF246 for ; Thu, 8 Mar 2018 22:19:05 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1520547535.c8a4003ddfe67ee28d62f82bad4f97d7ab2a803e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lldb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/lldb/lldb-6.0.9999.ebuild dev-util/lldb/lldb-9999.ebuild X-VCS-Directories: dev-util/lldb/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c8a4003ddfe67ee28d62f82bad4f97d7ab2a803e X-VCS-Branch: master Date: Thu, 8 Mar 2018 22:19:05 +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: b65599b7-0821-4e55-a4ac-5b13a0cb832a X-Archives-Hash: ec21d54b686a30e2c41446e71c9de467 commit: c8a4003ddfe67ee28d62f82bad4f97d7ab2a803e Author: Michał Górny gentoo org> AuthorDate: Thu Mar 8 22:02:09 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 8 22:18:55 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8a4003d dev-util/lldb: Control lit job count Closes: https://bugs.gentoo.org/649554 dev-util/lldb/lldb-6.0.9999.ebuild | 5 +++-- dev-util/lldb/lldb-9999.ebuild | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/dev-util/lldb/lldb-6.0.9999.ebuild b/dev-util/lldb/lldb-6.0.9999.ebuild index 6d4a7f298bb..b71a6bf3bc3 100644 --- a/dev-util/lldb/lldb-6.0.9999.ebuild +++ b/dev-util/lldb/lldb-6.0.9999.ebuild @@ -8,7 +8,8 @@ EAPI=6 CMAKE_MIN_VERSION=3.7.0-r1 PYTHON_COMPAT=( python2_7 ) -inherit cmake-utils git-r3 llvm python-single-r1 toolchain-funcs +inherit cmake-utils git-r3 llvm multiprocessing python-single-r1 \ + toolchain-funcs DESCRIPTION="The LLVM debugger" HOMEPAGE="https://llvm.org/" @@ -91,7 +92,7 @@ src_configure() { -DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm" -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="-vv" + -DLLVM_LIT_ARGS="-vv;-j;${LIT_JOBS:-$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")}" ) cmake-utils_src_configure diff --git a/dev-util/lldb/lldb-9999.ebuild b/dev-util/lldb/lldb-9999.ebuild index 7e422adecfd..077232dbf5f 100644 --- a/dev-util/lldb/lldb-9999.ebuild +++ b/dev-util/lldb/lldb-9999.ebuild @@ -8,7 +8,8 @@ EAPI=6 CMAKE_MIN_VERSION=3.7.0-r1 PYTHON_COMPAT=( python2_7 ) -inherit cmake-utils git-r3 llvm python-single-r1 toolchain-funcs +inherit cmake-utils git-r3 llvm multiprocessing python-single-r1 \ + toolchain-funcs DESCRIPTION="The LLVM debugger" HOMEPAGE="https://llvm.org/" @@ -90,7 +91,7 @@ src_configure() { -DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm" -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" - -DLLVM_LIT_ARGS="-vv" + -DLLVM_LIT_ARGS="-vv;-j;${LIT_JOBS:-$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")}" ) cmake-utils_src_configure