Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: native_client_sdk/src/build_tools/build_sdk.py

Issue 1388503003: [NaCl SDK] Remove newlib toolchain from the SDK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/build_tools/build_sdk.py
diff --git a/native_client_sdk/src/build_tools/build_sdk.py b/native_client_sdk/src/build_tools/build_sdk.py
index d431cda538dd473c3e7b0ee156d4ebb34e51ca81..edd5c308b6b539060ad2231185b6cee3a9011543 100755
--- a/native_client_sdk/src/build_tools/build_sdk.py
+++ b/native_client_sdk/src/build_tools/build_sdk.py
@@ -67,7 +67,6 @@ options = None
TOOLCHAIN_PACKAGE_MAP = {
'arm_newlib': ('nacl_arm_newlib', '%(platform)s_arm_newlib', 'arm'),
binji 2015/10/02 23:08:06 remove this too?
Sam Clegg 2015/10/02 23:42:50 Done.
'arm_glibc': ('nacl_arm_glibc', '%(platform)s_arm_glibc', 'arm'),
- 'x86_newlib': ('nacl_x86_newlib', '%(platform)s_x86_newlib', 'x86'),
'x86_glibc': ('nacl_x86_glibc', '%(platform)s_x86_glibc', 'x86'),
'arm_bionic': ('nacl_arm_bionic', '%(platform)s_arm_bionic', 'arm'),
'pnacl': ('pnacl_newlib', '%(platform)s_pnacl', 'pnacl')
@@ -953,8 +952,7 @@ def main(args):
# NOTE: order matters here. This will be the order that is specified in the
# Makefiles; the first toolchain will be the default.
- toolchains = ['pnacl', 'x86_newlib', 'x86_glibc', 'arm_newlib', 'arm_glibc',
- 'clang-newlib', 'host']
+ toolchains = ['pnacl', 'x86_glibc', 'arm_glibc', 'clang-newlib', 'host']
# Changes for experimental bionic builder
if options.bionic:
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/sdk_files.list » ('j') | native_client_sdk/src/libraries/nacl_io/library.dsc » ('J')

Powered by Google App Engine
This is Rietveld 408576698