/build/cl.py

http://github.com/zpao/v8monkey · Python · 96 lines · 38 code · 11 blank · 47 comment · 15 complexity · 89c16dd153b5839f1f69560c86fa66a3 MD5 · raw file

  1. # ***** BEGIN LICENSE BLOCK *****
  2. # Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3. #
  4. # The contents of this file are subject to the Mozilla Public License Version
  5. # 1.1 (the "License"); you may not use this file except in compliance with
  6. # the License. You may obtain a copy of the License at
  7. # http://www.mozilla.org/MPL/
  8. #
  9. # Software distributed under the License is distributed on an "AS IS" basis,
  10. # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11. # for the specific language governing rights and limitations under the
  12. # License.
  13. #
  14. # The Original Code is cl.py: a python wrapper for cl to automatically generate
  15. # dependency information.
  16. #
  17. # The Initial Developer of the Original Code is
  18. # Mozilla Foundation.
  19. # Portions created by the Initial Developer are Copyright (C) 2010
  20. # the Initial Developer. All Rights Reserved.
  21. #
  22. # Contributor(s):
  23. # Kyle Huey <me@kylehuey.com>
  24. #
  25. # Alternatively, the contents of this file may be used under the terms of
  26. # either the GNU General Public License Version 2 or later (the "GPL"), or
  27. # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28. # in which case the provisions of the GPL or the LGPL are applicable instead
  29. # of those above. If you wish to allow use of your version of this file only
  30. # under the terms of either the GPL or the LGPL, and not to allow others to
  31. # use your version of this file under the terms of the MPL, indicate your
  32. # decision by deleting the provisions above and replace them with the notice
  33. # and other provisions required by the GPL or the LGPL. If you do not delete
  34. # the provisions above, a recipient may use your version of this file under
  35. # the terms of any one of the MPL, the GPL or the LGPL.
  36. #
  37. # ***** END LICENSE BLOCK *****
  38. import os, os.path
  39. import subprocess
  40. import sys
  41. CL_INCLUDES_PREFIX = os.environ.get("CL_INCLUDES_PREFIX", "Note: including file:")
  42. def InvokeClWithDependencyGeneration(cmdline):
  43. target = ""
  44. # Figure out what the target is
  45. for arg in cmdline:
  46. if arg.startswith("-Fo"):
  47. target = arg[3:]
  48. break
  49. if target == None:
  50. print >>sys.stderr, "No target set" and sys.exit(1)
  51. # The deps target lives here
  52. depstarget = os.path.basename(target) + ".pp"
  53. cmdline += ['-showIncludes']
  54. cl = subprocess.Popen(cmdline, stdout=subprocess.PIPE)
  55. deps = set()
  56. for line in cl.stdout:
  57. # cl -showIncludes prefixes every header with "Note: including file:"
  58. # and an indentation corresponding to the depth (which we don't need)
  59. if line.startswith(CL_INCLUDES_PREFIX):
  60. dep = line[len(CL_INCLUDES_PREFIX):].strip()
  61. # We can't handle pathes with spaces properly in mddepend.pl, but
  62. # we can assume that anything in a path with spaces is a system
  63. # header and throw it away.
  64. if dep.find(' ') == -1:
  65. deps.add(dep)
  66. else:
  67. sys.stdout.write(line) # Make sure we preserve the relevant output
  68. # from cl
  69. ret = cl.wait()
  70. if ret != 0 or target == "":
  71. sys.exit(ret)
  72. depsdir = os.path.normpath(os.path.join(os.path.dirname(target), ".deps"))
  73. depstarget = os.path.join(depsdir, depstarget)
  74. if not os.path.isdir(depsdir):
  75. try:
  76. os.makedirs(depsdir)
  77. except OSError:
  78. pass # This suppresses the error we get when the dir exists, at the
  79. # cost of masking failure to create the directory. We'll just
  80. # die on the next line though, so it's not that much of a loss.
  81. f = open(depstarget, "w")
  82. for dep in sorted(deps):
  83. print >>f, "%s: %s" % (target, dep)
  84. if __name__ == "__main__":
  85. InvokeClWithDependencyGeneration(sys.argv[1:])