summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-04-01 18:33:40 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-04-01 18:33:40 +0000
commit22fe07d1c4353d67c030848a4676fa75169d5fd6 (patch)
tree950f4749f75b5c20f8f957e3b5da43d3060f9b2f /tools
parentdf37327b278161653c36da792660feb808f5be24 (diff)
potential fix for partial stripping of a linux bundle
git-svn-id: svn://localhost/ardour2/branches/3.0@9251 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/linux_packaging/build38
1 files changed, 25 insertions, 13 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 6383fe90b6..6e27f87b85 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -13,7 +13,7 @@
MIXBUS=
WITH_LADSPA=0
-STRIP=1
+STRIP=all
PRINT_SYSDEPS=
WITH_NLS=
EXTERNAL_JACK=
@@ -41,20 +41,20 @@ while [ $# -gt 0 ] ; do
MIXBUS=1;
WITH_NLS=1 ;
WITH_LADSPA=;
- STRIP=1;
+ STRIP=all
APPNAME=Mixbus ;
VENDOR=Harrison ;
shift ;;
--public)
WITH_NLS=1 ;
WITH_LADSPA=;
- STRIP=1 ;
+ STRIP=all ;
APPNAME=Ardour ;
shift ;;
--allinone)
WITH_NLS= ;
WITH_LADSPA=1;
- STRIP=1;
+ STRIP=all;
shift ;;
--test) WITH_LADSPA=; STRIP= ; shift ;;
@@ -64,7 +64,7 @@ while [ $# -gt 0 ] ; do
--nojack) INTERNAL_JACK= ; shift ;;
--noladspa) WITH_LADSPA= ; shift ;;
- --nostrip) STRIP= ; shift ;;
+ --strip) STRIP=$2 ; shift ; shift ;;
--sysdeps) PRINT_SYSDEPS=1; shift ;;
--nls) WITH_NLS=1 ; shift ;;
@@ -78,6 +78,12 @@ while [ $# -gt 0 ] ; do
esac
done
+if test x$STRIP != xall -a x$STRIP != xnone -a x$STRIP != xsome ; then
+ echo "Unknown strip option \"$STRIP\""
+ echo "Legal values are: all, none, some"
+ exit 1
+fi
+
release_version=`grep -m 1 '^VERSION' ../../wscript | awk '{print $3}' | sed "s/'//g"`
svn_version=`grep -m 1 'svn_revision =' ../../libs/ardour/svn_revision.cc | cut -d"'" -f 2`
echo "Version is $release_version / $svn_version"
@@ -112,11 +118,11 @@ else
fi
if [ x$DEBUG != x ]; then
- if [ x$STRIP != x ]; then
- BUILDTYPE="strip"
- else
- BUILDTYPE="dbg"
- fi
+ BUILDTYPE="dbg"
+ if [ x$STRIP = xall ] ; then
+ echo "A debug build with --strip all makes no sense - STRIP reset to \"some\""
+ STRIP=some
+ fi
fi
# the waf build tree to use when copying built/generated files
@@ -214,7 +220,7 @@ MAIN_EXECUTABLE=ardour-3.0
echo "Copying ardour executable ...."
cp $BUILD_ROOT/gtk2_ardour/$MAIN_EXECUTABLE $APPBIN
-if test x$STRIP != x ; then
+if test x$STRIP = xall ; then
strip $APPBIN/$MAIN_EXECUTABLE
fi
@@ -505,6 +511,7 @@ while [ true ] ; do
else
echo "Copying dependant lib $dep (required by ${parent})"
cp $dep $Libraries
+ deplibs = "$deplibs $base"
fi
missing=true
fi
@@ -518,9 +525,14 @@ done
echo
# strip libraries
-if test x$STRIP != x ; then
- echo Stripping libraries
+if test x$STRIP = xall ; then
+ echo Stripping all libraries
find $APPLIB/ -name "*.so*" | xargs strip
+else if test x$STRIP = xsome ; then
+ echo Stripping dependent libraries
+ for l in $deplibs ; do
+ strip $APPLIB/$l
+ done
fi
find $APPLIB/ -name "*.so*" | xargs chmod a+rx