Commit 04b8324d authored by Ben Smith's avatar Ben Smith

[NaCl SDK] Fix SDK to have pnacl as default toolchain.

BUG=none
R=sbc@chromium.org

Review URL: https://codereview.chromium.org/594503003

Cr-Commit-Position: refs/heads/master@{#296028}
parent b83a0bd9
...@@ -949,7 +949,9 @@ def main(args): ...@@ -949,7 +949,9 @@ def main(args):
options.build_app_engine = False options.build_app_engine = False
options.tar = True options.tar = True
toolchains = ['newlib', 'glibc', 'arm', 'pnacl', 'host'] # NOTE: order matters here. This will be the order that is specified in the
# Makefiles; the first toolchain will be the default.
toolchains = ['pnacl', 'newlib', 'glibc', 'arm', 'host']
# Changes for experimental bionic builder # Changes for experimental bionic builder
if options.bionic: if options.bionic:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment