gn_run_binary.py 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #!/usr/bin/env python
  2. # Copyright (c) 2020 Project CHIP Authors
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. # Copyright 2014 The Chromium Authors. All rights reserved.
  16. #
  17. # Redistribution and use in source and binary forms, with or without
  18. # modification, are permitted provided that the following conditions are
  19. # met:
  20. #
  21. # * Redistributions of source code must retain the above copyright
  22. # notice, this list of conditions and the following disclaimer.
  23. # * Redistributions in binary form must reproduce the above
  24. # copyright notice, this list of conditions and the following disclaimer
  25. # in the documentation and/or other materials provided with the
  26. # distribution.
  27. # * Neither the name of Google Inc. nor the names of its
  28. # contributors may be used to endorse or promote products derived from
  29. # this software without specific prior written permission.
  30. #
  31. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  32. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  33. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  34. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  35. # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  36. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  37. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  38. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  39. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  40. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  41. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  42. """Helper script for GN to run an arbitrary binary. See compiled_action.gni.
  43. Run with:
  44. python gn_run_binary.py <binary_name> [args ...]
  45. """
  46. from __future__ import print_function
  47. import subprocess
  48. import sys
  49. args = sys.argv[1:]
  50. ret = subprocess.call(args)
  51. if ret != 0:
  52. if ret <= -100:
  53. # Windows error codes such as 0xC0000005 and 0xC0000409 are much easier to
  54. # recognize and differentiate in hex. In order to print them as unsigned
  55. # hex we need to add 4 Gig to them.
  56. print('%s failed with exit code 0x%08X' %
  57. (sys.argv[1], ret + (1 << 32)))
  58. else:
  59. print('%s failed with exit code %d' % (sys.argv[1], ret))
  60. sys.exit(ret)