mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
133 lines
4.2 KiB
C
133 lines
4.2 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.1 (the "License"); you may not use this file except in
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
/*
|
|
|
|
This file overrides all option settings in the IDE. It is an attempt to allow all builds
|
|
to have the same options.
|
|
|
|
Note: We can't use ConditionalMacros.h in this file because it will conflict with
|
|
the PowerPlant precompiled headers.
|
|
|
|
*/
|
|
|
|
/* warning pragmas */
|
|
#pragma warn_hidevirtual on
|
|
#pragma warn_emptydecl on
|
|
#pragma warn_unusedvar on
|
|
#pragma warn_extracomma on
|
|
#pragma warn_illpragma on
|
|
#pragma warn_possunwant on
|
|
#pragma warn_unusedarg off /* turned off to reduce warnings */
|
|
|
|
#pragma check_header_flags on
|
|
|
|
/* Language features that must be the same across libraries... */
|
|
#pragma enumsalwaysint on
|
|
#pragma unsigned_char off
|
|
#pragma exceptions on
|
|
#pragma bool on
|
|
#pragma wchar_type on
|
|
#pragma RTTI on
|
|
|
|
|
|
/* Save as much space as possible with strings... */
|
|
#pragma pool_strings on
|
|
#pragma dont_reuse_strings off
|
|
|
|
#pragma options align=native
|
|
#pragma sym on /* Takes no memory. OK in non-debug. */
|
|
|
|
|
|
|
|
#ifdef powerc /* ...generating PowerPC */
|
|
#pragma toc_data on
|
|
#pragma fp_contract on
|
|
#pragma readonly_strings on
|
|
|
|
#ifdef DEBUG
|
|
#pragma profile off /* Turn this on to profile the application. */
|
|
/* Look for more details about profiling in nsMacMessagePump.cpp. */
|
|
#pragma traceback on
|
|
#pragma global_optimizer off
|
|
#pragma scheduling off
|
|
#pragma peephole off
|
|
#pragma optimize_for_size off
|
|
#else
|
|
|
|
#if TARGET_CARBON
|
|
#pragma traceback on /* should always be ON for Carbon builds */
|
|
#else
|
|
#pragma traceback on /* leave on until the final release, so MacsBug logs are interpretable */
|
|
#endif
|
|
|
|
#pragma global_optimizer on
|
|
#pragma optimization_level 4
|
|
#pragma scheduling 603
|
|
#pragma peephole on
|
|
#pragma optimize_for_size on
|
|
|
|
#pragma opt_strength_reduction on
|
|
#pragma opt_propagation on
|
|
#pragma opt_loop_invariants on
|
|
#pragma opt_lifetimes on
|
|
#pragma opt_dead_code on
|
|
#pragma opt_dead_assignments on
|
|
#pragma opt_common_subs on
|
|
#endif
|
|
|
|
#else /* ...generating 68k */
|
|
#pragma code68020 on
|
|
#pragma code68881 off
|
|
|
|
/* Far everything... */
|
|
#pragma far_code
|
|
#pragma far_data on
|
|
#pragma far_strings on
|
|
#pragma far_vtables on
|
|
|
|
#pragma fourbyteints on /* 4-byte ints */
|
|
#pragma IEEEdoubles on /* 8-byte doubles (as required by Java and NSPR) */
|
|
|
|
#ifdef DEBUG
|
|
#pragma macsbug on
|
|
#pragma oldstyle_symbols off
|
|
#else
|
|
#pragma macsbug off
|
|
#endif
|
|
#endif
|