From owner-svn-src-all@FreeBSD.ORG Thu Oct 10 20:33:19 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4BB14943; Thu, 10 Oct 2013 20:33:19 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 396A82AF8; Thu, 10 Oct 2013 20:33:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9AKXJmo054305; Thu, 10 Oct 2013 20:33:19 GMT (envelope-from dim@svn.freebsd.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9AKXJ5h054303; Thu, 10 Oct 2013 20:33:19 GMT (envelope-from dim@svn.freebsd.org) Message-Id: <201310102033.r9AKXJ5h054303@svn.freebsd.org> From: Dimitry Andric Date: Thu, 10 Oct 2013 20:33:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org Subject: svn commit: r256297 - stable/10/lib/clang X-SVN-Group: defaults MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Oct 2013 20:33:19 -0000 Author: dim Date: Thu Oct 10 20:33:18 2013 New Revision: 256297 URL: http://svnweb.freebsd.org/changeset/base/256297 Log: Disable assertions in llvm and clang for the 10.0 release cycle. Approved by: re (gjb) Modified: stable/10/lib/clang/clang.build.mk Modified: stable/10/lib/clang/clang.build.mk ============================================================================== --- stable/10/lib/clang/clang.build.mk Thu Oct 10 20:06:34 2013 (r256296) +++ stable/10/lib/clang/clang.build.mk Thu Oct 10 20:33:18 2013 (r256297) @@ -6,7 +6,7 @@ CFLAGS+= -I${LLVM_SRCS}/include -I${CLAN -I${LLVM_SRCS}/${SRCDIR} ${INCDIR:C/^/-I${LLVM_SRCS}\//} -I. \ -I${LLVM_SRCS}/../../lib/clang/include \ -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD \ - -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS #-DNDEBUG + -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DNDEBUG .if !defined(EARLY_BUILD) && defined(MK_CLANG_FULL) && ${MK_CLANG_FULL} != "no" CFLAGS+= -DCLANG_ENABLE_ARCMT \