2016-02-28 01:57:37 +00:00
|
|
|
export NIX_SET_BUILD_ID=1
|
|
|
|
export NIX_LDFLAGS+=" --compress-debug-sections=zlib"
|
2016-02-28 00:54:55 +00:00
|
|
|
export NIX_CFLAGS_COMPILE+=" -ggdb -Wa,--compress-debug-sections"
|
2015-09-17 14:24:32 +01:00
|
|
|
dontStrip=1
|
|
|
|
|
|
|
|
fixupOutputHooks+=(_separateDebugInfo)
|
|
|
|
|
|
|
|
_separateDebugInfo() {
|
2016-05-12 11:18:59 +01:00
|
|
|
[ -e "$prefix" ] || return 0
|
|
|
|
|
2015-09-17 14:24:32 +01:00
|
|
|
local dst="${debug:-$out}"
|
2016-05-12 11:18:59 +01:00
|
|
|
if [ "$prefix" = "$dst" ]; then return 0; fi
|
2015-09-17 14:24:32 +01:00
|
|
|
|
|
|
|
dst="$dst/lib/debug/.build-id"
|
|
|
|
|
|
|
|
# Find executables and dynamic libraries.
|
|
|
|
local i magic
|
2016-02-18 21:30:42 +00:00
|
|
|
while IFS= read -r -d $'\0' i; do
|
2016-02-18 21:52:44 +00:00
|
|
|
if ! isELF "$i"; then continue; fi
|
2015-09-17 14:24:32 +01:00
|
|
|
|
|
|
|
# Extract the Build ID. FIXME: there's probably a cleaner way.
|
|
|
|
local id="$(readelf -n "$i" | sed 's/.*Build ID: \([0-9a-f]*\).*/\1/; t; d')"
|
|
|
|
if [ "${#id}" != 40 ]; then
|
|
|
|
echo "could not find build ID of $i, skipping" >&2
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Extract the debug info.
|
|
|
|
header "separating debug info from $i (build ID $id)"
|
|
|
|
mkdir -p "$dst/${id:0:2}"
|
2016-02-28 00:54:55 +00:00
|
|
|
objcopy --only-keep-debug "$i" "$dst/${id:0:2}/${id:2}.debug"
|
2015-09-17 14:24:32 +01:00
|
|
|
strip --strip-debug "$i"
|
2016-01-15 15:12:05 +00:00
|
|
|
|
|
|
|
# Also a create a symlink <original-name>.debug.
|
|
|
|
ln -sfn ".build-id/${id:0:2}/${id:2}.debug" "$dst/../$(basename "$i")"
|
2016-02-18 21:52:44 +00:00
|
|
|
done < <(find "$prefix" -type f -print0)
|
2015-09-17 14:24:32 +01:00
|
|
|
}
|