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 57681139696 for ; Fri, 14 Apr 2017 22:39:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F26AE0BE4; Fri, 14 Apr 2017 22:39:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 37040E0BE4 for ; Fri, 14 Apr 2017 22:39:02 +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 DB1A9341649 for ; Fri, 14 Apr 2017 22:39:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 200C27430 for ; Fri, 14 Apr 2017 22:38:59 +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: <1492209534.98f46d0de5bc6d9d608e3453c8e435d2e49e1a65.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/clang/clang-4.0.0-r1.ebuild sys-devel/clang/clang-4.0.0-r2.ebuild sys-devel/clang/clang-9999.ebuild X-VCS-Directories: sys-devel/clang/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 98f46d0de5bc6d9d608e3453c8e435d2e49e1a65 X-VCS-Branch: master Date: Fri, 14 Apr 2017 22:38:59 +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: 85658e50-5e96-46ce-8b1c-f6f31fcc8083 X-Archives-Hash: 06197e9b6b82f8bc5e8867d2157f28a7 commit: 98f46d0de5bc6d9d608e3453c8e435d2e49e1a65 Author: Michał Górny gentoo org> AuthorDate: Fri Apr 14 22:36:37 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Apr 14 22:38:54 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98f46d0d sys-devel/clang: Fix passing -DNDEBUG to build, #614844 sys-devel/clang/{clang-4.0.0-r1.ebuild => clang-4.0.0-r2.ebuild} | 2 ++ sys-devel/clang/clang-9999.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/sys-devel/clang/clang-4.0.0-r1.ebuild b/sys-devel/clang/clang-4.0.0-r2.ebuild similarity index 98% rename from sys-devel/clang/clang-4.0.0-r1.ebuild rename to sys-devel/clang/clang-4.0.0-r2.ebuild index eaf9b27e3c5..a127f9c864f 100644 --- a/sys-devel/clang/clang-4.0.0-r1.ebuild +++ b/sys-devel/clang/clang-4.0.0-r2.ebuild @@ -206,6 +206,8 @@ multilib_src_configure() { ) fi + # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 + use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" cmake-utils_src_configure } diff --git a/sys-devel/clang/clang-9999.ebuild b/sys-devel/clang/clang-9999.ebuild index 05f378ffda7..9987f2bfa1a 100644 --- a/sys-devel/clang/clang-9999.ebuild +++ b/sys-devel/clang/clang-9999.ebuild @@ -209,6 +209,8 @@ multilib_src_configure() { ) fi + # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 + use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" cmake-utils_src_configure }