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-08-22 22:02:10 +0200
commit495f7505f1aca80e5f65650a9016a6dbab2b32c7 (patch)
tree62f2b4233ec53815fa6013a067f36b0884a61d9c
parentb2591c37267b6623b62f12684f549ece6ae34d2b (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..c8f1ef9
--- /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