diff options
| author | Richard M. Stallman | 1994-08-24 19:40:30 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-08-24 19:40:30 +0000 |
| commit | 0d55a56084d723c13edb7b3deb4a1b4fe1aca193 (patch) | |
| tree | 536965664e04fe5da8bd8fb5b2cddcda87cbf9b6 /src | |
| parent | c12a7cbdbc014fcfc0c0885a4d535987242da071 (diff) | |
| download | emacs-0d55a56084d723c13edb7b3deb4a1b4fe1aca193.tar.gz emacs-0d55a56084d723c13edb7b3deb4a1b4fe1aca193.zip | |
[__GNUC__] (LD_SWITCH_SYSTEM): Defined.
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/irix5-0.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/s/irix5-0.h b/src/s/irix5-0.h index d2060f45bd7..10f2cfff688 100644 --- a/src/s/irix5-0.h +++ b/src/s/irix5-0.h | |||
| @@ -95,3 +95,10 @@ char *_getpty(); | |||
| 95 | 95 | ||
| 96 | /* Tell process_send_signal to use VSUSP instead of VSWTCH. */ | 96 | /* Tell process_send_signal to use VSUSP instead of VSWTCH. */ |
| 97 | #define PREFER_VSUSP | 97 | #define PREFER_VSUSP |
| 98 | |||
| 99 | /* Because unexelfsgi.c cannot handle a ".sbss" section yet, we must | ||
| 100 | tell the linker to avoid making one. SGI's cc does this by | ||
| 101 | default, but GCC (at least 2.5.8 and 2.6.0) doesn't. */ | ||
| 102 | #ifdef __GNUC__ | ||
| 103 | #define LD_SWITCH_SYSTEM -G 0 | ||
| 104 | #endif | ||