OSDN Git Service

No point in including debug info for ldso. It isn't helpful to do so
authorEric Andersen <andersen@codepoet.org>
Sat, 14 Feb 2004 12:48:47 +0000 (12:48 -0000)
committerEric Andersen <andersen@codepoet.org>
Sat, 14 Feb 2004 12:48:47 +0000 (12:48 -0000)
since gdb can't do anything for us.

ldso/ldso/Makefile

index 8dcfb4a..db493c3 100644 (file)
@@ -30,11 +30,10 @@ ifeq ($(SUPPORT_LD_DEBUG),y)
 XXFLAGS=$(XWARNINGS) $(XARCH_CFLAGS) $(CPU_CFLAGS) $(PICFLAG) \
        -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \
        -fno-builtin -nostdinc -I$(TOPDIR)ldso/include -I. -I$(TOPDIR)include
-ifeq ($(TARGET_ARCH),powerpc)
-XXFLAGS+=-Os -g3
-else
-XXFLAGS+=-O0 -g3
-endif
+# Not really much point in including debugging info, since gdb
+# can't really debug ldso, since gdb requires help from ldso to
+# debug things....
+XXFLAGS+=-Os #-g3
 endif
 
 # BEWARE!!! At least mips* will die if -O0 is used!!!