diff options
| author | Karl Heuer | 1994-03-02 03:19:12 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-03-02 03:19:12 +0000 |
| commit | f2ac12d570e415ac054846cb4b9e74c6acc7b00d (patch) | |
| tree | 7c70bca95a29101b640d734521658241a44d77f6 /src | |
| parent | 47c64747da0c7f135422425ddd5e10c5852fff7c (diff) | |
| download | emacs-f2ac12d570e415ac054846cb4b9e74c6acc7b00d.tar.gz emacs-f2ac12d570e415ac054846cb4b9e74c6acc7b00d.zip | |
Use -g with the native compiler.
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/aix3-2.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/s/aix3-2.h b/src/s/aix3-2.h index eb0fa5ddc85..46b0ed560ed 100644 --- a/src/s/aix3-2.h +++ b/src/s/aix3-2.h | |||
| @@ -21,3 +21,11 @@ | |||
| 21 | 3.2, and a cc-compiled Emacs works with this undefined. | 21 | 3.2, and a cc-compiled Emacs works with this undefined. |
| 22 | --karl@cs.umb.edu. */ | 22 | --karl@cs.umb.edu. */ |
| 23 | #undef SYSTEM_MALLOC | 23 | #undef SYSTEM_MALLOC |
| 24 | |||
| 25 | /* For AIX, it turns out compiling emacs under AIX 3.2.4 REQUIRES "cc -g" | ||
| 26 | because "cc -O" crashes. Under AIX 3.2.5, "cc -O" is required because | ||
| 27 | "cc -g" crashes. Go figure. --floppy@merlin.mit.edu */ | ||
| 28 | #ifndef __GNUC__ | ||
| 29 | #define C_SWITCH_DEBUG -g | ||
| 30 | #define C_SWITCH_OPTIMIZE | ||
| 31 | #endif | ||