diff options
| author | Richard M. Stallman | 1994-04-23 01:45:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-23 01:45:33 +0000 |
| commit | abf60cc49de723945dd151bde3b6e974d598825d (patch) | |
| tree | 9b8d42e0cc2cb5519b425c002bcada99390fe92a /src | |
| parent | 8fd8d4f994eb3959b16fa1b57b3f72c60f5ab205 (diff) | |
| download | emacs-abf60cc49de723945dd151bde3b6e974d598825d.tar.gz emacs-abf60cc49de723945dd151bde3b6e974d598825d.zip | |
Initial revision
Diffstat (limited to 'src')
| -rw-r--r-- | src/m/mips-siemens.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/m/mips-siemens.h b/src/m/mips-siemens.h new file mode 100644 index 00000000000..a92d78905b1 --- /dev/null +++ b/src/m/mips-siemens.h | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | #include "mips.h" | ||
| 2 | |||
| 3 | |||
| 4 | /* Data type of load average, as read out of kmem. */ | ||
| 5 | |||
| 6 | #undef LOAD_AVE_TYPE | ||
| 7 | #define LOAD_AVE_TYPE double | ||
| 8 | |||
| 9 | /* Convert that into an integer that is 100 for a load average of 1.0 */ | ||
| 10 | |||
| 11 | #undef LOAD_AVE_CVT | ||
| 12 | #define LOAD_AVE_CVT(x) ((int) ((x) * 100.0)) | ||
| 13 | |||
| 14 | /* Don't use the ordinary -g for debugging in cc */ | ||
| 15 | |||
| 16 | #undef C_DEBUG_SWITCH | ||
| 17 | #define C_DEBUG_SWITCH -g | ||
| 18 | |||
| 19 | /* we use all of GNU's memory allocation routines */ | ||
| 20 | #define C_ALLOCA | ||
| 21 | |||
| 22 | /* This system uses a slightly nonstandard variant of elf format. */ | ||
| 23 | #undef UNEXEC | ||
| 24 | #define UNEXEC unexelf.o | ||
| 25 | #define ELF_BSS_SECTION_NAME ".sbss" | ||
| 26 | |||
| 27 | #define BSTRING | ||