diff options
author | Tom Tromey <tromey@redhat.com> | 2010-11-16 17:38:40 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-11-16 17:38:40 +0000 |
commit | 97924a976b7d6e1669cf22c5fdf292a53bae6bd0 (patch) | |
tree | e3cd90c6b9866ad7a0fe1084b255afe4890d9259 | |
parent | 9816fde3d4a9966bea5b70950f3ac76f7382d525 (diff) | |
download | gdb-97924a976b7d6e1669cf22c5fdf292a53bae6bd0.zip gdb-97924a976b7d6e1669cf22c5fdf292a53bae6bd0.tar.gz gdb-97924a976b7d6e1669cf22c5fdf292a53bae6bd0.tar.bz2 |
* gdb-add-index.sh: Really remove.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rwxr-xr-x | gdb/gdb-add-index.sh | 29 |
2 files changed, 4 insertions, 29 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c1ce36d..5c1eb03 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2010-11-16 Tom Tromey <tromey@redhat.com> + + * gdb-add-index.sh: Really remove. + 2010-11-16 Jan Kratochvil <jan.kratochvil@redhat.com> Code cleanup. diff --git a/gdb/gdb-add-index.sh b/gdb/gdb-add-index.sh deleted file mode 100755 index 940e8e7..0000000 --- a/gdb/gdb-add-index.sh +++ /dev/null @@ -1,29 +0,0 @@ -#! /bin/sh - -# Add a .gdb_index section to a file. - -# Copyright (C) 2010 Free Software Foundation, Inc. -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. - -file="$1" -dir="${file%/*}" - -gdb --batch-silent -ex "file $file" -ex "save gdb-index $dir" - -if test -f "${file}.gdb-index"; then - objcopy --add-section .gdb_index="${file}.gdb-index" --set-section-flags .gdb_index=readonly "$file" "$file" - rm -f "${file}.gdb-index" -fi - -exit 0 |