From owner-svn-src-user@FreeBSD.ORG Fri Feb 8 22:45:48 2013 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2D735905; Fri, 8 Feb 2013 22:45:48 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 1EE64768; Fri, 8 Feb 2013 22:45:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r18MjmX2072026; Fri, 8 Feb 2013 22:45:48 GMT (envelope-from sbruno@svn.freebsd.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r18Mjlj0072025; Fri, 8 Feb 2013 22:45:47 GMT (envelope-from sbruno@svn.freebsd.org) Message-Id: <201302082245.r18Mjlj0072025@svn.freebsd.org> From: Sean Bruno Date: Fri, 8 Feb 2013 22:45:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r246569 - user/sbruno/pxe_http_head/sys/boot/i386/pxe_http X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Feb 2013 22:45:48 -0000 Author: sbruno Date: Fri Feb 8 22:45:47 2013 New Revision: 246569 URL: http://svnweb.freebsd.org/changeset/base/246569 Log: Add workaround for the last of .codeNN directives in CLANG Ripped off of and inspired by dim@freebsd.org commit to cdboot http://svnweb.freebsd.org/base?view=revision&revision=235281 Submitted by: hiren.panchasara@gmail.com Modified: user/sbruno/pxe_http_head/sys/boot/i386/pxe_http/Makefile Modified: user/sbruno/pxe_http_head/sys/boot/i386/pxe_http/Makefile ============================================================================== --- user/sbruno/pxe_http_head/sys/boot/i386/pxe_http/Makefile Fri Feb 8 22:41:48 2013 (r246568) +++ user/sbruno/pxe_http_head/sys/boot/i386/pxe_http/Makefile Fri Feb 8 22:45:47 2013 (r246569) @@ -1,5 +1,7 @@ # pxe_http project # +.include + LIB= pxe_http INTERNALLIB= @@ -11,6 +13,10 @@ SRCS= pxe_isr.S pxe_mem.c pxe_buffer.c p CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../btx/lib \ -I${.CURDIR}/../../../contrib/dev/acpica \ -I${.CURDIR}/../../.. -I. -I$(.CURDIR)/.. -I${.CURDIR}/../libi386/ + +CFLAGS.pxe_isr.S= ${CLANG_NO_IAS} +CFLAGS+= ${CFLAGS.${.IMPSRC:T}} + # the location of libstand CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/