GPU workaround to simulate Out of Memory errors with large textures
[chromium-blink-merge.git] / native_client_sdk / src / doc / sdk / release-notes.rst
blob3c85e14c9ebe57c144b5b6815170e18426a9bd91
1 .. _sdk-release-notes:
3 #############
4 Release Notes
5 #############
7 The dates in the following release notes denote when Chrome and the NaCl SDK
8 reached canary status. The stable release is typically 6 weeks later.
11 Chrome/Pepper 43 (03 April 2015)
12 ================================
14 PNaCl
15 -----
17 * The C11/C++11 ``acquire``, ``release``, and ``acq_rel`` memory orders are now
18   generated by default. The in-browser Chrome 42 translator supports them, the
19   SDK can therefore generate them.
20 * Fix a `code generation bug on ARM`_ when dealing with 16-bit load/store and
21   ``bswap`` which led to a NaCl validation failure.
22 * PNaCl is now based on LLVM 3.6. If you are using GDB to debug PNaCl
23   :ref:`BC files with debug metadata in the browser<debugging_pnacl_pexes>`,
24   remember that debug info from SDK version ``X`` is only compatible with the
25   PNaCl translator in chrome version ``X``. The bitcode debug metadata format
26   changed from LLVM 3.5 to 3.6. If you need to debug an app built with SDK
27   version ``X`` running in Chrome version ``Y`` (with ``X != Y``), it is still
28   possible to do so. Simply translate the pexe to a nexe using the
29   :ref:`offline pnacl-translate tool from SDK version X
30   <debugging_pexes_via_nexes>` instead of using the translator in the
31   browser (version ``Y``).
32 * PNaCl's support for use of libstdc++ 4.6 as the C++ standard library is
33   deprecated and will be removed in the next release. PNaCl has used libc++
34   (which is much more up-to-date, currently based on LLVM 3.6) as the default
35   since Pepper 33.
37 .. _`code generation bug on ARM`: https://code.google.com/p/chromium/issues/detail?id=460432
39 Pepper
40 ------
42 * UDP Socket Multicast API in development preview (PPB_UDP_SOCKET 1.2).
43 * Hardware Video Encoder API in development preview (PPB_VIDEO_ENCODER 0.1).
45 Chrome/Pepper 42 (20 February 2015)
46 ===================================
48 SDK
49 ---
51 * The SDK now contains experimental versions of ``i686-nacl-clang``,
52   ``x86_64-nacl-clang``, and ``arm-nacl-clang`` as well as the ``clang++``
53   equivalents. These toolchains are based on the same LLVM version as PNaCl, but
54   can be used to generate NaCl ``.nexe`` files instead of translating a
55   ``.pexe`` locally or using the GCC toolchain.
57 NaCl
58 ----
60 * The x86 NaCl validators accept instructions from the FMA3 extensions, as well
61   as AVX2 instructions (except ``VGATHER``).
63 PNaCl
64 -----
66 * PNaCl supports C11/C++11 memory orders ``acquire``, ``release``, and
67   ``acq_rel``. It used to upgrade all accesses to ``seq_cst``. It still upgrades
68   ``consume`` to ``acquire`` (no compiler currently implements ``consume``), and
69   ``relaxed`` to ``seq_cst`` (to conservatively avoid platform differences due
70   to out-of-thin-air problems). This is currently disabled by default in the SDK
71   so that the in-browser translator installed on users' machines has time to
72   gain this support. Developers can turn it on by passing the
73   ``-pnacl-memory-order-seq-cst-only=false`` flag to ``opt``.
74 * PNaCl handles nested struct type expansion, which allows it to better support
75   non-C languages such as Rust.
76 * PNaCl breaks up many integer operations over 64-bits into individual 64-bit
77   operations. This is often encountered when using large consecutive bitfields.
79 Chrome/Pepper 41 (09 January 2015)
80 ==================================
82 NaCl
83 ----
85 * The x86 NaCl validators accept instructions from the AVX1 extensions.
87 PNaCl
88 -----
90 * PNaCl is now based on LLVM 3.5.
92 Chrome/Pepper 40 (November 07 2014)
93 ===================================
95 * `VideoDecoder
96   </native-client/pepper_stable/cpp/classpp_1_1_video_decoder.html>`_ is now
97   stable, see the SDK example in ``pepper_canary/examples/api/video_decode``.
99 Chrome/Pepper 39 (26 September 2014)
100 ====================================
102 NaCl
103 ----
105 * This release contains a fix for CVE-2015-0565: `disable the x86 CLFLUSH
106   instruction due to rowhammer problem
107   <https://code.google.com/p/nativeclient/issues/detail?id=3944>`_.
109 Pepper
110 ------
112 * Support for ``DEBUG_ONLY:dev://postmessage`` has been removed in favor of
113   :ref:`other more useful debugging approaches <devcycle-debugging>`.
114 * ``postMessageAndAwaitResponse`` is now stable and allows JavaScript to
115   `communicate synchronously
116   </native-client/pepper_stable/cpp/classpp_1_1_message_handler>`_ with PNaCl
117   embeds.
119 Chrome/Pepper 38 (15 August 2014)
120 =================================
122 PNaCl
123 -----
125 * Compilation speed improvements due to validation caching of the translator and
126   linker.
127 * Performance improvement of SIMD vector shuffle.
129 Chrome/Pepper 37 (20 June 2014)
130 ===============================
132 PNaCl
133 -----
135 * 2–10% translation time improvement.
136 * Improved vector load/store and shuffle performance.
138 Pepper
139 ------
141 * Media Streams Input support.
142 * Compositor API.
143 * Hardware Decode API in development preview.
144 * Sync API in development preview.
149 * Demo of a :ref:`full development environment in the browser <io2014>`.
151 Chrome/Pepper 36 (09 May 2014)
152 ==============================
154 PNaCl
155 -----
156 * Support `LLVM vectors
157   <http://clang.llvm.org/docs/LanguageExtensions.html#vectors-and-extended-vectors>`_
158   and `GCC vectors
159   <http://gcc.gnu.org/onlinedocs/gcc/Vector-Extensions.html>`_ for SIMD
160   vectors through :ref:`Portable SIMD Vectors
161   <portable_simd_vectors>`. Note that this is still an early release,
162   and performance is expected to become acceptable for version 37 of
163   Chrome. More SIMD instructions will be added in later releases.
165 Chrome/Pepper 35 (31 Mar 2014)
166 ==============================
168 PNaCl
169 -----
170 * Upgraded LLVM to version 3.4.
171 * Translation now uses dynamic load balancing, making translation time faster.
172 * Unstable pexes (i.e. non-finalized) with debug information can be loaded by
173   Chrome, simplifying debugging with PNaCl. See :ref:`Debugging PNaCl pexes
174   <debugging_pnacl_pexes>`
177 Chrome/Pepper 34 (20 Feb 2014)
178 ==============================
180 Pepper
181 ------
182 * Filesystems can now be passed from JavaScript to NaCl. The resulting
183   ``pp::Var`` will contain a ``pp::Resource`` that can be given to the
184   ``pp::FileSystem`` constructor.
185 * New Audio and Video input APIs have been added as dev interfaces. See
186   `pp::MediaStreamAudioTrack
187   </native-client/pepper_dev/cpp/classpp_1_1_media_stream_audio_track>`_ and
188   `pp::MediaStreamVideoTrack
189   </native-client/pepper_dev/cpp/classpp_1_1_media_stream_video_track>`_ for
190   more details.
192 PNaCl
193 -----
194 * Parallel translation: at least 1.7x faster, even with older pexes.
195 * Intelligent abbreviations in the bitcode: 20% reduction in binary size using
196   the :ref:`pnacl-compress <pnacl_compress>` tool.
198 Chrome/Pepper 33 (16 Dec 2013)
199 ==============================
201 Portable Native Client
202 ----------------------
204 * PNaCl's default C++ standard library is now LLVM's own libc++, based on
205   LLVM 3.3. This library now supports optional ``setjmp``/``longjmp`` exception
206   handling (see `announcement
207   <https://groups.google.com/forum/#!topic/native-client-discuss/0spfg6O04FM>`_
208   for details).
213 * The ``nacl_io`` library now includes a FUSE mount.
214 * In the SDK examples, ``common.js`` now loads the Release version of the
215   nexes/pexes that are built (by default).
216 * "``make debug``" and "``make run``" have been fixed on Mac.
218 PNaCl enabled by default in Chrome 31 (12 Nov 2013)
219 ===================================================
221 * Portable Native Client (PNaCl) is enabled by default in Chrome 31. See
222   :doc:`NaCl and PNaCl </nacl-and-pnacl>` for details on the differences between
223   NaCl and PNaCl.
224 * The PNaCl ABI has changed from the preview release in Chrome 30.
225   Pexe modules built with the ``pepper_30`` bundle in the SDK must be recompiled
226   with the ``pepper_31`` bundle or later.
227   As a general rule, we always recommended building applications with the latest
228   stable bundle in the Native Client SDK.
229   The PNaCl ABI will remain stable starting with the release of Chrome 31.
230 * Additional changes in the Chrome/Pepper 31 release:
232   * Updates to the Pepper API, including socket and network support
233   * Improved socket support in the ``nacl_io`` library
235 PNaCl in Chrome 30 Dev channel (01 Aug 2013)
236 ============================================
238 * Portable Native Client (PNaCl) is currently available for preview in Chrome
239   30 (currently in the Dev channel). Apps and sites built with PNaCl can run in
240   Chrome 30 without an explicit flag.
241 * See `Introduction to Portable Native Client
242   <http://www.chromium.org/nativeclient/pnacl/introduction-to-portable-native-client>`_
243   for information on developing for PNaCl. More documentation will be available
244   soon.
245 * Please note that the `PNaCl bitcode ABI
246   <http://www.chromium.org/nativeclient/pnacl/bitcode-abi>`_ may still change
247   before the official public release; if you're developing a PNaCl-based
248   application, be sure to build your code with the latest version of the Native
249   Client SDK.
250 * Update: PNaCl is not enabled by default in beta or stable versions of M30.
252 PNaCl (15 May 2013)
253 ===================
255 * Portable Native Client (PNaCl) is currently available for developer preview
256   in Chrome 29 or higher.
257 * To produce a PNaCl executable (.pexe) file, you must use the pnacl toolchain
258   in the current ``pepper_canary`` bundle. Chrome 29 does not support .pexe
259   files produced by earlier versions of the pnacl toolchain (that is,
260   executables compiled with the ``pepper_28`` bundle or earlier).
261 * To run an application with a PNaCl module, you must launch Chrome 29 with the
262   ``--enable-pnacl`` flag (for `Chrome apps </apps>`_), or the ``--enable-nacl``
263   flag (for other apps).
264 * When you launch Chrome with the ``--enable-pnacl`` flag, Chrome loads a PNaCl
265   translator in the background. Wait about a minute after you launch Chrome and
266   check `chrome://nacl <chrome://nacl>`_ to verify that the translator loaded.
267 * PNaCl translators are currently available for 32-bit x86, 64-bit x86, and ARM
268   architectures.
269 * PNaCl applications must use the newlib C library (glibc and dynamic linking
270   are not supported yet).
271 * The intermediate representation (IR) format may change prior to the release
272   of PNaCl. If so, you will need to recompile your application with the pnacl
273   toolchain in a new SDK bundle.
275 Pepper 27 (12 April 2013)
276 =========================
278 The Pepper 27 bundle features a significant number of new libraries that have
279 been incorporated directly into the SDK.
281 Libraries
282 ---------
284 * A number of libraries from the naclports project have been incorporated
285   directly into the Native Client SDK. These libraries include:
287   * image encoding/decoding: jpeg, tiff, png, webp
288   * multimedia: openal, freealut, ogg, vorbis
289   * XML parsing: tinyxml, xml2
290   * miscellaneous: zlib (general purpose compression), freetype (font
291     rendering), lua (Lua interpreter)
293   The libraries are located in ``ports/lib``, and the header files are in
294   ``ports/include``.
296 * The ``httpfs`` filesystem in the nacl_io library now caches content in memory
297   by default; this improves performance considerably.
298 * For applications compiled with a glibc toolchain, ``dlopen()`` can now be
299   used to open shared libraries that are not specified in an application's
300   Native Client manifest (.nmf) file. This allows applications, for example, to
301   download a shared object and then use ``dlopen()`` to access the shared
302   object.  The ``dlopen`` example has been modified to demonstrate this
303   functionality: reverse.cc is built into a shared object (.so) file, which is
304   downloaded and opened using an ``httpfs`` mount.
306 Examples
307 --------
309 * Each example now has a single ``index.html`` file, instead of multiple HTML
310   files corresponding to NaCl modules built using different toolchains and
311   configurations. By default, most examples are built using one toolchain
312   (newlib) and one configuration (Debug). If you build an example using
313   multiple toolchains or configurations, you can specify which version to run
314   in Chrome using the query parameters ``tc`` and ``config``. For example,
315   assuming you are serving an example from the local server localhost:5103, you
316   can run a version of the example built with the glibc toolchain in the
317   Release configuration by specifying the following URL in Chrome:
318   ``http://localhost:5103/index.html?tc=glibc&config=Release``. For additional
319   information about how different NaCl modules are loaded into ``index.html``,
320   see the ``common.js`` file in each example.
322 Build tools and toolchains
323 --------------------------
325 * Common makefiles, including ``tools/common.mk``, can now handle source files
326   located outside of an application's root directory. For example, a Makefile
327   for an application can specify a source file to compile such as
328   ``../../some/other/place.cpp``.
330 Pepper 26 (29 March 2013)
331 =========================
333 The Pepper 26 bundle includes a new HTTP filesystem type in the nacl_mounts
334 library (which has been renamed nacl_io), changes to the example Makefiles, a
335 simple new 3D example, and a threaded file IO example.
337 Build tools and toolchains
338 --------------------------
340 * Makefiles have been changed significantly:
342   * Build commands are now specified in a number of common files
343     (``tools/*.mk``), which are included in the Makefiles in the examples.
344   * By default, make displays a simplified list of build steps (e.g., ``CC
345     newlib/Debug/hello_world_x86_32.o``) rather than the actual build commands.
346     To see the actual build commands, run ``make V=1``.
347   * By default, most examples are built using one toolchain (newlib) and one
348     configuration (Debug). To build an example using a different toolchain or
349     configuration, run ``make`` with the parameters ``TOOLCHAIN=<x>`` or
350     ``CONFIG=<y>``.  You can also run make ``all_versions`` to build an example
351     with all toolchains.
353 * Header files have been moved out of the toolchains. All toolchains now share
354   the same set of header files as host builds. Previously host and NaCl builds
355   used different headers, which could cause build problems.
357 Libraries
358 ---------
360 * The nacl_mounts library has been renamed **nacl_io**, and has been expanded
361   with a new type of mount, httpfs, which can be used to read URLs via HTTP.
362   For details see ``include/nacl_io/nacl_io.h``, as well as the
363   ``hello_nacl_io`` example.
365 Examples
366 --------
368 * A new example, **hello_world_instance3d**, has been added to demonstrate a
369   simplified 3D app.
370 * The **file_io** example has been rewritten to do all file operations on a
371   thread.  The example demonstrates how to use the MessageLoop API and blocking
372   callbacks on a thread.
374 General
375 -------
377 * Old bundles (``pepper_20`` and earlier) have been removed from the Native
378   Client SDK Manifest, and will no longer be updated by the ``naclsdk``
379   command.
381 Pepper 25 (21 December 2012)
382 ============================
384 The Pepper 25 bundle features an ARM toolchain to build Native Client modules
385 for ARM devices, two new Pepper APIs (including the MessageLoop API, which lets
386 you make Pepper calls on background threads), two new libraries (nacl_mounts,
387 which provides a virtual file system that you can use with standard C file
388 operations, and ppapi_main, which lets you implement a Native Client module
389 using a simple ppapi_main function), and two new examples that demonstrate how
390 to use the nacl_mounts and ppapi_main libraries.
392 Build tools and toolchains
393 --------------------------
395 * The SDK includes a new toolchain to build Native Client executables (.nexe
396   files) for **ARM devices**.
398   * Currently the ARM toolchain can only be used to compile modules that use
399     the :ref:`newlib C library <c_libraries>`. You cannot use the ARM toolchain
400     to compile modules that use the glibc library.
401   * The ARM toolchain is in the directory
402     ``pepper_25/toolchain/<host>_arm_newlib``.  The bin subdirectory contains
403     the compiler (``arm-nacl-gcc``), the linker (``arm-nacl-g++``), and the
404     other tools in the toolchain.
405   * Take a look at the ``hello_world`` example to see how to use the ARM
406     toolchain. Go to ``examples/hello_world`` and run ``make``. When the build
407     finishes, the newlib/Debug and newlib/Release subdirectories will contain
408     .nexe files for the x86-32, x86-64, and ARM target architecutes, and a
409     Native Client manifest (.nmf file) that references those three .nexe files.
411 * The simple web server included in the SDK, ``httpd.py``, has been moved from
412   the ``examples/`` directory to the ``tools/`` directory. On Windows, you can
413   run ``httpd.cmd`` (in the ``examples/`` directory) to start the server.
415 PPAPI
416 -----
418 Pepper 25 includes two new APIs:
420 * The `Console API
421   </native-client/pepper_stable/c/struct_p_p_b___console__1__0>`_ lets your
422   module log messages to the JavaScript console in the Chrome browser.
423 * The `MessageLoop
424   </native-client/pepper_stable/cpp/classpp_1_1_message_loop>`_ API lets your
425   module make PPAPI calls on a background thread.  Once you've created a
426   message loop resource, attached it to a thread, and run it, you can post work
427   to the thread, including completion callbacks for asynchronous operations.
428   For a C++ example of how to use the MessageLoop API, see
429   ``pepper_25/include/ppapi/utility/threading/simple_thread.h``. Note that you
430   cannot make asynchronous PPAPI calls on a background thread without creating
431   and using a message loop.
433 Libraries
434 ---------
436 The SDK includes two new libraries:
438 * The **nacl_mounts** library provides a virtual file system that your module
439   can "mount" in a given directory tree. The file system can be one of several
440   types:
442   * "memfs" is an in-memory file system,
443   * "dev" is a file system with various utility nodes (e.g., ``/dev/null``,
444     ``/dev/console[0-3]``, ``/dev/tty``), and
445   * "html5fs" is a persistent file system.
447   Once you've mounted a file system in your module, you can use standard C
448   library file operations: fopen, fread, fwrite, fseek, and fclose. How those
449   operations are performed depends on the type of file system (e.g., for
450   html5fs, the operations are performed using the Pepper FileIO API). For a
451   list of the types of file systems you can mount, see
452   include/nacl_mounts/nacl_mounts.h. For an example of how to use nacl_mounts,
453   see examples/hello_nacl_mounts. Note that html5fs is subject to the same
454   constraints as persistent :ref:`local file IO <devguide-coding-fileio>` in
455   Chrome (for example, prior to using an html5fs file system, you must `enable
456   local file IO <enabling_file_access>`_).
458 * The **ppapi_main** library simplifies the creation of a NaCl module by
459   providing a familiar C programming environment. With this library, your
460   module can have a simple entry point called ppapi_main(), which is similar to
461   the standard C main() function, complete with argc and argv[] parameters.
462   Your module can also use standard C functions such as printf(), fopen(), and
463   fwrite(). For details see include/ppapi_main/ppapi_main.h. For an example of
464   how to use ppapi_main, see examples/hello_world_stdio.
466 Header files for the new libraries are in the ``include/`` directory, source
467 files are in the ``src/`` directory, and compiled libraries are in the ``lib/``
468 directory.
470 Examples
471 --------
473 * The SDK includes two new examples:
475   * **hello_nacl_mounts** illustrates how to use standard C library file
476     operations in a Native Client module through the use of the nacl_mounts
477     library.
478   * **hello_world_stdio** illustrates how to implement a Native Client module
479     with a ppapi_main() function, and how to write to STDOUT and STDERR in a
480     module, through the use of the nacl_mounts and ppapi_main libraries. This
481     example makes it easy for new users to get started with Native Client by
482     letting them start making changes in a familiar C environment.
484 * With a few exceptions, the Makefile for each example now builds the following
485   versions of each example:
487   * glibc toolchain: 32-bit and 64-bit .nexes for the x86 target architecture
488   * newlib toolchain: 32-bit and 64-bit .nexes for the x86 target architecture,
489     and ARM .nexe for the ARM architecture
490   * pnacl toolchain: .pexe (which is subsequently tranlsated to .nexes for the
491     x86-32, x86-64, and ARM architectures)
492   * hosted toolchain: .so or .dll (to be executed as a Pepper plug-in in
493     Chrome)
495 * Additionally, each version is built in both a Debug and a Release
496   configuration.
497 * The Makefile for each example includes two new targets: ``make RUN`` and
498   ``make LAUNCH``. These targets, which are interchangeable, launch a local
499   server and an instance of Chrome to run an example. When the instance of
500   Chrome is closed, the local server is shut down as well.
501 * The hello_world_stdio example includes a simplified Makefile that only lists
502   source dependencies, and invokes the build rules in a separate file
503   (common.mk).
505 Pepper 24 (5 December 2012)
506 ===========================
508 The Pepper 24 bundle features a new, experimental toolchain called PNaCl (short
509 for "Portable Native Client"), a new library (pthreads-win32) for the Windows
510 SDK, and an expanded list of attributes for Pepper 3D contexts that lets
511 applications specify a GPU preference for low power or performance.
513 Build tools and toolchains
514 --------------------------
516 * The SDK includes a new, experimental toolchain called `PNaCl
517   <http://nativeclient.googlecode.com/svn/data/site/pnacl.pdf>`_ (pronounced
518   "pinnacle"). The PNaCl toolchain produces architecture-independent executable
519   files (.pexe files). Chrome doesn't yet support .pexe files directly, but if
520   you want to experiment with this early preview of PNaCl, the toolchain
521   includes a tool to translate .pexe files into architecture-specific .nexe
522   files. Take a look at the ``hello_world`` example to see how to build a .pexe
523   file and translate it into multiple .nexe files. Note that PNaCl is currently
524   restricted to the newlib C standard library – if your application uses glibc,
525   you can't build it with PNaCl.
526 * The ``create_nmf.py`` script uses ELF headers (rather than file names) to
527   determine the architecture of .nexe files. That means you can change the
528   names of your .nexe files and ``create_nmf.py`` will still be able to
529   generate the appropriate Native Client manifest file for your application.
531 Examples
532 --------
534 * The SDK examples now build with four toolchains: the glibc and newlib
535   toolchains, the experimental PNaCl toolchain, and the hosted toolchain on
536   your development machine. Within each toolchain build, each example also
537   builds both a debug and a release version.
538 * The example Makefiles use dependency (.d) files to enable incremental builds.
539 * The pong example has been cleaned up and modified to run more smoothly. The
540   drawing function is now set up as the Flush() callback, which allows 2D
541   drawing to occur as quickly as possible.
543 PPAPI
544 -----
546 * When creating a 3D rendering context, the `attribute list
547   </native-client/pepper_stable/c/group___enums#ga7df48e1c55f6401beea2a1b9c07967e8>`_
548   for the context can specify whether to prefer low power or performance for
549   the GPU. Contexts with a low power preference may be created on an integrated
550   GPU; contexts with a performance preference may be created on a discrete GPU.
552 Windows SDK
553 -----------
555 * The Windows SDK includes the pthreads-win32 library to assist in porting from
556   win32 code. You can use this library when developing your module as a Pepper
557   plug-in (.dll). See pepper_24/include/win/pthread.h and
558   pepper_24/src/pthread/README for additional information.
559 * The update utility naclsdk.bat works when it is run from a path with spaces.
561 Pepper 23 (15 October 2012)
562 ===========================
564 The Pepper 23 bundle includes support for the nacl-gdb debugger on Mac and
565 32-bit Windows, resources to enable hosted development on Linux, and changes to
566 make the SDK examples compliant with version 2 of the Chrome Web Store manifest
567 file format.
569 Tools
570 -----
572 * The :ref:`nacl-gdb debugger <using_gdb>` now works on all systems (Mac,
573   Windows, and Linux).
575 * The output of the SDK update utility has been simplified. When you run the
576   command ``naclsdk list``, the utility displays one line for each available
577   bundle, annotated with an "``I``" if the bundle is already installed on your
578   system, and a "``*``" if the bundle has an update available. To see full
579   information about a bundle, use the command ``naclsdk info <bundle>`` (for
580   example, ``naclsdk info pepper_28``).
582 Linux SDK
583 ---------
585 * Developers using the Linux SDK now have resources, including pre-built
586   libraries and example Makefiles, that make it easier to **build a module as a
587   Pepper plugin** (sometimes called a "trusted" or "in-process" plugin) using
588   the native C/C++ compiler on their development system. In essence this makes
589   developing a Native Client module a two-step process:
591   #. Build the module into a shared library (.so file) using your system's
592      C/C++ compiler. Test and debug the .so file using the tools in your normal
593      development environment.
594   #. Build the module into a .nexe file using the compiler from one of the
595      Native Client toolchains in the SDK (nacl-gcc or nacl-g++). Test and debug
596      the .nexe file using nacl-gdb.
598   This two step development process has many benefits—in particular, you can
599   use the compilers, debuggers, profilers, and other tools that you're already
600   familiar with. But there are a few potential issues to keep in mind:
602   * Chrome uses different threading models for trusted plugins and Native
603     Client modules.
604   * Certain operations such as platform-specific library calls and system calls
605     may succeed during trusted development, but fail in Native Client.
607   Here are the resources you can use to build your module into a Pepper plugin:
609   * header files are in ``pepper_23/include``
610   * source files are in ``pepper_23/src``
611   * pre-built libraries are in ``pepper_23/lib``
613   You can now build and run most of the examples in the SDK as Pepper plugins.
615   * Look at the example Makefiles or run ``make`` in the example directories to
616     see the commands and flags used to build modules as Pepper plugins.
617   * Run ``make LAUNCH`` in the example directories to see how to use the
618     ``--register-pepper-plugins`` argument to load a Pepper plugin in Chrome.
619     Note that you must set the ``CHROME_PATH`` environment variable and start a
620     :ref:`local server <web_server>` prior to running this command.
622 Examples
623 --------
625 * On Linux and Windows systems, most of the examples now build with three
626   toolchains: the Native Client glibc and newlib toolchains, and the native
627   toolchain on the host system. Modules built with the native toolchain on the
628   host system can only run as Pepper plugins.
629 * All examples in the SDK now comply with version 2 of the Chrome Web Store
630   `manifest file format </extensions/manifest>`_. By default,
631   applications that use version 2 of the manifest file format apply a strict
632   `content security policy </extensions/contentSecurityPolicy>`_, which
633   includes a restriction against inline JavaScript. This restriction prohibits
634   both inline ``<script>`` blocks and inline event handlers (e.g., ``<button
635   onclick="...">``).  See `Manifest Version </extensions/manifestVersion>`_ for
636   a list of changes between version 1 and version 2 of the manifest file
637   format, and a support schedule for applications that use version 1.
639 PPAPI
640 -----
642 * `PP_InputEvent_Modifier
643   </native-client/pepper_stable/c/group___enums#ga21b811ac0484a214a8751aa3e1c959d9>`_
644   has two new enum values (_ISLEFT and _ISRIGHT).
645 * The memory leak in the `WebSocket
646   </native-client/pepper_stable/c/struct_p_p_b___web_socket__1__0>`_ API has
647   been fixed.
649 Pepper 22 (22 August 2012)
650 ==========================
652 The Pepper 22 bundle includes a **command-line debugger**, resources to enable
653 **hosted development on Windows**, and changes to the example Makefiles (each
654 example now builds both a debug and a release version).
656 Tools
657 -----
659 * The SDK now includes a **command-line debugger** that you can use to debug
660   Native Client modules. See :ref:`Debugging with nacl-gdb
661   <devcycle-debugging>` for instructions on how to use this debugger. For now,
662   nacl-gdb only works on 64-bit Windows, 64-bit Linux, and 32-bit Linux
663   systems. Support for Mac and 32-bit Windows systems will be added soon.
665 Windows SDK
666 -----------
668 * Developers using the Windows SDK can now **build a module as a Pepper
669   plugin** (sometimes called a "trusted" or "in-process" plugin) using the
670   native C/C++ compiler on their development system. In essence this makes
671   developing a Native Client module a two-step process:
673   #. Build the module into a DLL using your system's C/C++ compiler. Test and
674      debug the DLL using the tools in your normal development environment.
675   #. Build the module into a .nexe using the compiler from one of the Native
676      Client toolchains in the SDK (nacl-gcc or nacl-g++). Test and debug the
677      .nexe using nacl-gdb.
679   This two step development process has many benefits—in particular, you can
680   use the compilers, debuggers, profilers, and other tools that you're already
681   familiar with. But there are a few potential issues to keep in mind:
683   * Some libraries that are commonly used with Native Client may not build
684     easily on Windows.
685   * You may need to put in extra effort to get source code to compile with
686     multiple compilers, e.g., Microsoft Visual Studio and GCC.
687   * Chrome uses different threading models for trusted plugins and Native
688     Client modules.
689   * Certain operations such as platform-specific library calls and system calls
690     may succeed during trusted development, but fail in Native Client.
692   Here are the resources you can use to build your module into a DLL:
694   * header files are in ``pepper_22\include``
695   * source files are in ``pepper_22\src``
696   * pre-built libraries are in ``pepper_22\lib``
698 * A Visual Studio add-in will be available in the near future with
699   configurations that include platforms for both Pepper plugins and NaCl
700   modules.
702 .. Note::
703   :class: note
705   **Note:** It's also possible to build a module as a trusted plugin on Mac and
706   Linux systems, but doing so requires more work because the SDK does not yet
707   include the above resources (library source files and pre-built libraries)
708   for Mac and Linux systems. To build and debug a trusted plugin on Mac and
709   Linux systems, you need to `get the Chromium code
710   <http://dev.chromium.org/developers/how-tos/get-the-code>`_ and then follow
711   the `Mac instructions
712   <http://www.chromium.org/nativeclient/how-tos/debugging-documentation/debugging-a-trusted-plugin/trusted-debugging-on-mac>`_
713   or `Linux instructions
714   <http://www.chromium.org/nativeclient/how-tos/debugging-documentation/debugging-a-trusted-plugin/debugging-a-trusted-plugin-on-linux>`_.
715   In the future, the SDK will include resources for hosted development on Mac
716   and Linux as well as Windows.
718 Examples
719 --------
721 * Each example in the SDK now builds both a debug and a release version. As
722   before, most examples also build newlib and glibc versions, which means that
723   there are now four versions for each example. Take a look at the Makefiles in
724   the examples to see the compiler flags that are used for debug and release
725   versions. For a description of those flags, see :ref:`Compile flags for
726   different development scenarios <compile_flags>`.
727 * Comments have been added to common.js, which is used in all the examples. The
728   JavaScript in common.js inserts an <embed> element that loads the NaCl module
729   in each example's web page, attaches event listeners to monitor the loading
730   of the module, and implements handleMessage() to respond to messages sent
731   from the NaCl module to the JavaScript side of the application
733 PPAPI
734 -----
736 * The ``CompletionCallbackFactory`` class template now takes a thread traits
737   class as its second parameter. For details see the `CompletionCallbackFactory
738   class template reference
739   </native-client/pepper_stable/cpp/classpp_1_1_completion_callback_factory#details>`_.
741 .. TODO: Port release notes for older releases