<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ldd shows multiple link to same shared libraries in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/ldd-shows-multiple-link-to-same-shared-libraries/m-p/3779699#M92305</link>
    <description>&amp;gt;Is it a linker issue, or just an option issue?&lt;BR /&gt;&lt;BR /&gt;Clay's right.  It is a developer design decision.  If you want your lib to be used as a plugin, you need to attach all of the shlibs you need to your lib.  Especially if you don't know how the application is linked.&lt;BR /&gt;&lt;BR /&gt;You can use chatr(1) on each shlib to see their dependent shlibs.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;4 libc.so.1 =&amp;gt; /usr/lib/hpux64/libc.so.1&lt;BR /&gt;&lt;BR /&gt;This is plain broken.  Only the executable should be linked against libc and it should always be present.&lt;BR /&gt;&lt;BR /&gt;Note: dlopen has a bunch of fancy-smancy options that may require duplication.&lt;BR /&gt;&lt;BR /&gt;You haven't assigned any points yet in a year for your 3 threads.  Please read:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/pageList.do?userId=CA1109764&amp;amp;listType=unassigned&amp;amp;forumId=1" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/pageList.do?userId=CA1109764&amp;amp;listType=unassigned&amp;amp;forumId=1&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You can reopen your recent thread and assign points with:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#41" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#41&lt;/A&gt;</description>
    <pubDate>Sat, 27 Oct 2007 18:10:06 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2007-10-27T18:10:06Z</dc:date>
    <item>
      <title>ldd shows multiple link to same shared libraries</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ldd-shows-multiple-link-to-same-shared-libraries/m-p/3779697#M92303</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;On HPUX Itanium 11.23 system, ldd shows multiple links to same libraries.&lt;BR /&gt;&lt;BR /&gt;Is it a linker issue, or just an option issue?&lt;BR /&gt;&lt;BR /&gt;$ ldd temip_framework_am | sort | uniq -c | sort -n&lt;BR /&gt;    1    /usr/opt/temip/lib//libwtc9.so =&amp;gt;&lt;BR /&gt; /usr/opt/temip/lib//libwtc9.so&lt;BR /&gt;....&lt;BR /&gt;    1    libxti.so.1 =&amp;gt;  /usr/lib/hpux64/libxti.so.1&lt;BR /&gt;    2    libm.so.1 =&amp;gt;    /usr/lib/hpux64/libm.so.1&lt;BR /&gt;    2    libstd_v2.so.1 =&amp;gt;       /usr/lib/hpux64/libstd_v2.so.1&lt;BR /&gt;    3    libCsup.so.1 =&amp;gt; /usr/lib/hpux64/libCsup.so.1&lt;BR /&gt;    3    libnsl.so.1 =&amp;gt;  /usr/lib/hpux64/libnsl.so.1&lt;BR /&gt;    3    libunwind.so.1 =&amp;gt;       /usr/lib/hpux64/libunwind.so.1&lt;BR /&gt;    4    libc.so.1 =&amp;gt;    /usr/lib/hpux64/libc.so.1&lt;BR /&gt;    4    libdl.so.1 =&amp;gt;   /usr/lib/hpux64/libdl.so.1&lt;BR /&gt;   4    libpthread.so.1 =&amp;gt;      /usr/lib/hpux64/libpthread.so.1&lt;BR /&gt;&lt;BR /&gt;HPUX Patches:&lt;BR /&gt;-------------&lt;BR /&gt;BUNDLE11i                             B.11.23.0409.3 Required Patch Bundle for HP-UX 11i v2 (B.11.23), September 2004 &lt;BR /&gt;&lt;BR /&gt;B3913DB                               C.11.23.09     HP aC++ Compiler (S800) &lt;BR /&gt;PHSS_33350                            1.0            aC++ Runtime (IA: A.06.05, PA: A.03.65) &lt;BR /&gt;PHSS_34047                            1.0            aC++ Compiler (A.06.06) &lt;BR /&gt;</description>
      <pubDate>Fri, 28 Apr 2006 11:02:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ldd-shows-multiple-link-to-same-shared-libraries/m-p/3779697#M92303</guid>
      <dc:creator>Alain H.</dc:creator>
      <dc:date>2006-04-28T11:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: ldd shows multiple link to same shared libraries</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ldd-shows-multiple-link-to-same-shared-libraries/m-p/3779698#M92304</link>
      <description>Probably neither; it's not all that uncommon.&lt;BR /&gt;&lt;BR /&gt;Add the -v option to ldd and you will get more data. Basically you will find that some functions are required directly by the program itself and others are required indirectly by functions in other libraries.&lt;BR /&gt;These are not mutually exclusive events.&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Apr 2006 11:41:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ldd-shows-multiple-link-to-same-shared-libraries/m-p/3779698#M92304</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-04-28T11:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: ldd shows multiple link to same shared libraries</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ldd-shows-multiple-link-to-same-shared-libraries/m-p/3779699#M92305</link>
      <description>&amp;gt;Is it a linker issue, or just an option issue?&lt;BR /&gt;&lt;BR /&gt;Clay's right.  It is a developer design decision.  If you want your lib to be used as a plugin, you need to attach all of the shlibs you need to your lib.  Especially if you don't know how the application is linked.&lt;BR /&gt;&lt;BR /&gt;You can use chatr(1) on each shlib to see their dependent shlibs.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;4 libc.so.1 =&amp;gt; /usr/lib/hpux64/libc.so.1&lt;BR /&gt;&lt;BR /&gt;This is plain broken.  Only the executable should be linked against libc and it should always be present.&lt;BR /&gt;&lt;BR /&gt;Note: dlopen has a bunch of fancy-smancy options that may require duplication.&lt;BR /&gt;&lt;BR /&gt;You haven't assigned any points yet in a year for your 3 threads.  Please read:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/pageList.do?userId=CA1109764&amp;amp;listType=unassigned&amp;amp;forumId=1" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/pageList.do?userId=CA1109764&amp;amp;listType=unassigned&amp;amp;forumId=1&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You can reopen your recent thread and assign points with:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#41" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#41&lt;/A&gt;</description>
      <pubDate>Sat, 27 Oct 2007 18:10:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ldd-shows-multiple-link-to-same-shared-libraries/m-p/3779699#M92305</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-10-27T18:10:06Z</dc:date>
    </item>
  </channel>
</rss>

