(DATA_SEG_BITS): Also define for GCC 3.
This commit is contained in:
parent
c906343388
commit
881aa09cb5
1 changed files with 5 additions and 2 deletions
|
@ -98,7 +98,10 @@ Boston, MA 02111-1307, USA. */
|
|||
#define LD_SWITCH_MACHINE -Xlinker -m -Xlinker elf32ppc
|
||||
#endif
|
||||
|
||||
/* GCC 2.95 on GNU/Linux PPC changed the load address to 0x10000000. */
|
||||
#if defined(__linux__) && __GNUC__ == 2 && __GNUC_MINOR__ >= 95
|
||||
/* GCC 2.95 and newer on GNU/Linux PPC changed the load address to
|
||||
0x10000000. */
|
||||
#if defined __linux__
|
||||
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
|
||||
#define DATA_SEG_BITS 0x10000000
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue