diff options
author | dannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-18 03:48:57 +0000 |
---|---|---|
committer | dannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-18 03:48:57 +0000 |
commit | 1cc37be8224bb933d21384fff7a2b57c96d96408 (patch) | |
tree | 448d6ef778e75d0965f10ce2200aab2bd809c490 | |
parent | eda6f731b308526af4ebb992fef5474b22f1a329 (diff) | |
download | gcc-1cc37be8224bb933d21384fff7a2b57c96d96408.tar.gz |
* config/i386/cygming.h (TARGET_OS_CPP_BUILTINS): Define
__GXX_MERGED_TYPEINFO_NAMES to 0.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89196 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/cygming.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e372e745002..a4224e46ef9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-10-18 Danny Smith <dannysmith@users.sourceforge.net> + + * config/i386/cygming.h (TARGET_OS_CPP_BUILTINS): Define + __GXX_MERGED_TYPEINFO_NAMES to 0. + 2004-10-17 Hans-Peter Nilsson <hp@bitrange.com> * cfgrtl.c (rtl_verify_flow_info_1): When checking insns in a bb, diff --git a/gcc/config/i386/cygming.h b/gcc/config/i386/cygming.h index a54e8a9718b..be77abadc6c 100644 --- a/gcc/config/i386/cygming.h +++ b/gcc/config/i386/cygming.h @@ -86,6 +86,9 @@ Boston, MA 02111-1307, USA. */ builtin_define ("_fastcall=__attribute__((__fastcall__))"); \ builtin_define ("_cdecl=__attribute__((__cdecl__))"); \ } \ + /* Even though linkonce works with static libs, this is needed \ + to compare typeinfo symbols across dll boundaries. */ \ + builtin_define ("__GXX_MERGED_TYPEINFO_NAMES=0"); \ MAYBE_UWIN_CPP_BUILTINS (); \ EXTRA_OS_CPP_BUILTINS (); \ } \ |