summaryrefslogtreecommitdiff
path: root/gyp/merge_static_libs.py
blob: 842be18c84dfb4e05a35e25c76dcaad9885646eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
# Copyright (c) 2012 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 os
import shutil
import subprocess
import sys
import tempfile

def _Usage():
  print 'Usage: merge_static_libs OUTPUT_LIB INPUT_LIB [INPUT_LIB]*'
  sys.exit(1)

def MergeLibs(in_libs, out_lib):
  """ Merges multiple static libraries into one.
  
  in_libs: list of paths to static libraries to be merged
  out_lib: path to the static library which will be created from in_libs
  """
  if os.name == 'posix':
    tempdir = tempfile.mkdtemp()
    abs_in_libs = []
    for in_lib in in_libs:
      abs_in_libs.append(os.path.abspath(in_lib))
    curdir = os.getcwd()
    os.chdir(tempdir)
    objects = []
    ar = os.environ.get('AR', 'ar')
    for in_lib in abs_in_libs:
      proc = subprocess.Popen([ar, '-t', in_lib], stdout=subprocess.PIPE)
      proc.wait()
      obj_str = proc.communicate()[0]
      current_objects = obj_str.rstrip().split('\n')
      proc = subprocess.Popen([ar, '-x', in_lib], stdout=subprocess.PIPE,
                              stderr=subprocess.STDOUT)
      proc.wait()
      if proc.poll() == 0:
        # The static library is non-thin, and we extracted objects
        for object in current_objects:
          objects.append(os.path.abspath(object))
      elif 'thin archive' in proc.communicate()[0]:
        # The static library is thin, so it contains the paths to its objects
        for object in current_objects:
          objects.append(object)
      else:
        raise Exception('Failed to extract objects from %s.' % in_lib)
    os.chdir(curdir)
    if not subprocess.call([ar, '-crs', out_lib] + objects) == 0:
      raise Exception('Failed to add object files to %s' % out_lib)
    shutil.rmtree(tempdir)
  elif os.name == 'nt':
    subprocess.call(['lib', '/OUT:%s' % out_lib] + in_libs)
  else:
    raise Exception('Error: Your platform is not supported')

def Main():
  if len(sys.argv) < 3:
    _Usage()
  out_lib = sys.argv[1]
  in_libs = sys.argv[2:]
  MergeLibs(in_libs, out_lib)

if '__main__' == __name__:
  sys.exit(Main())