| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|    44         'upstream-base': '68b975af7ef47a9d28f21f4c93431f35777a5109', |    44         'upstream-base': '68b975af7ef47a9d28f21f4c93431f35777a5109', | 
|    45         }, |    45         }, | 
|    46     'gcc': { |    46     'gcc': { | 
|    47         'rev': '336bd0bc1724efd6f8b2a4d7228e389dc1bc48da', |    47         'rev': '336bd0bc1724efd6f8b2a4d7228e389dc1bc48da', | 
|    48         'upstream-branch': 'upstream/gcc-4_9-branch', |    48         'upstream-branch': 'upstream/gcc-4_9-branch', | 
|    49         'upstream-name': 'gcc-' + GCC_VERSION, |    49         'upstream-name': 'gcc-' + GCC_VERSION, | 
|    50          # Upstream tag gcc-<GCC_VERSION>-release: |    50          # Upstream tag gcc-<GCC_VERSION>-release: | 
|    51         'upstream-base': 'c1283af40b65f1ad862cf5b27e2d9ed10b2076b6', |    51         'upstream-base': 'c1283af40b65f1ad862cf5b27e2d9ed10b2076b6', | 
|    52         }, |    52         }, | 
|    53     'glibc': { |    53     'glibc': { | 
|    54         'rev': '3ed015122f159b4fade8e4feecb53fe1f84fa95f', |    54         'rev': 'da7f049cad943629f16cd6e533214955edfd511d', | 
|    55         'upstream-branch': 'upstream/master', |    55         'upstream-branch': 'upstream/master', | 
|    56         'upstream-name': 'glibc-2.21', |    56         'upstream-name': 'glibc-2.21', | 
|    57         # Upstream tag glibc-2.21: |    57         # Upstream tag glibc-2.21: | 
|    58         'upstream-base': '4e42b5b8f89f0e288e68be7ad70f9525aebc2cff', |    58         'upstream-base': '4e42b5b8f89f0e288e68be7ad70f9525aebc2cff', | 
|    59         }, |    59         }, | 
|    60     'gdb': { |    60     'gdb': { | 
|    61         'rev': '5deb4793a5e3f2f48d7899f424bb4484686020f8', |    61         'rev': '5deb4793a5e3f2f48d7899f424bb4484686020f8', | 
|    62         'repo': 'binutils', |    62         'repo': 'binutils', | 
|    63         'upstream-branch': 'upstream/gdb-7.7-branch', |    63         'upstream-branch': 'upstream/gdb-7.7-branch', | 
|    64         'upstream-name': 'gdb-7.7.1', |    64         'upstream-name': 'gdb-7.7.1', | 
| (...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1178  |  1178  | 
|  1179 PACKAGES = CollectPackages(TARGET_LIST) |  1179 PACKAGES = CollectPackages(TARGET_LIST) | 
|  1180 PACKAGE_TARGETS = GetPackageTargets() |  1180 PACKAGE_TARGETS = GetPackageTargets() | 
|  1181  |  1181  | 
|  1182  |  1182  | 
|  1183 if __name__ == '__main__': |  1183 if __name__ == '__main__': | 
|  1184   tb = toolchain_main.PackageBuilder(PACKAGES, PACKAGE_TARGETS, sys.argv[1:]) |  1184   tb = toolchain_main.PackageBuilder(PACKAGES, PACKAGE_TARGETS, sys.argv[1:]) | 
|  1185   # TODO(mcgrathr): The bot ought to run some native_client tests |  1185   # TODO(mcgrathr): The bot ought to run some native_client tests | 
|  1186   # using the new toolchain, like the old x86 toolchain bots do. |  1186   # using the new toolchain, like the old x86 toolchain bots do. | 
|  1187   sys.exit(tb.Main()) |  1187   sys.exit(tb.Main()) | 
| OLD | NEW |