Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7902)

Unified Diff: chrome/strip_nacl_irt.py

Issue 8539039: Fix size regression due to missing strip. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ppapi/native_client/native_client.gyp » ('j') | ppapi/native_client/native_client.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/strip_nacl_irt.py
===================================================================
--- chrome/strip_nacl_irt.py (revision 0)
+++ chrome/strip_nacl_irt.py (revision 0)
@@ -0,0 +1,76 @@
+#!/usr/bin/python
+# Copyright (c) 2011 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import optparse
+import os
+import re
+import shutil
+import subprocess
+import sys
+
+
+# Where things are in relation to this script.
+SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
+SRC_DIR = os.path.dirname(SCRIPT_DIR)
+NACL_DIR = os.path.join(SRC_DIR, 'native_client')
+
+
+def StripIRT(platforms, src, dst):
+ """Build the IRT for several platforms.
+
+ Arguments:
+ platforms: list of platform names to build for.
+ out_dir: directory to output the IRT to.
+ """
+ uplatform = platform.replace('-', '_')
+ # NaCl Trusted code is in thumb2 mode in CrOS, but as yet,
+ # untrusted code is still in classic ARM mode
+ # arm-thumb2 is for the future when untrusted code is in thumb2 as well
+ platform2 = {'arm': 'pnacl',
+ 'arm-thumb2' : 'pnacl',
+ 'x86-32': 'i686',
+ 'x86-64': 'x86_64'}.get(platform, platform)
+ cplatform = {
+ 'win32': 'win',
+ 'cygwin': 'win',
+ 'darwin': 'mac',
+ }.get(sys.platform, 'linux')
+ if platform in ['arm', 'arm-thumb2']:
+ cmd = [
+ '../native_client/toolchain/pnacl_linux_x86_64_newlib/bin/' +
+ platform2 + '-strip',
+ '--strip-debug', src, '-o', dst
+ ]
+ else:
+ cmd = [
+ '../native_client/toolchain/' + cplatform + '_x86_newlib/bin/' +
+ platform2 + '-nacl-strip',
+ '--strip-debug', src, '-o', dst
+ ]
+ print 'Running: ' + ' '.join(cmd)
+ p = subprocess.Popen(cmd, cwd=SCRIPT_DIR)
+ p.wait()
+ if p.returncode != 0:
+ sys.exit(4)
+
+
+def Main(argv):
+ parser = optparse.OptionParser()
+ parser.add_option('--platform', dest='platforms',
+ help='select a platform to strip')
+ parser.add_option('--src', dest='from',
+ help='source IRT file')
+ parser.add_option('--dst', dest='from',
+ help='destination IRT file')
+ (options, args) = parser.parse_args(argv[1:])
+ if args or not options.platforms:
+ parser.print_help()
+ sys.exit(1)
+
+ StripIRT(options.platforms, options.src, options.dst)
+
+
+if __name__ == '__main__':
+ Main(sys.argv)
Property changes on: chrome/strip_nacl_irt.py
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:eol-style
+ LF
« no previous file with comments | « no previous file | ppapi/native_client/native_client.gyp » ('j') | ppapi/native_client/native_client.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698