mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Wait until EGCS 1.2 to use more efficient ``thunks'' to implement C++ vtables.
While I have yet to hear of any problems with us using thunks. The EGCS mailing list notes some have problems with it and not using them are a safer default. People wanting to use them, can set the appropiate compiler flag.
This commit is contained in:
parent
4d24621b10
commit
512a10fde7
1 changed files with 4 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: freebsd.h,v 1.7 1999/04/14 00:25:45 obrien Exp $ */
|
||||
/* $Id: freebsd.h,v 1.8 1999/04/22 17:45:01 obrien Exp $ */
|
||||
/* Base configuration file for all FreeBSD targets.
|
||||
Copyright (C) 1999 Free Software Foundation, Inc.
|
||||
|
||||
|
|
@ -89,9 +89,10 @@ Boston, MA 02111-1307, USA. */
|
|||
libraries compiled with the native cc. */
|
||||
#undef NO_DOLLAR_IN_LABEL
|
||||
|
||||
/* Use more efficient ``thunks'' to implement C++ vtables. */
|
||||
/* Wait until EGCS 1.2 to use more efficient ``thunks'' to implement
|
||||
C++ vtables. */
|
||||
#undef DEFAULT_VTABLE_THUNKS
|
||||
#define DEFAULT_VTABLE_THUNKS 1
|
||||
#define DEFAULT_VTABLE_THUNKS 0
|
||||
|
||||
|
||||
/* Miscellaneous parameters. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue