|
|
5860f5 |
--- rpm-4.10.0/macros.in 2012-06-11 11:16:21.216952339 +0200
|
|
|
5860f5 |
+++ rpm-4.10.0/macros.in.minidebug 2012-06-11 11:16:23.686912455 +0200
|
|
|
5860f5 |
@@ -175,7 +175,7 @@
|
|
|
5860f5 |
# the script. See the script for details.
|
|
|
5860f5 |
#
|
|
|
5860f5 |
%__debug_install_post \
|
|
|
5860f5 |
- %{_rpmconfigdir}/find-debuginfo.sh %{?_missing_build_ids_terminate_build:--strict-build-id} %{?_find_debuginfo_dwz_opts} %{?_find_debuginfo_opts} "%{_builddir}/%{?buildsubdir}"\
|
|
|
5860f5 |
+ %{_rpmconfigdir}/find-debuginfo.sh %{?_missing_build_ids_terminate_build:--strict-build-id} %{?_include_minidebuginfo:-m} %{?_find_debuginfo_dwz_opts} %{?_find_debuginfo_opts} "%{_builddir}/%{?buildsubdir}"\
|
|
|
5860f5 |
%{nil}
|
|
|
5860f5 |
|
|
|
5860f5 |
# Template for debug information sub-package.
|
|
|
5860f5 |
@@ -418,6 +418,12 @@ package or when debugging this package.\
|
|
|
5860f5 |
#%_missing_build_ids_terminate_build 1
|
|
|
5860f5 |
|
|
|
5860f5 |
#
|
|
|
5860f5 |
+# Include minimal debug information in build binaries.
|
|
|
5860f5 |
+# Requires _enable_debug_packages.
|
|
|
5860f5 |
+#
|
|
|
5860f5 |
+#%_include_minidebuginfo 1
|
|
|
5860f5 |
+
|
|
|
5860f5 |
+#
|
|
|
5860f5 |
# Use internal dependency generator rather than external helpers?
|
|
|
5860f5 |
%_use_internal_dependency_generator 1
|
|
|
5860f5 |
|
|
|
5860f5 |
--- rpm-4.10.0/scripts/find-debuginfo.sh 2012-06-11 11:16:09.698138273 +0200
|
|
|
5860f5 |
+++ rpm-4.10.0/scripts/find-debuginfo.sh.minidebug 2012-06-11 11:16:13.399078526 +0200
|
|
|
5860f5 |
@@ -2,7 +2,7 @@
|
|
|
5860f5 |
#find-debuginfo.sh - automagically generate debug info and file list
|
|
|
5860f5 |
#for inclusion in an rpm spec file.
|
|
|
5860f5 |
#
|
|
|
5860f5 |
-# Usage: find-debuginfo.sh [--strict-build-id] [-g] [-r]
|
|
|
5860f5 |
+# Usage: find-debuginfo.sh [--strict-build-id] [-g] [-r] [-m]
|
|
|
5860f5 |
# [-o debugfiles.list]
|
|
|
5860f5 |
# [--run-dwz] [--dwz-low-mem-die-limit N]
|
|
|
5860f5 |
# [--dwz-max-die-limit N]
|
|
|
5860f5 |
@@ -29,6 +29,9 @@ strip_g=false
|
|
|
5860f5 |
# with -r arg, pass --reloc-debug-sections to eu-strip.
|
|
|
5860f5 |
strip_r=false
|
|
|
5860f5 |
|
|
|
5860f5 |
+# with -m arg, add minimal debuginfo to binary.
|
|
|
5860f5 |
+include_minidebug=false
|
|
|
5860f5 |
+
|
|
|
5860f5 |
# Barf on missing build IDs.
|
|
|
5860f5 |
strict=false
|
|
|
5860f5 |
|
|
|
5860f5 |
@@ -43,6 +46,9 @@ while [ $# -gt 0 ]; do
|
|
|
5860f5 |
-g)
|
|
|
5860f5 |
strip_g=true
|
|
|
5860f5 |
;;
|
|
|
5860f5 |
+ -m)
|
|
|
5860f5 |
+ include_minidebug=true
|
|
|
5860f5 |
+ ;;
|
|
|
5860f5 |
-o)
|
|
|
5860f5 |
if [ -z "${lists[$nout]}" -a -z "${ptns[$nout]}" ]; then
|
|
|
5860f5 |
out=$2
|
|
|
5860f5 |
@@ -105,6 +111,32 @@ strip_to_debug()
|
|
|
5860f5 |
chmod 444 "$1" || exit
|
|
|
5860f5 |
}
|
|
|
5860f5 |
|
|
|
5860f5 |
+add_minidebug()
|
|
|
5860f5 |
+{
|
|
|
5860f5 |
+ local debuginfo="$1"
|
|
|
5860f5 |
+ local binary="$2"
|
|
|
5860f5 |
+
|
|
|
5860f5 |
+ local dynsyms=`mktemp`
|
|
|
5860f5 |
+ local funcsyms=`mktemp`
|
|
|
5860f5 |
+ local keep_symbols=`mktemp`
|
|
|
5860f5 |
+ local mini_debuginfo=`mktemp`
|
|
|
5860f5 |
+
|
|
|
5860f5 |
+ # Extract the dynamic symbols from the main binary, there is no need to also have these
|
|
|
5860f5 |
+ # in the normal symbol table
|
|
|
5860f5 |
+ nm -D "$binary" --format=posix --defined-only | awk '{ print $1 }' | sort > "$dynsyms"
|
|
|
5860f5 |
+ # Extract all the text (i.e. function) symbols from the debuginfo
|
|
|
5860f5 |
+ nm "$debuginfo" --format=posix --defined-only | awk '{ if ($2 == "T" || $2 == "t") print $1 }' | sort > "$funcsyms"
|
|
|
5860f5 |
+ # Keep all the function symbols not already in the dynamic symbol table
|
|
|
5860f5 |
+ comm -13 "$dynsyms" "$funcsyms" > "$keep_symbols"
|
|
|
5860f5 |
+ # Copy the full debuginfo, keeping only a minumal set of symbols and removing some unnecessary sections
|
|
|
5860f5 |
+ objcopy -S --remove-section .gdb_index --remove-section .comment --keep-symbols="$keep_symbols" "$debuginfo" "$mini_debuginfo" &> /dev/null
|
|
|
5860f5 |
+ #Inject the compressed data into the .gnu_debugdata section of the original binary
|
|
|
5860f5 |
+ xz "$mini_debuginfo"
|
|
|
5860f5 |
+ mini_debuginfo="${mini_debuginfo}.xz"
|
|
|
5860f5 |
+ objcopy --add-section .gnu_debugdata="$mini_debuginfo" "$binary"
|
|
|
5860f5 |
+ rm -f "$dynsyms" "$funcsyms" "$keep_symbols" "$mini_debuginfo"
|
|
|
5860f5 |
+}
|
|
|
5860f5 |
+
|
|
|
5860f5 |
# Make a relative symlink to $1 called $3$2
|
|
|
5860f5 |
shopt -s extglob
|
|
|
5860f5 |
link_relative()
|
|
|
5860f5 |
@@ -260,6 +292,9 @@ while read nlinks inum f; do
|
|
|
5860f5 |
chmod u-w "$f"
|
|
|
5860f5 |
fi
|
|
|
5860f5 |
|
|
|
5860f5 |
+ $include_minidebug && add_minidebug "${debugfn}" "$f"
|
|
|
5860f5 |
+
|
|
|
5860f5 |
+
|
|
|
5860f5 |
if [ -n "$id" ]; then
|
|
|
5860f5 |
make_id_link "$id" "$dn/$(basename $f)"
|
|
|
5860f5 |
make_id_link "$id" "/usr/lib/debug$dn/$bn" .debug
|