Original URL: https://www.theregister.com/2013/01/23/google_native_client_for_arm/

Google's Native Client browser tech now works on ARM

Next up: making it work on every CPU

By Neil McAllister in San Francisco

Posted in Devops, 23rd January 2013 02:35 GMT

Updated Native Client (NaCl), the Google technology that allows developers to write client-side web application modules in compiled languages like C and C++, has been updated to work on devices based on the ARM processor architecture.

Earlier versions of the technology, which enables running native binary code inside a browser window, have only supported modules compiled for Intel processors.

As of Tuesday, however, the Native Client SDK now includes an additional set of compilers and other tools that can be used to build NaCl modules for ARM devices.

"Just get the newest SDK, and you'll have all the tools you need," Google's David Sehr wrote in an official blog post on Tuesday.

Getting NaCl working on more kinds of devices is an important goal for Google. Not only does NaCl allow developers to run high-performance code in the browser, but Google has also positioned the technology as one replacement for the legacy NSAPI browser plug-in interface, which has remained largely unchanged since the early days of Netscape.

NaCl modules are written in compiled languages and they have low-level access to browser APIs, which sounds scary to some. But traditional browser plug-ins can actually make system calls, which is even less safe, and Google says NaCl's sophisticated sandboxing techniques make NaCl modules more secure than earlier in-browser native code technologies, such as Microsoft's ActiveX.

So far, however, Google's own Chrome is the only browser to support NaCl modules natively. Early builds of NaCl worked with Firefox and other browsers via a plug-in, but the Mozilla Foundation has said it is "not interested" in working on NaCl or its related Pepper API, preferring to concentrate on improving the performance of Firefox's JavaScript runtime.

Still, Google says that as long as developers are content with targeting Chrome, they should have no problem building NaCl modules that work on both Intel and ARM processors – that is, provided they stick to using the Newlib standard C library, rather than the more heavyweight glibc.

Building the ARM modules requires an extra compilation step, and developers will need to tweak their NaCl module manifests to support the new architecture – but that isn't anything new. Because NaCl modules are native binary code, developers already need to build separate modules for 32-bit and 64-bit Intel processors.

That could change in the near future, though. Google's Sehr says that Portable Native Client, a new version of NaCl that builds its modules on the fly from machine-independent LLVM compiler bitcode, will arrive this year. That version will allow the same modules to run on 32-bit Intel, 64-bit Intel, ARM, or any other processor architecture that can run Chrome with NaCl.

There is another catch, however. Developers can build NaCl modules for ARM today, but like plug-ins, NaCl isn't supported on Chrome for Android. That means the only ARM devices currently compatible with NaCl modules are the ARM-powered Chromebooks, plus the odd Linux device running a custom build of Chromium. You can't run native code in your phone's browser, and from the look of things, that isn't likely to change anytime soon. ®

Update

We have made some minor corrections to this article after further clarification from Google staffers. In particular, the original version of the article said that the Firefox browser supported NaCl via a plug-in; this was once true, but it's no longer the case. In addition, we have clarified our explanation of how NaCl modules relate to traditional browser plug-ins in terms of security. We regret any confusion the earlier version of the article may have caused.