(CFLAGS, LIBGCC2_CFLAGS): Delete overrides and comment why they were wrong.
authorJim Wilson <wilson@gcc.gnu.org>
Tue, 16 Mar 1993 20:15:00 +0000 (12:15 -0800)
committerJim Wilson <wilson@gcc.gnu.org>
Tue, 16 Mar 1993 20:15:00 +0000 (12:15 -0800)
From-SVN: r3761

gcc/config/m68k/x-apollo68

index 958259ac7e69c1812232c4eb046ee135e67ea985..b7261ebb53e3a2eb6f5c2103950a2b1360aa7741 100644 (file)
@@ -5,13 +5,8 @@
 CC=cc -g -A nansi -A cpu,3000 -A runtype,bsd4.3 -A systype,any -DSHORT_ENUM_BUG
 OLDCC=cc -g -A nansi -A cpu,3000 -A runtype,bsd4.3 -A systype,any -DSHORT_ENUM_BUG
 
-# Makefile.in has debugging turned on:
-#
-#    CFLAGS = -g
-#    LIBGCC2_CFLAGS = -O2 $(GCC_CFLAGS) -g1
-#
-# but that's not supported on the Apollo yet, so we'd better avoid
-# the warnings.
-
-CFLAGS =
-LIBGCC2_CFLAGS = -O2 $(GCC_CFLAGS)
+# This used to redefine CFLAGS and LIBGCC2_CFLAGS to eliminate the unsupported
+# -g flag from both macros.  This gives an undebugable stage1 compiler which
+# is bad, and it also does the wrong thing if we are cross compiling to a
+# target which does support debugging.  There is currently no way to avoid
+# the -g option that doesn't break something else.