Re: [ptxdist] [PATCH] [gdb] Add patch for gdb-6.8

2010-01-19 Thread Marc Kleine-Budde
Alexander Stein wrote:
 Signed-off-by: Alexander Stein alexander.st...@systec-electronic.com

applied, tnx

Marc

-- 
Pengutronix e.K.  | Marc Kleine-Budde   |
Industrial Linux Solutions| Phone: +49-231-2826-924 |
Vertretung West/Dortmund  | Fax:   +49-5121-206917- |
Amtsgericht Hildesheim, HRA 2686  | http://www.pengutronix.de   |



signature.asc
Description: OpenPGP digital signature
--
ptxdist mailing list
ptxdist@pengutronix.de


[ptxdist] [PATCH] [gdb] Add patch for gdb-6.8

2010-01-18 Thread Alexander Stein
Signed-off-by: Alexander Stein alexander.st...@systec-electronic.com
---
 patches/gdb-6.8/gdb-6.8-fix-compile-karmic.patch |   27 ++
 patches/gdb-6.8/series   |1 +
 2 files changed, 28 insertions(+), 0 deletions(-)
 create mode 100644 patches/gdb-6.8/gdb-6.8-fix-compile-karmic.patch

diff --git a/patches/gdb-6.8/gdb-6.8-fix-compile-karmic.patch 
b/patches/gdb-6.8/gdb-6.8-fix-compile-karmic.patch
new file mode 100644
index 000..1f4353f
--- /dev/null
+++ b/patches/gdb-6.8/gdb-6.8-fix-compile-karmic.patch
@@ -0,0 +1,27 @@
+From d7931d9affb51de54069b75ae0ae9648ffdd64fc Mon Sep 17 00:00:00 2001
+From: Holger Hans Peter Freyther ze...@selfish.org
+Date: Sun, 2 Aug 2009 04:09:03 +0200
+Subject: [PATCH] gdb: Add a patch to fix compilation of gdb 6.8
+
+gcc warns about the subscript_array being uninitialized,
+just memset this area... luckily I can not break much as
+this is for fortran code.
+
+Signed-off-by: Alexander Stein alexander.st...@systec-electronic.com
+
+Index: gdb-6.8/gdb/eval.c
+===
+--- gdb-6.8.orig/gdb/eval.c2009-08-02 03:25:20.0 +0200
 gdb-6.8/gdb/eval.c 2009-08-02 03:53:39.0 +0200
+@@ -1656,6 +1656,8 @@
+   if (nargs != ndimensions)
+ error (_(Wrong number of subscripts));
+ 
++memset(subscript_array, 0, sizeof(subscript_array));
++
+   /* Now that we know we have a legal array subscript expression 
+  let us actually find out where this element exists in the array. */
+ 
+-- 
+1.6.1
+
diff --git a/patches/gdb-6.8/series b/patches/gdb-6.8/series
index 6382ea6..32f89dd 100644
--- a/patches/gdb-6.8/series
+++ b/patches/gdb-6.8/series
@@ -1,2 +1,3 @@
 Makefile_in_cppflags.diff -p0
 m68k-linux-nat-get_regcache_arch.patch
+gdb-6.8-fix-compile-karmic.patch
-- 
1.6.4.4


--
ptxdist mailing list
ptxdist@pengutronix.de