]> git.eshelyaron.com Git - emacs.git/commitdiff
Define C_DEBUG_SWITCH for non-gcc.
authorDave Love <fx@gnu.org>
Sat, 12 Feb 2000 17:03:54 +0000 (17:03 +0000)
committerDave Love <fx@gnu.org>
Sat, 12 Feb 2000 17:03:54 +0000 (17:03 +0000)
src/s/aix3-2.h
src/s/osf1.h

index 9866ea9dbdaf7ce199c5cf4b6552b5d4863653e9..85637074760c4e5a3d9764a9c56059c2f767deb8 100644 (file)
@@ -36,9 +36,9 @@
 /* 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 */
+/* See comments about this in aix3-2-5.h.  -- fx */
 #ifndef __GNUC__
-#define C_SWITCH_DEBUG -g
-#define C_SWITCH_OPTIMIZE
+#define C_DEBUG_SWITCH -g -O
 #endif
 
 /* The character-composition stuff is broken in X11R5.
index d0e11fcf3ca59c84a0fe2548a759d89534af6922..2103a8c50e7c1ba056fbc1b15312ae62d2f42617 100644 (file)
@@ -28,3 +28,8 @@
 
 /* Specify the type that the 3rd arg of `accept' points to.  */
 #define SOCKLEN_TYPE int
+
+#ifndef __GNUC__
+/* Optimize, inaccurate debugging.  */
+#define C_DEBUG_SWITCH -g3
+#endif