| OLD | NEW |
| 1 .. _nacl-and-pnacl: | 1 .. _nacl-and-pnacl: |
| 2 | 2 |
| 3 .. include:: /migration/deprecation.inc |
| 4 |
| 3 ############## | 5 ############## |
| 4 NaCl and PNaCl | 6 NaCl and PNaCl |
| 5 ############## | 7 ############## |
| 6 | 8 |
| 7 This document describes the differences between **Native Client** and | 9 This document describes the differences between **Native Client** and |
| 8 **Portable Native Client**, and provides recommendations for when to use each. | 10 **Portable Native Client**, and provides recommendations for when to use each. |
| 9 | 11 |
| 10 .. contents:: | 12 .. contents:: |
| 11 :local: | 13 :local: |
| 12 :backlinks: none | 14 :backlinks: none |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 example, inline assembly. PNaCl tries to offer high-performance portable | 106 example, inline assembly. PNaCl tries to offer high-performance portable |
| 105 equivalents. One such example is PNaCl's :ref:`Portable SIMD Vectors | 107 equivalents. One such example is PNaCl's :ref:`Portable SIMD Vectors |
| 106 <portable_simd_vectors>`. | 108 <portable_simd_vectors>`. |
| 107 * Your application uses dynamic linking. PNaCl only supports static linking | 109 * Your application uses dynamic linking. PNaCl only supports static linking |
| 108 with a PNaCl port of the ``newlib`` C standard library. Dynamic linking and | 110 with a PNaCl port of the ``newlib`` C standard library. Dynamic linking and |
| 109 ``glibc`` are not yet supported in PNaCl. Work is under way to enable dynamic | 111 ``glibc`` are not yet supported in PNaCl. Work is under way to enable dynamic |
| 110 linking in future versions of PNaCl. | 112 linking in future versions of PNaCl. |
| 111 * Your application uses certain GNU extensions not supported by PNaCl's LLVM | 113 * Your application uses certain GNU extensions not supported by PNaCl's LLVM |
| 112 toolchain, like taking the address of a label for computed ``goto``, or nested | 114 toolchain, like taking the address of a label for computed ``goto``, or nested |
| 113 functions. | 115 functions. |
| OLD | NEW |