blob: 00cbadaba6d50b76cde79a177524b6c4c8a32586 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* s- file for building Emacs on AIX 3.2.5. */
#include "aix3-2.h"
/* For AIX, it turns out compiling emacs under AIX 3.2.4 REQUIRES "cc -g"
because "cc -O" crashes. Under AIX 3.2.5, "cc -O" is required because
"cc -g" crashes. Go figure. --floppy@merlin.mit.edu */
#ifndef __GNUC__
#undef C_SWITCH_DEBUG
#undef C_SWITCH_OPTIMIZE
#define C_SWITCH_DEBUG
#define C_SWITCH_OPTIMIZE -O
#endif
|