#!/usr/bin/perl -w # # Strip files. use strict; use File::Find; use Debian::Debhelper::Dh_Lib; init(); # This variable can be used to turn off stripping (see Policy). if (defined $ENV{DEB_BUILD_OPTIONS} && $ENV{DEB_BUILD_OPTIONS} =~ /nostrip/) { exit; } # Check if a file is an elf binary, shared library, or static library, # for use by File::Find. It'll fill the following 3 arrays with anything # it finds: my (@shared_libs, @executables, @static_libs); sub testfile { return if -l $_ or -d $_; # Skip directories and symlinks always. # See if we were asked to exclude this file. # Note that we have to test on the full filename, including directory. my $fn="$File::Find::dir/$_"; foreach my $f (@{$dh{EXCLUDE}}) { return if ($fn=~m/\Q$f\E/); } # Does its filename look like a shared library? if (m/.*\.so.*?/) { # Ok, do the expensive test. my $type=`file $_`; if ($type=~m/.*ELF.*shared.*/) { push @shared_libs, $fn; return; } } # Is it executable? -x isn't good enough, so we need to use stat. my (undef,undef,$mode,undef)=stat(_); if ($mode & 0111) { # Ok, expensive test. my $type=`file $_`; if ($type=~m/.*ELF.*executable.*/) { push @executables, $fn; return; } } # Is it a static library, and not a debug library? if (m/lib.*\.a/ && ! m/.*_g\.a/) { push @static_libs, $fn; return; } } foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); my (@shared_libs, @executables, @static_libs); find(\&testfile,$tmp); foreach (@shared_libs) { # Note that all calls to strip on shared libs # *must* inclde the --strip-unneeded. doit("strip","--remove-section=.comment", "--remove-section=.note","--strip-unneeded",$_); } foreach (@executables) { doit("strip","--remove-section=.comment", "--remove-section=.note",$_); } foreach (@static_libs) { doit("strip","--strip-debug",$_); } }