Change default compiler switches to enable debugging information and
authorChris Hanson <org/chris-hanson/cph>
Tue, 28 Jun 1994 19:34:10 +0000 (19:34 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 28 Jun 1994 19:34:10 +0000 (19:34 +0000)
to set COMPILE_STEPPER.  Rearrange definitions to put complicated
HP-UX graphics options last.

v7/src/microcode/unxutl/cf-dist.h

index 0037a4896a36500c9cb919086c6d794710d17e14..bd74e877ce38cac0f4c626a12e61d858e7840611 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: cf-dist.h,v 1.21 1994/06/28 19:30:49 cph Exp $
+$Id: cf-dist.h,v 1.22 1994/06/28 19:34:10 cph Exp $
 
 Copyright (c) 1989-94 Massachusetts Institute of Technology
 
@@ -79,6 +79,22 @@ MIT in each case. */
 #define PROC_TYPE PROC_TYPE_UNKNOWN
 #endif
 
+/* The following two switches are mutually exclusive for most C compilers.
+   An exception is the GNU C compiler. */
+
+/* If defined, this prevents the C compiler from running its optimizer. */
+#define SUPPRESS_C_OPTIMIZER
+
+/* If defined, this prevents the C compiler from
+   generating debugging information. */
+/* #define SUPPRESS_C_DEBUGGING */
+
+/* Some compilation options:
+   -DDISABLE_HISTORY           turns off history recording mechanism
+   -DCOMPILE_STEPPER           turns on support for the stepper    
+ */
+#define C_SWITCH_FEATURES -DCOMPILE_STEPPER
+
 /* Define HAVE_X_WINDOWS if you want to use the X window system.  */
 #define HAVE_X_WINDOWS
 
@@ -110,20 +126,3 @@ MIT in each case. */
 #endif /* __hp9000s300 */
 #endif /* __hp9000s700 */
 #endif /* HAVE_STARBASE_GRAPHICS */
-
-/* Some compilation options:
-   -DDISABLE_HISTORY           turns off history recording mechanism
-   -DCOMPILE_STEPPER           turns on support for the stepper    
- */
-
-#define C_SWITCH_FEATURES
-
-/* The following two switches are mutually exclusive for most C compilers.
-   An exception is the GNU C compiler. */
-
-/* If defined, this prevents the C compiler from running its optimizer. */
-/* #define SUPPRESS_C_OPTIMIZER */
-
-/* If defined, this prevents the C compiler from
-   generating debugging information. */
-#define SUPPRESS_C_DEBUGGING