* basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95.
This commit is contained in:
@ -146,7 +146,10 @@ typedef unsigned long PROPID;
|
||||
#ifndef GUID_SECTION
|
||||
#define GUID_SECTION ".text"
|
||||
#endif
|
||||
#ifdef __GNUC__
|
||||
/* Explicit naming of .text section for readonly data is only
|
||||
needed for older GGC (pre-2.95).
|
||||
More recent (3.4) GCC puts readonly data in .rdata. */
|
||||
#if defined (__GNUC__) && (__GNUC__ <= 2 && __GNUC_MINOR__ < 95)
|
||||
#define GUID_SECT __attribute__ ((section (GUID_SECTION)))
|
||||
#else
|
||||
#define GUID_SECT
|
||||
|
Reference in New Issue
Block a user