From owner-svn-src-stable-8@FreeBSD.ORG Fri Jul 2 09:17:19 2010 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64B4B1065677; Fri, 2 Jul 2010 09:17:19 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 53BCB8FC27; Fri, 2 Jul 2010 09:17:19 +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 o629HJE7045938; Fri, 2 Jul 2010 09:17:19 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o629HIfX045936; Fri, 2 Jul 2010 09:17:19 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201007020917.o629HIfX045936@svn.freebsd.org> From: Konstantin Belousov Date: Fri, 2 Jul 2010 09:17:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r209641 - stable/8/gnu/lib/csu X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jul 2010 09:17:19 -0000 Author: kib Date: Fri Jul 2 09:17:18 2010 New Revision: 209641 URL: http://svn.freebsd.org/changeset/base/209641 Log: MFC r209294: Add -fno-asynchronous-unwind-tables to disable unwind table generation for crtbegin/crtend. While there, disable omitting the frame pointer. Modified: stable/8/gnu/lib/csu/Makefile Directory Properties: stable/8/gnu/lib/csu/ (props changed) Modified: stable/8/gnu/lib/csu/Makefile ============================================================================== --- stable/8/gnu/lib/csu/Makefile Fri Jul 2 02:20:25 2010 (r209640) +++ stable/8/gnu/lib/csu/Makefile Fri Jul 2 09:17:18 2010 (r209641) @@ -17,7 +17,8 @@ CSTD?= gnu89 CFLAGS+= -DIN_GCC -DHAVE_LD_EH_FRAME_HDR -DDT_CONFIG -D__GLIBC__=3 CFLAGS+= -finhibit-size-directive -fno-inline-functions \ -fno-exceptions -fno-zero-initialized-in-bss \ - -fno-zero-initialized-in-bss -fno-toplevel-reorder + -fno-zero-initialized-in-bss -fno-toplevel-reorder \ + -fno-asynchronous-unwind-tables -fno-omit-frame-pointer CFLAGS+= -I${GCCLIB}/include -I${GCCDIR}/config -I${GCCDIR} -I. \ -I${CCDIR}/cc_tools CRTS_CFLAGS= -DCRTSTUFFS_O -DSHARED ${PICFLAG}