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

Unified Diff: toolchain_build/toolchain_build_pnacl.py

Issue 1412503002: PNaCl. Enables Unsandboxed nonsfi ARM32. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Addresses comment. 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
« no previous file with comments | « toolchain_build/pnacl_targetlibs.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: toolchain_build/toolchain_build_pnacl.py
diff --git a/toolchain_build/toolchain_build_pnacl.py b/toolchain_build/toolchain_build_pnacl.py
index bebb5760a562899435c9be47b2bd41a9f0f55e0b..988c70b0f2e11e1a6f2ed2a02285e175daa8ade1 100755
--- a/toolchain_build/toolchain_build_pnacl.py
+++ b/toolchain_build/toolchain_build_pnacl.py
@@ -1144,9 +1144,12 @@ def GetUploadPackageTargets():
host_packages[os_name].append('libcxx_%s' % legal_triple)
# Unsandboxed target IRT libraries
- for os_name in ('linux', 'mac'):
+ for os_name in ['linux', 'mac']:
legal_triple = pynacl.gsd_storage.LegalizeName('x86-32-' + os_name)
host_packages[os_name].append('unsandboxed_runtime_%s' % legal_triple)
+ for os_name in ['linux']:
+ legal_triple = pynacl.gsd_storage.LegalizeName('arm-' + os_name)
+ host_packages[os_name].append('unsandboxed_runtime_%s' % legal_triple)
for os_name, os_packages in host_packages.iteritems():
package_target = '%s_x86' % pynacl.platform.GetOS(os_name)
@@ -1279,6 +1282,8 @@ def main():
unsandboxed_runtime_canonical = is_canonical or pynacl.platform.IsMac()
packages.update(pnacl_targetlibs.UnsandboxedRuntime(
'x86-32-%s' % pynacl.platform.GetOS(), unsandboxed_runtime_canonical))
+ packages.update(pnacl_targetlibs.UnsandboxedRuntime(
+ 'arm-%s' % pynacl.platform.GetOS(), unsandboxed_runtime_canonical))
if args.build_sbtc and not args.pnacl_in_pnacl:
packages.update(pnacl_sandboxed_translator.SandboxedTranslators(
« no previous file with comments | « toolchain_build/pnacl_targetlibs.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698