OLD | NEW |
| 1 .. include:: /migration/deprecation.inc |
| 2 |
1 ###################################### | 3 ###################################### |
2 Dynamic Linking and Loading with glibc | 4 Dynamic Linking and Loading with glibc |
3 ###################################### | 5 ###################################### |
4 | 6 |
5 .. contents:: | 7 .. contents:: |
6 :local: | 8 :local: |
7 :backlinks: none | 9 :backlinks: none |
8 :depth: 2 | 10 :depth: 2 |
9 | 11 |
10 .. Note:: | 12 .. Note:: |
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 **undefined reference to 'dlopen' collect2: ld returned 1 exit status** | 431 **undefined reference to 'dlopen' collect2: ld returned 1 exit status** |
430 This is a linker ordering problem that usually results from improper ordering | 432 This is a linker ordering problem that usually results from improper ordering |
431 of command line flags when linking. Reconfigure your command line string to | 433 of command line flags when linking. Reconfigure your command line string to |
432 list libraries after the -o flag. | 434 list libraries after the -o flag. |
433 | 435 |
434 .. |menu-icon| image:: /images/menu-icon.png | 436 .. |menu-icon| image:: /images/menu-icon.png |
435 .. _objdump: http://en.wikipedia.org/wiki/Objdump | 437 .. _objdump: http://en.wikipedia.org/wiki/Objdump |
436 .. _GLIBC: http://www.gnu.org/software/libc/index.html | 438 .. _GLIBC: http://www.gnu.org/software/libc/index.html |
437 .. _POSIX: http://en.wikipedia.org/wiki/POSIX | 439 .. _POSIX: http://en.wikipedia.org/wiki/POSIX |
438 .. _newlib: http://sourceware.org/newlib/ | 440 .. _newlib: http://sourceware.org/newlib/ |
OLD | NEW |