From patchwork Mon Feb 7 21:05:22 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Stump X-Patchwork-Id: 82147 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 7FD6FB70E3 for ; Tue, 8 Feb 2011 08:05:32 +1100 (EST) Received: (qmail 5370 invoked by alias); 7 Feb 2011 21:05:31 -0000 Received: (qmail 5361 invoked by uid 22791); 7 Feb 2011 21:05:30 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, RFC_ABUSE_POST, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from qmta06.westchester.pa.mail.comcast.net (HELO qmta06.westchester.pa.mail.comcast.net) (76.96.62.56) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 07 Feb 2011 21:05:26 +0000 Received: from omta08.westchester.pa.mail.comcast.net ([76.96.62.12]) by qmta06.westchester.pa.mail.comcast.net with comcast id 58ys1g0060Fqzac5695RNC; Mon, 07 Feb 2011 21:05:25 +0000 Received: from up.mrs.kithrup.com ([24.4.193.8]) by omta08.westchester.pa.mail.comcast.net with comcast id 595P1g00G0BKwT43U95QYs; Mon, 07 Feb 2011 21:05:25 +0000 From: Mike Stump Subject: update default OS for debugging on darwin Date: Mon, 7 Feb 2011 13:05:22 -0800 Message-Id: To: GCC Patches Mime-Version: 1.0 (Apple Message framework v1082) X-IsSubscribed: yes 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 Not a big issue, but when debugging, I want a default that more closely matches my system, without having to give extra arguments when running cc1. 2011-02-07 Mike Stump * config/darwin.opt (mmacosx-version-min): Update default OS version. Index: config/darwin.opt =================================================================== --- config/darwin.opt (revision 169897) +++ config/darwin.opt (revision 169898) @@ -217,12 +217,13 @@ Target Report Var(darwin_fix_and_continue) Generate code suitable for fast turn around debugging -; The Init here is for the convenience of GCC developers, so that -; cc1 and cc1plus don't crash if no -mmacosx-version-min is passed. The -; driver will always pass a -mmacosx-version-min, so in normal use -; the Init is never used. +; The Init here is for the convenience of GCC developers, so that cc1 +; and cc1plus don't crash if no -mmacosx-version-min is passed. The +; driver will always pass a -mmacosx-version-min, so in normal use the +; Init is never used. Useful for setting the OS on which people +; ususally debug. mmacosx-version-min= -Target Joined Report Var(darwin_macosx_version_min) Init("10.1") +Target Joined Report Var(darwin_macosx_version_min) Init("10.6") The earliest MacOS X version on which this program will run mone-byte-bool