]> git.eshelyaron.com Git - emacs.git/commitdiff
Use -g with the native compiler.
authorKarl Heuer <kwzh@gnu.org>
Wed, 2 Mar 1994 03:19:12 +0000 (03:19 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 2 Mar 1994 03:19:12 +0000 (03:19 +0000)
src/s/aix3-2.h

index eb0fa5ddc85d9a1967c05db4e720d988156991a4..46b0ed560ededb493268945de02b2100c18af5b4 100644 (file)
    3.2, and a cc-compiled Emacs works with this undefined.
    --karl@cs.umb.edu.  */
 #undef SYSTEM_MALLOC
+
+/* 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__
+#define C_SWITCH_DEBUG -g
+#define C_SWITCH_OPTIMIZE
+#endif