X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=dh_strip;h=4dc69616f971a5678374526e172a577f948a4ba5;hb=46ecfad5fed9e0e4ef179f5ec531f996400669b7;hp=3acf6a748d1538511764192b6e0ecb663e522686;hpb=0952ac2e9995da8abe149f3e42b3b8d9d2797112;p=debhelper.git diff --git a/dh_strip b/dh_strip index 3acf6a7..4dc6961 100755 --- a/dh_strip +++ b/dh_strip @@ -82,10 +82,13 @@ init(options => { }); # This variable can be used to turn off stripping (see Policy). -if (defined $ENV{DEB_BUILD_OPTIONS} && $ENV{DEB_BUILD_OPTIONS} =~ /nostrip/) { +if (get_buildoption('nostrip')) { exit; } +my $objcopy = cross_command("objcopy"); +my $strip = cross_command("strip"); + # I could just use `file $_[0]`, but this is safer sub get_file_type { my $file=shift; @@ -163,7 +166,12 @@ sub make_debug { if (! -d $debug_dir) { doit("install", "-d", $debug_dir); } - doit("objcopy", "--only-keep-debug", $file, $debug_path); + if (compat(8)) { + doit($objcopy, "--only-keep-debug", $file, $debug_path); + } + else { + doit($objcopy, "--only-keep-debug", "--compress-debug-sections", $file, $debug_path); + } # No reason for this to be executable. doit("chmod", 644, $debug_path); return $debug_path; @@ -172,7 +180,7 @@ sub make_debug { sub attach_debug { my $file=shift; my $debug_path=shift; - doit("objcopy", "--add-gnu-debuglink", $debug_path, $file); + doit($objcopy, "--add-gnu-debuglink", $debug_path, $file); } foreach my $package (@{$dh{DOPACKAGES}}) { @@ -207,20 +215,20 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $debug_path = make_debug($_, $tmp, $debugtmp) if $keep_debug; # Note that all calls to strip on shared libs # *must* inclde the --strip-unneeded. - doit("strip","--remove-section=.comment", + doit($strip,"--remove-section=.comment", "--remove-section=.note","--strip-unneeded",$_); attach_debug($_, $debug_path) if defined $debug_path; } foreach (@executables) { my $debug_path = make_debug($_, $tmp, $debugtmp) if $keep_debug; - doit("strip","--remove-section=.comment", + doit($strip,"--remove-section=.comment", "--remove-section=.note",$_); attach_debug($_, $debug_path) if defined $debug_path; } foreach (@static_libs) { - doit("strip","--strip-debug",$_); + doit($strip,"--strip-debug",$_); } }