summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-02-24 01:54:52 +0100
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-02-25 11:45:27 +0100
commit4b1bfdb56d32ce74deffc4eaccdd4ba33125d540 (patch)
tree8baed86f88ae832048a4a1f2708a0e1efbf8118b
parentfd954089f8d058d2510d0999c99d382470d6178e (diff)
strip: add a wrapper for striping object files
-rw-r--r--cerbero/tools/strip.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/cerbero/tools/strip.py b/cerbero/tools/strip.py
new file mode 100644
index 0000000..0328d91
--- /dev/null
+++ b/cerbero/tools/strip.py
@@ -0,0 +1,46 @@
+#!/usr/bin/env python
+# cerbero - a multi-platform build system for Open Source software
+# Copyright (C) 2012 Andoni Morales Alastruey <ylatuya@gmail.com>
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Library General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
+import os
+from cerbero.config import Platform
+from cerbero.utils import shell
+
+class Strip(object):
+ '''Wrapper for the strip tool'''
+
+ STRIP_CMD = 'strip'
+
+ def __init__(self, config):
+ self.config = config
+
+ def strip_file(self, path):
+ try:
+ shell.call("%s %s" % (self._strip_cmd(), path))
+ except:
+ pass
+
+ def strip_dir(self, dir_path):
+ for dirpath, dirnames, filenames in os.walk(dir_path):
+ for f in filenames:
+ self.strip_file(os.path.join(dirpath, f))
+
+ def _strip_cmd(self):
+ if self.config.target_platform == Platform.DARWIN:
+ return '%s -x' % self.STRIP_CMD
+ return '%s --strip-unneeded' % self.STRIP_CMD