[uClibc]GDB Server patch

acmay at acmay.homeip.net acmay at acmay.homeip.net
Thu Jan 23 02:16:50 UTC 2003


In updating things it looks like the gdbserver.mk got changed 
from how I expected it to work.

This should switch it back to running configure and doing the
make in build/gdbserver rather than doing it in $(GDB_DIR)/gdb/gdbserver
itself. As it is now the (cd $(GDB_WDIR) .... is not correct.

I would like to see the gdb build be done outside of the source tree and
do both a host and target build of gdb.
-------------- next part --------------
--- buildroot.main/make/gdbserver.mk	2003-01-20 12:55:46.000000000 -0800
+++ buildroot.3/make/gdbserver.mk	2003-01-22 15:39:06.000000000 -0800
@@ -1,22 +1,22 @@
 #############################################################
 #
-# gdb
+# gdbserver
 #
 #############################################################
 
-GDB_SITE:=ftp://ftp.gnu.org/gnu/gdb/
-GDB_DIR:=$(BUILD_DIR)/gdb-5.3
-GDB_SOURCE:=gdb-5.3.tar.gz
+#Use GDB_DIR/etc values from gdb.mk
+#Build gdbserver in a dir outside of the main gdb tree
 GDB_WDIR:=$(BUILD_DIR)/gdbserver
 
 
 $(GDB_WDIR)/.configured: $(GDB_DIR)/.unpacked
+	mkdir -p $(GDB_WDIR)
 	(cd $(GDB_WDIR); rm -rf config.cache; \
 		PATH=$(STAGING_DIR)/bin:$$PATH AR=$(TARGET_CROSS)ar \
 		AS=$(TARGET_CROSS)as LD=$(TARGET_CROSS)ld \
 		RANLIB=$(TARGET_CROSS)ranlib NM=$(TARGET_CROSS)nm \
 		CC=$(TARGET_CC) \
-		./configure \
+		$(GDB_DIR)/gdb/gdbserver/configure \
 		--target=$(GNU_TARGET_NAME) \
 		--prefix=/usr \
 		--exec-prefix=/usr \
@@ -36,11 +36,11 @@
 	);
 	touch  $(GDB_WDIR)/.configured
 
-$(GDB_DIR)/gdb/gdbserver/gdbserver: $(GDB_WDIR)/.configured
+$(GDB_WDIR)/gdbserver: $(GDB_WDIR)/.configured
 	$(MAKE) CC=$(TARGET_CC) -C $(GDB_WDIR)
 	$(STRIP) $(GDB_WDIR)/gdbserver
 
-$(TARGET_DIR)/usr/bin/gdbserver: $(GDB_DIR)/gdb/gdbserver/gdbserver
+$(TARGET_DIR)/usr/bin/gdbserver: $(GDB_WDIR)/gdbserver
 	install -c $(GDB_WDIR)/gdbserver $(TARGET_DIR)/usr/bin/gdbserver
 
 gdbserver: $(TARGET_DIR)/usr/bin/gdbserver


More information about the uClibc mailing list