This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

libf2c debugging


I am annoyed by the bits in the libf2c makefiles that force -g0.
If you don't want debugging, don't compile with -g.


r~



Mon Oct  6 13:39:15 1997  Richard Henderson  <rth@cygnus.com>

	* Makefile.in (CGFLAGS): Don't force -g0.
	* libF77/Makefile.in, libI77/Makefile.in, libU77/Makefile.in: Likewise.


Index: Makefile.in
===================================================================
RCS file: /cvs/cvsfiles/egcs/gcc/f/runtime/Makefile.in,v
retrieving revision 1.9
diff -u -p -d -r1.9 Makefile.in
--- Makefile.in	1997/10/01 07:43:17	1.9
+++ Makefile.in	1997/10/06 20:40:06
@@ -39,7 +39,7 @@ CFLAGS = @CFLAGS@
 CPPFLAGS = @CPPFLAGS@ @DEFS@
 LDFLAGS = @LDFLAGS@
 LIBS = @LIBS@
-CGFLAGS = -g0
+CGFLAGS = #-g0
 
 GCC_FOR_TARGET = @CC@
 CC = $(GCC_FOR_TARGET)
Index: libF77/Makefile.in
===================================================================
RCS file: /cvs/cvsfiles/egcs/gcc/f/runtime/libF77/Makefile.in,v
retrieving revision 1.1.1.1
diff -u -p -d -r1.1.1.1 Makefile.in
--- Makefile.in	1997/08/12 07:47:49	1.1.1.1
+++ Makefile.in	1997/10/06 20:40:08
@@ -35,7 +35,7 @@ CC = $(GCC_FOR_TARGET)
 CFLAGS = @CFLAGS@ $(GCC_FLAGS)
 CPPFLAGS = @CPPFLAGS@
 DEFS = @DEFS@
-CGFLAGS = -g0
+CGFLAGS = #-g0
 # f2c.h should already be installed in xgcc's include directory but add that
 # to -I anyhow in case not using xgcc.
 ALL_CFLAGS = -I. -I$(srcdir) -I../../../include $(CPPFLAGS) $(DEFS) $(CFLAGS)
Index: libI77/Makefile.in
===================================================================
RCS file: /cvs/cvsfiles/egcs/gcc/f/runtime/libI77/Makefile.in,v
retrieving revision 1.1.1.1
diff -u -p -d -r1.1.1.1 Makefile.in
--- Makefile.in	1997/08/12 07:47:52	1.1.1.1
+++ Makefile.in	1997/10/06 20:40:10
@@ -35,7 +35,7 @@ CC = $(GCC_FOR_TARGET)
 CFLAGS = @CFLAGS@ $(GCC_FLAGS)
 CPPFLAGS = @CPPFLAGS@
 DEFS = @DEFS@
-CGFLAGS = -g0
+CGFLAGS = #-g0
 # f2c.h should already be installed in xgcc's include directory but add that
 # to -I anyhow in case not using xgcc.
 ALL_CFLAGS = -I. -I$(srcdir) -I../../../include $(CPPFLAGS) $(DEFS) $(CFLAGS)
Index: libU77/Makefile.in
===================================================================
RCS file: /cvs/cvsfiles/egcs/gcc/f/runtime/libU77/Makefile.in,v
retrieving revision 1.2
diff -u -p -d -r1.2 Makefile.in
--- Makefile.in	1997/10/01 07:43:18	1.2
+++ Makefile.in	1997/10/06 20:40:11
@@ -32,7 +32,7 @@ CC = $(GCC_FOR_TARGET)
 CFLAGS = @CFLAGS@ $(GCC_FLAGS)
 CPPFLAGS = @CPPFLAGS@
 DEFS = @DEFS@
-CGFLAGS = -g0
+CGFLAGS = #-g0
 # f2c.h should already be installed in xgcc's include directory but add that
 # to -I anyhow in case not using xgcc.  fio.h is in libI77.  We need config.h
 # from `.'.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]