OLD | NEW |
1 {{+bindTo:partials.standard_nacl_article}} | 1 {{+bindTo:partials.standard_nacl_article}} |
2 | 2 |
3 <section id="dynamic-linking-and-loading-with-glibc"> | 3 <b><font color="#cc0000"> |
| 4 NOTE: |
| 5 Deprecation of the technologies described here has been announced |
| 6 for platforms other than ChromeOS.<br/> |
| 7 Please visit our |
| 8 <a href="/native-client/migration">migration guide</a> |
| 9 for details. |
| 10 </font></b> |
| 11 <hr/><section id="dynamic-linking-and-loading-with-glibc"> |
4 <h1 id="dynamic-linking-and-loading-with-glibc">Dynamic Linking and Loading with
glibc</h1> | 12 <h1 id="dynamic-linking-and-loading-with-glibc">Dynamic Linking and Loading with
glibc</h1> |
5 <div class="contents local" id="contents" style="display: none"> | 13 <div class="contents local" id="contents" style="display: none"> |
6 <ul class="small-gap"> | 14 <ul class="small-gap"> |
7 <li><a class="reference internal" href="#c-standard-libraries-glibc-and-newlib"
id="id1">C standard libraries: glibc and newlib</a></li> | 15 <li><a class="reference internal" href="#c-standard-libraries-glibc-and-newlib"
id="id1">C standard libraries: glibc and newlib</a></li> |
8 <li><a class="reference internal" href="#sdk-toolchains" id="id2">SDK toolchains
</a></li> | 16 <li><a class="reference internal" href="#sdk-toolchains" id="id2">SDK toolchains
</a></li> |
9 <li><p class="first"><a class="reference internal" href="#specifying-and-deliver
ing-shared-libraries" id="id3">Specifying and delivering shared libraries</a></p
> | 17 <li><p class="first"><a class="reference internal" href="#specifying-and-deliver
ing-shared-libraries" id="id3">Specifying and delivering shared libraries</a></p
> |
10 <ul class="small-gap"> | 18 <ul class="small-gap"> |
11 <li><a class="reference internal" href="#building-a-dynamically-linked-applicati
on" id="id4">Building a dynamically linked application</a></li> | 19 <li><a class="reference internal" href="#building-a-dynamically-linked-applicati
on" id="id4">Building a dynamically linked application</a></li> |
12 <li><a class="reference internal" href="#generating-a-native-client-manifest-fil
e-for-a-dynamically-linked-application" id="id5">Generating a Native Client mani
fest file for a dynamically linked application</a></li> | 20 <li><a class="reference internal" href="#generating-a-native-client-manifest-fil
e-for-a-dynamically-linked-application" id="id5">Generating a Native Client mani
fest file for a dynamically linked application</a></li> |
13 <li><a class="reference internal" href="#deploying-a-dynamically-linked-applicat
ion" id="id6">Deploying a dynamically linked application</a></li> | 21 <li><a class="reference internal" href="#deploying-a-dynamically-linked-applicat
ion" id="id6">Deploying a dynamically linked application</a></li> |
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 in the .nmf file – either the files are the wrong type or kind, or an | 424 in the .nmf file – either the files are the wrong type or kind, or an |
417 expected library is missing.</dd> | 425 expected library is missing.</dd> |
418 <dt><strong>undefined reference to ‘dlopen’ collect2: ld returned 1
exit status</strong></dt> | 426 <dt><strong>undefined reference to ‘dlopen’ collect2: ld returned 1
exit status</strong></dt> |
419 <dd>This is a linker ordering problem that usually results from improper orderin
g | 427 <dd>This is a linker ordering problem that usually results from improper orderin
g |
420 of command line flags when linking. Reconfigure your command line string to | 428 of command line flags when linking. Reconfigure your command line string to |
421 list libraries after the -o flag.</dd> | 429 list libraries after the -o flag.</dd> |
422 </dl> | 430 </dl> |
423 </section> | 431 </section> |
424 | 432 |
425 {{/partials.standard_nacl_article}} | 433 {{/partials.standard_nacl_article}} |
OLD | NEW |