comparison src/s/aix3-2.h @ 6127:df18a19a047d

Use -g with the native compiler.
author Karl Heuer <kwzh@gnu.org>
date Wed, 02 Mar 1994 03:19:12 +0000
parents 2cc554082ffc
children 64fe0cc0138e
comparison
equal deleted inserted replaced
6126:47d2f8f84309 6127:df18a19a047d
19 19
20 /* With this defined, a gcc-compiled Emacs crashed in realloc under AIX 20 /* With this defined, a gcc-compiled Emacs crashed in realloc under AIX
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