diff options
| author | Dave Love | 2000-07-27 14:47:17 +0000 |
|---|---|---|
| committer | Dave Love | 2000-07-27 14:47:17 +0000 |
| commit | 2b565005e65bcef657924af64d0ee2673276b484 (patch) | |
| tree | 1df656f423379f25d397187f4249124fa677765c /src/s | |
| parent | c0261b5e260eeaddf29a4178dc6e1adb65d15215 (diff) | |
| download | emacs-2b565005e65bcef657924af64d0ee2673276b484.tar.gz emacs-2b565005e65bcef657924af64d0ee2673276b484.zip | |
(IRIX_FORCE_32_BITS, LD_SWITCH_SYSTEM): Don't
define.
[_MIPS_SZLONG == 64]: Set up for 64-bit mode -- not currently
working.
Diffstat (limited to 'src/s')
| -rw-r--r-- | src/s/irix6-5.h | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/src/s/irix6-5.h b/src/s/irix6-5.h index 6a533435fef..8918862950e 100644 --- a/src/s/irix6-5.h +++ b/src/s/irix6-5.h | |||
| @@ -2,17 +2,14 @@ | |||
| 2 | #define IRIX6_5 | 2 | #define IRIX6_5 |
| 3 | #include "irix5-0.h" | 3 | #include "irix5-0.h" |
| 4 | 4 | ||
| 5 | /* Irix 6 tries to do 64 bits, but doesn't do it fully, | 5 | #if _MIPS_SZLONG == 64 /* -mabi=64 (gcc) or -64 (MIPSpro) */ |
| 6 | so inhibit that. */ | 6 | #error "The 64 bit ABI doesn't work yet. Please fix it and send the changes!" |
| 7 | #define IRIX_FORCE_32_BITS | 7 | #define _LP64 |
| 8 | 8 | #define EMACS_INT long | |
| 9 | #ifndef __GNUC__ | 9 | #define BITS_PER_LONG 64 |
| 10 | #ifndef IRIX6_5 | 10 | #define BITS_PER_EMACS_INT BITS_PER_LONG |
| 11 | #define LD_SWITCH_SYSTEM -32 | 11 | #define EMACS_UINT unsigned long |
| 12 | #else | 12 | #endif /* _MIPS_SZLONG */ |
| 13 | #define LD_SWITCH_SYSTEM -n32 | ||
| 14 | #endif | ||
| 15 | #endif | ||
| 16 | 13 | ||
| 17 | /* This macro definition, which we inherited from irix5-0.h, | 14 | /* This macro definition, which we inherited from irix5-0.h, |
| 18 | is needed in configure on Irix 5, but gets in the way there | 15 | is needed in configure on Irix 5, but gets in the way there |
| @@ -39,6 +36,7 @@ | |||
| 39 | 36 | ||
| 40 | /* It turns out that the #define in irix5-0.h is needed in Irix 6 as well. */ | 37 | /* It turns out that the #define in irix5-0.h is needed in Irix 6 as well. */ |
| 41 | #if 0 | 38 | #if 0 |
| 42 | /* Canced the #define that is in irix5-0.h. */ | 39 | /* Cancel the #define that is in irix5-0.h. */ |
| 43 | #undef ospeed | 40 | #undef ospeed |
| 44 | #endif | 41 | #endif |
| 42 | |||