From owner-freebsd-current@FreeBSD.ORG Mon Feb 21 15:07:39 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CFD11065674 for ; Mon, 21 Feb 2011 15:07:39 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from tensor.andric.com (cl-327.ede-01.nl.sixxs.net [IPv6:2001:7b8:2ff:146::2]) by mx1.freebsd.org (Postfix) with ESMTP id 3DD418FC12 for ; Mon, 21 Feb 2011 15:07:39 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7:0:c8b2:9bc2:a26a:95be] (unknown [IPv6:2001:7b8:3a7:0:c8b2:9bc2:a26a:95be]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 488695C59; Mon, 21 Feb 2011 16:07:38 +0100 (CET) Message-ID: <4D627FBE.1070700@FreeBSD.org> Date: Mon, 21 Feb 2011 16:07:42 +0100 From: Dimitry Andric Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.2.15pre) Gecko/20110219 Lanikai/3.1.9pre MIME-Version: 1.0 To: Olivier Smedts References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org Subject: Re: Can't buildworld since Clang update X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Feb 2011 15:07:39 -0000 On 2011-02-21 11:33, Olivier Smedts wrote: > I can't buildworld with Clang since the last update. ... > %cat /etc/src.conf > .if !defined(CC) || ${CC} == "cc" > CC=clang > .endif > .if !defined(CXX) || ${CXX} == "c++" > CXX=clang++ > .endif > # Don't die on warnings > NO_WERROR= > WERROR= Try putting these lines in /etc/make.conf instead. Unfortunately, due to the way src.conf is read, it isn't usable for the few cases we need to disable clang's integrated assembler, using the '-no-integrated-as' option. > /tmp/cc-VUyvc6.s:6:1: warning: ignoring directive for now > .intel_syntax noprefix > ^ In this case, you hit the one and only instance of the '.intel_syntax' directive in the tree; this directive is not yet supported by clang's integrated assembler.