| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 """Recipes for NativeClient toolchain packages. | 6 """Recipes for NativeClient toolchain packages. |
| 7 | 7 |
| 8 The real entry plumbing is in toolchain_main.py. | 8 The real entry plumbing is in toolchain_main.py. |
| 9 """ | 9 """ |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 'upstream-base': '237df3fa4a1d939e6fd1af0c3e5029a25a137310', | 35 'upstream-base': '237df3fa4a1d939e6fd1af0c3e5029a25a137310', |
| 36 }, | 36 }, |
| 37 'gcc': { | 37 'gcc': { |
| 38 'rev': '145a627d95b98f54915d037dddbcbb0f7b283494', | 38 'rev': '145a627d95b98f54915d037dddbcbb0f7b283494', |
| 39 'upstream-branch': 'upstream/gcc-4_8-branch', | 39 'upstream-branch': 'upstream/gcc-4_8-branch', |
| 40 'upstream-name': 'gcc-4.8.2', | 40 'upstream-name': 'gcc-4.8.2', |
| 41 # Upstream tag gcc-4_8_2-release: | 41 # Upstream tag gcc-4_8_2-release: |
| 42 'upstream-base': '9bcca88e24e64d4e23636aafa3404088b13bcb0e', | 42 'upstream-base': '9bcca88e24e64d4e23636aafa3404088b13bcb0e', |
| 43 }, | 43 }, |
| 44 'newlib': { | 44 'newlib': { |
| 45 'rev': 'cc9ce45891a45ecfbc671f4a6f1b06ba60a55ad9', | 45 'rev': '41e7008e8fab0e1b2d9b3e7a996db2fe02e9ca66', |
| 46 'upstream-branch': 'upstream/master', | 46 'upstream-branch': 'upstream/master', |
| 47 'upstream-name': 'newlib-2.0.0', | 47 'upstream-name': 'newlib-2.0.0', |
| 48 # Upstream tag newlib_2_0_0: | 48 # Upstream tag newlib_2_0_0: |
| 49 'upstream-base': 'c3fc84e062cacc2b3e13c1f6b9151d0cc85392ba', | 49 'upstream-base': 'c3fc84e062cacc2b3e13c1f6b9151d0cc85392ba', |
| 50 }, | 50 }, |
| 51 'gdb': { | 51 'gdb': { |
| 52 'rev': '526703e8c4a92c0d13ac48f97e79afebbb4d3cc4', | 52 'rev': '526703e8c4a92c0d13ac48f97e79afebbb4d3cc4', |
| 53 'repo': 'binutils', | 53 'repo': 'binutils', |
| 54 'upstream-branch': 'upstream/gdb-7.7-branch', | 54 'upstream-branch': 'upstream/gdb-7.7-branch', |
| 55 'upstream-name': 'gdb-7.6.90', | 55 'upstream-name': 'gdb-7.6.90', |
| (...skipping 832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 888 | 888 |
| 889 | 889 |
| 890 PACKAGES = CollectPackages(TARGET_LIST) | 890 PACKAGES = CollectPackages(TARGET_LIST) |
| 891 | 891 |
| 892 | 892 |
| 893 if __name__ == '__main__': | 893 if __name__ == '__main__': |
| 894 tb = toolchain_main.PackageBuilder(PACKAGES, sys.argv[1:]) | 894 tb = toolchain_main.PackageBuilder(PACKAGES, sys.argv[1:]) |
| 895 # TODO(mcgrathr): The bot ought to run some native_client tests | 895 # TODO(mcgrathr): The bot ought to run some native_client tests |
| 896 # using the new toolchain, like the old x86 toolchain bots do. | 896 # using the new toolchain, like the old x86 toolchain bots do. |
| 897 tb.Main() | 897 tb.Main() |
| OLD | NEW |