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

Unified Diff: native_client_sdk/doc_generated/devguide/tutorial/tutorial-part2.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/tutorial/tutorial-part2.html
diff --git a/native_client_sdk/doc_generated/devguide/tutorial/tutorial-part2.html b/native_client_sdk/doc_generated/devguide/tutorial/tutorial-part2.html
index 750d6943da60cb074993738166a401b4e42e49ae..02e3dcea675c37f27bf37454893155ae2167812b 100644
--- a/native_client_sdk/doc_generated/devguide/tutorial/tutorial-part2.html
+++ b/native_client_sdk/doc_generated/devguide/tutorial/tutorial-part2.html
@@ -57,7 +57,7 @@ significantly increasing the complexity of the makefile.</p>
<p>Here is the new makefile, supporting three toolchains (PNaCl, Newlib NaCl,
Glibc NaCl) and two configurations (Debug, Release).</p>
<pre class="prettyprint">
-VALID_TOOLCHAINS := pnacl newlib glibc
+VALID_TOOLCHAINS := pnacl clang-newlib glibc
NACL_SDK_ROOT ?= $(abspath $(CURDIR)/../..)
include $(NACL_SDK_ROOT)/tools/common.mk
@@ -90,9 +90,10 @@ for its examples and libraries, but generally you will choose one toolchain
when you begin your project and never change it. Please see the
<a class="reference internal" href="/native-client/overview.html#toolchains"><em>Toolchains section of the Native Client overview</em></a> for more
information.</p>
-<p>For this example, we support the <code>pnacl</code>, <code>newlib</code> and <code>glibc</code> toolchains.</p>
+<p>For this example, we support the <code>pnacl</code>, <code>clang-newlib</code> and <code>glibc</code>
+toolchains.</p>
<pre class="prettyprint">
-VALID_TOOLCHAINS := pnacl newlib glibc
+VALID_TOOLCHAINS := pnacl clang-newlib glibc
</pre>
<p>Next, as a convenience, we specify where to find <code>NACL_SDK_ROOT</code>. Because
this example is located in <code>pepper_$(VERSION)/getting_started/part2</code>, the
@@ -244,7 +245,7 @@ to the body element to specify the name, supported toolchains, supported
configurations, and path to the <code>.nmf</code> file:</p>
<pre class="prettyprint">
&lt;body data-name=&quot;part2&quot;
- data-tools=&quot;newlib glibc pnacl&quot;
+ data-tools=&quot;clang-newlib glibc pnacl&quot;
data-configs=&quot;Debug Release&quot;
data-path=&quot;{tc}/{config}&quot;&gt;
...

Powered by Google App Engine
This is Rietveld 408576698