gecko-dev/build/mac/IDE_Options.h

106 строки
3.0 KiB
C
Исходник Обычный вид История

1998-03-28 05:44:41 +03:00
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
/*
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 */
1998-05-28 23:36:37 +04:00
#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 */
1998-03-28 05:44:41 +03:00
1998-05-28 23:36:37 +04:00
#pragma check_header_flags on
1998-03-28 05:44:41 +03:00
/* Language features that must be the same across libraries... */
1998-05-28 23:36:37 +04:00
#pragma enumsalwaysint on
#pragma unsigned_char off
#pragma exceptions on
#pragma bool on
1999-03-03 22:48:57 +03:00
#pragma RTTI on
1998-03-28 05:44:41 +03:00
/* Save as much space as possible with strings... */
#pragma pool_strings on
1998-05-28 23:36:37 +04:00
#pragma dont_reuse_strings off
1998-03-28 05:44:41 +03:00
#pragma options align=native
1998-05-28 23:36:37 +04:00
#pragma sym on /* Takes no memory. OK in non-debug. */
1998-03-28 05:44:41 +03:00
#ifdef powerc /* ...generating PowerPC */
1998-05-28 23:36:37 +04:00
#pragma toc_data on
#pragma fp_contract on
#pragma readonly_strings on
1998-03-28 05:44:41 +03:00
#ifdef DEBUG
1999-05-12 11:11:51 +04:00
#pragma profile off /* Turn this on to profile the application. */
/* Look for more details about profiling in nsMacMessagePump.cpp. */
1998-05-28 23:36:37 +04:00
#pragma traceback on
#pragma global_optimizer off
#pragma scheduling off
#pragma peephole off
#pragma optimize_for_size off
1998-03-28 05:44:41 +03:00
#else
#pragma traceback on /* leave on until the final release, so MacsBug logs are interpretable */
1998-05-28 23:36:37 +04:00
#pragma global_optimizer on
#pragma optimization_level 4
#pragma scheduling 603
1998-05-28 23:36:37 +04:00
#pragma peephole on
#pragma optimize_for_size on
1999-03-03 22:48:57 +03:00
#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
1998-03-28 05:44:41 +03:00
#endif
#else /* ...generating 68k */
1998-05-28 23:36:37 +04:00
#pragma code68020 on
#pragma code68881 off
1998-03-28 05:44:41 +03:00
/* Far everything... */
#pragma far_code
1998-05-28 23:36:37 +04:00
#pragma far_data on
#pragma far_strings on
#pragma far_vtables on
1998-03-28 05:44:41 +03:00
1998-05-28 23:36:37 +04:00
#pragma fourbyteints on /* 4-byte ints */
#pragma IEEEdoubles on /* 8-byte doubles (as required by Java and NSPR) */
1998-03-28 05:44:41 +03:00
#ifdef DEBUG
1998-05-28 23:36:37 +04:00
#pragma macsbug on
1998-03-28 05:44:41 +03:00
#pragma oldstyle_symbols off
#else
1998-05-28 23:36:37 +04:00
#pragma macsbug off
1998-03-28 05:44:41 +03:00
#endif
#endif