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> |
"program": { |
"pnacl-translate": { |
// url is required |
- "url": "url_to_my_pexe" |
+ "url": "url_to_my_pexe", |
+ |
+ // optlevel is optional |
+ "optlevel": 2 |
+ }, |
+ // pnacl-debug is optional |
+ "pnacl-debug": { |
+ // url is required |
+ "url": "url_to_my_bitcode_bc", |
// optlevel is optional |
"optlevel": 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"> |