From patchwork Thu May 19 17:46:01 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Pluzhnikov X-Patchwork-Id: 96440 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 4B5F1B6F80 for ; Fri, 20 May 2011 03:46:33 +1000 (EST) Received: (qmail 4190 invoked by alias); 19 May 2011 17:46:31 -0000 Received: (qmail 4180 invoked by uid 22791); 19 May 2011 17:46:31 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, SPF_HELO_PASS, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (74.125.121.67) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 19 May 2011 17:46:15 +0000 Received: from wpaz21.hot.corp.google.com (wpaz21.hot.corp.google.com [172.24.198.85]) by smtp-out.google.com with ESMTP id p4JHkCU1026951; Thu, 19 May 2011 10:46:13 -0700 Received: from elbrus2.mtv.corp.google.com (elbrus2.mtv.corp.google.com [172.18.116.96]) by wpaz21.hot.corp.google.com with ESMTP id p4JHk6sx031010; Thu, 19 May 2011 10:46:11 -0700 Received: by elbrus2.mtv.corp.google.com (Postfix, from userid 74925) id 259AE1909EC; Thu, 19 May 2011 10:46:01 -0700 (PDT) To: reply@codereview.appspotmail.com, aaw@google.com, gcc-patches@gcc.gnu.org Subject: Build more of libstdc++ exception throwing code with frame pointers (issue4539068) Message-Id: <20110519174601.259AE1909EC@elbrus2.mtv.corp.google.com> Date: Thu, 19 May 2011 10:46:01 -0700 (PDT) From: ppluzhnikov@google.com (Paul Pluzhnikov) X-System-Of-Record: true Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org 2011-05-19 Paul Pluzhnikov * libstdc++-v3/libsupc++/Makefile.am: Add -fno-omit-frame-pointer to vterminate. * libstdc++-v3/libsupc++/Makefile.in: Regenerate. --- This patch is available for review at http://codereview.appspot.com/4539068 Index: libstdc++-v3/libsupc++/Makefile.in =================================================================== --- libstdc++-v3/libsupc++/Makefile.in (revision 173915) +++ libstdc++-v3/libsupc++/Makefile.in (working copy) @@ -481,6 +481,7 @@ # Google-specific pessimization eh_terminate.lo_no_omit_frame_pointer = -fno-omit-frame-pointer eh_throw.lo_no_omit_frame_pointer = -fno-omit-frame-pointer +vterminate.lo_no_omit_frame_pointer = -fno-omit-frame-pointer all: all-am .SUFFIXES: Index: libstdc++-v3/libsupc++/Makefile.am =================================================================== --- libstdc++-v3/libsupc++/Makefile.am (revision 173915) +++ libstdc++-v3/libsupc++/Makefile.am (working copy) @@ -216,3 +216,4 @@ # Google-specific pessimization eh_terminate.lo_no_omit_frame_pointer = -fno-omit-frame-pointer eh_throw.lo_no_omit_frame_pointer = -fno-omit-frame-pointer +vterminate.lo_no_omit_frame_pointer = -fno-omit-frame-pointer