diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-15 09:41:03 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-15 09:41:03 +0000 |
commit | a88a16700e2c421ff202571ae5e972627801c965 (patch) | |
tree | e8da62bda8eca938991b56e8c3fec9e0247b64ed /make/gdb.mk | |
parent | 78431965205eb0f1fe8a0e240dcc2c20940fb1dd (diff) | |
download | buildroot-novena-a88a16700e2c421ff202571ae5e972627801c965.tar.gz buildroot-novena-a88a16700e2c421ff202571ae5e972627801c965.zip |
Some updates from Andrew May adding gdbserver and adjusting gdb
in the hope of better cross-compiling support
Diffstat (limited to 'make/gdb.mk')
-rw-r--r-- | make/gdb.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/make/gdb.mk b/make/gdb.mk index 0226f3501..bc8a4b757 100644 --- a/make/gdb.mk +++ b/make/gdb.mk @@ -20,9 +20,11 @@ $(GDB_DIR)/.configured: $(GDB_DIR)/.unpacked AR=$(TARGET_CROSS)ar NM=$(TARGET_CROSS)nm \ LD=$(TARGET_CROSS)ld AS=$(TARGET_CROSS)as \ ./configure --prefix=/usr \ + --target=$(GNU_TARGET_NAME) \ --includedir=$(STAGING_DIR)/include \ --disable-nls --without-uiout --disable-gdbmi \ --disable-tui --disable-gdbtk --without-x \ + --disable-sim --enable-gdbserver \ --without-included-gettext); touch $(GDB_DIR)/.configured |