From owner-svn-src-head@FreeBSD.ORG Sat Aug 21 15:01:59 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6988B10656A5; Sat, 21 Aug 2010 15:01:59 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5A90A8FC19; Sat, 21 Aug 2010 15:01:59 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o7LF1xJY072985; Sat, 21 Aug 2010 15:01:59 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o7LF1x7c072983; Sat, 21 Aug 2010 15:01:59 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <201008211501.o7LF1x7c072983@svn.freebsd.org> From: Rui Paulo Date: Sat, 21 Aug 2010 15:01:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r211571 - head/sys/boot/i386/boot2 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Aug 2010 15:01:59 -0000 Author: rpaulo Date: Sat Aug 21 15:01:59 2010 New Revision: 211571 URL: http://svn.freebsd.org/changeset/base/211571 Log: Make sure the boot2 stage is compiled with gcc, as clang has no problems compiling it, but it just gets too big at the moment, even with -Os. This is not applicable to gptboot, though. Submitted by: Dimitry Andric Modified: head/sys/boot/i386/boot2/Makefile Modified: head/sys/boot/i386/boot2/Makefile ============================================================================== --- head/sys/boot/i386/boot2/Makefile Sat Aug 21 14:59:37 2010 (r211570) +++ head/sys/boot/i386/boot2/Makefile Sat Aug 21 15:01:59 2010 (r211571) @@ -1,5 +1,10 @@ # $FreeBSD$ +.include + +# XXX: clang can compile the boot code just fine, but boot2 gets too big +CC:=${CC:C/^cc|^clang/gcc/} + FILES= boot boot1 boot2 NM?= nm