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

Unified Diff: native_client_sdk/doc_generated/devguide/devcycle/dynamic-loading.html

Issue 1655873003: [NaCl SDK] Cleanup references to old newlib toolchain (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@add_pepper_50
Patch Set: Created 4 years, 11 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
Index: native_client_sdk/doc_generated/devguide/devcycle/dynamic-loading.html
diff --git a/native_client_sdk/doc_generated/devguide/devcycle/dynamic-loading.html b/native_client_sdk/doc_generated/devguide/devcycle/dynamic-loading.html
index 5ee1f1ad06e1575c4f3c21d2858f2de60fa4bb46..c486fb685243840769cd8ee207f8afd0e6ab412d 100644
--- a/native_client_sdk/doc_generated/devguide/devcycle/dynamic-loading.html
+++ b/native_client_sdk/doc_generated/devguide/devcycle/dynamic-loading.html
@@ -140,18 +140,22 @@ uses, even if the rest of an application is dynamically linked.</li>
</thead>
<tbody valign="top">
<tr class="row-even"><td>x86</td>
-<td>newlib</td>
-<td>toolchain/&lt;platform&gt;_x86_newlib</td>
-</tr>
-<tr class="row-odd"><td>x86</td>
<td>glibc</td>
<td>toolchain/&lt;platform&gt;_x86_glibc</td>
</tr>
-<tr class="row-even"><td>ARM</td>
+<tr class="row-odd"><td>ARM</td>
+<td>glibc</td>
+<td>toolchain/&lt;platform&gt;_arm_glibc</td>
+</tr>
+<tr class="row-even"><td>x86</td>
<td>newlib</td>
-<td>toolchain/&lt;platform&gt;_arm_newlib</td>
+<td>toolchain/&lt;platform&gt;_pnacl</td>
+</tr>
+<tr class="row-odd"><td>ARM</td>
+<td>newlib</td>
+<td>toolchain/&lt;platform&gt;_pnacl</td>
</tr>
-<tr class="row-odd"><td>PNaCl</td>
+<tr class="row-even"><td>PNaCl</td>
<td>newlib</td>
<td>toolchain/&lt;platform&gt;_pnacl</td>
</tr>
@@ -161,11 +165,10 @@ uses, even if the rest of an application is dynamically linked.</li>
machine (i.e., win, mac, or linux). For example, in the Windows SDK, the x86
toolchain that uses glibc is in <code>toolchain/win_x86_glibc</code>.</p>
<aside class="note">
-<strong>Note:</strong> The ARM and PNaCl toolchains are currently restricted to newlib.
+<strong>Note:</strong> The PNaCl toolchain is currently restricted to newlib.
</aside>
<p>To use the glibc library and dynamic linking in your application, you <strong>must</strong>
-use a glibc toolchain. (Currently the only glibc toolchain is
-<code>&lt;platform&gt;_x86_glibc</code>.) Note that you must build all code in your application
+use a glibc toolchain. Note that you must build all code in your application
with one toolchain. Code from multiple toolchains cannot be mixed.</p>
<h2 id="specifying-and-delivering-shared-libraries">Specifying and delivering shared libraries</h2>
<p>One significant difference between newlib and glibc applications is that glibc
@@ -226,8 +229,8 @@ to build x86 32-bit and 64-bit .nexe and .so files, and to generate a .nmf
file. These commands are described below.</p>
<aside class="note">
<strong>Note:</strong> The Makefiles for most of the examples in the SDK build the
-examples using multiple toolchains (x86 newlib, x86 glibc, ARM, and PNaCl).
-With a few exceptions (listed in the <a class="reference internal" href="/native-client/sdk/release-notes.html#sdk-release-notes"><em>Release Notes</em></a>), running &#8220;make&#8221; in each example&#8217;s directory builds
+examples using multiple toolchains (x86 newlib, x86 glibc, ARM newlib, ARM
+glibc, and PNaCl). With a few exceptions (listed in the <a class="reference internal" href="/native-client/sdk/release-notes.html#sdk-release-notes"><em>Release Notes</em></a>), running &#8220;make&#8221; in each example&#8217;s directory builds
multiple versions of the example using the SDK toolchains. The dlopen example
is one of those exceptions – it is only built with the x86 glibc toolchain,
as that is currently the only toolchain that supports glibc and thus dynamic

Powered by Google App Engine
This is Rietveld 408576698