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

Unified Diff: native_client_sdk/doc_generated/reference/nacl-manifest-format.html

Issue 217683002: Add documentation about how to debug non-stable PNaCl pexes in Pepper 35. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 6 years, 9 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/reference/nacl-manifest-format.html
diff --git a/native_client_sdk/doc_generated/reference/nacl-manifest-format.html b/native_client_sdk/doc_generated/reference/nacl-manifest-format.html
index 8165c0c12b9faeb4150e0d386506af3111a3ab5c..d35f416e3d05ebf53822e0cf8b1c9dffc657e72e 100644
--- a/native_client_sdk/doc_generated/reference/nacl-manifest-format.html
+++ b/native_client_sdk/doc_generated/reference/nacl-manifest-format.html
@@ -63,7 +63,15 @@ section for the rules on URL resolution.</p>
&quot;program&quot;: {
&quot;pnacl-translate&quot;: {
// url is required
- &quot;url&quot;: &quot;url_to_my_pexe&quot;
+ &quot;url&quot;: &quot;url_to_my_pexe&quot;,
+
+ // optlevel is optional
+ &quot;optlevel&quot;: 2
+ },
+ // pnacl-debug is optional
+ &quot;pnacl-debug&quot;: {
+ // url is required
+ &quot;url&quot;: &quot;url_to_my_bitcode_bc&quot;,
// optlevel is optional
&quot;optlevel&quot;: 0
@@ -82,6 +90,10 @@ as first load speed, an application could specify an <code>optlevel</code>
of <code>0</code>. Note that <code>optlevel</code> is only a <em>hint</em>. In the future, the
Portable Native Client translator and runtime may <em>automatically</em> choose
an <code>optlevel</code> to best balance load time and application performance.</p>
+<p>A <code>pnacl-debug</code> section can specify an unfinalized pnacl llvm bitcode file
+for debugging. The <code>url</code> provided in this section will be used when Native
+Client debugging is enabled with either the <code>--enable-nacl-debug</code> Chrome
+command line switch, or via <code>about://flags</code>.</p>
</section><section id="example-of-a-program-for-statically-linked-native-client-executables">
<h4 id="example-of-a-program-for-statically-linked-native-client-executables">Example of a <code>program</code> for statically linked Native Client executables</h4>
<pre class="prettyprint">

Powered by Google App Engine
This is Rietveld 408576698