Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>On Linux, you can use <code>ldconfig</code>, which maintains the ld.so configuration and cache, to print out the directories search by <code>ld.so</code> with</p> <pre><code>ldconfig -v 2&gt;/dev/null | grep -v ^$'\t' </code></pre> <p><code>ldconfig -v</code> prints out the directories search by the linker (without a leading tab) and the shared libraries found in those directories (with a leading tab); the <code>grep</code> gets the directories. On my machine, this line prints out</p> <pre><code>/usr/lib64/atlas: /usr/lib/llvm: /usr/lib64/llvm: /usr/lib64/mysql: /usr/lib64/nvidia: /usr/lib64/tracker-0.12: /usr/lib/wine: /usr/lib64/wine: /usr/lib64/xulrunner-2: /lib: /lib64: /usr/lib: /usr/lib64: /usr/lib64/nvidia/tls: (hwcap: 0x8000000000000000) /lib/i686: (hwcap: 0x0008000000000000) /lib64/tls: (hwcap: 0x8000000000000000) /usr/lib/sse2: (hwcap: 0x0000000004000000) /usr/lib64/tls: (hwcap: 0x8000000000000000) /usr/lib64/sse2: (hwcap: 0x0000000004000000) </code></pre> <p>The first paths, without <code>hwcap</code> in the line, are either built-in or read from /etc/ld.so.conf. The linker can then search additional directories under the basic library search path, with names like <code>sse2</code> corresponding to additional CPU capabilities. These paths, with <code>hwcap</code> in the line, can contain additional libraries tailored for these CPU capabilities.</p> <p>One final note: using <code>-p</code> instead of <code>-v</code> above searches the <code>ld.so</code> cache instead.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload