<?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: aCC runtime: Error 215 from shl_findsy in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879088#M99072</link>
    <description>&amp;gt;I am able to solve my problem.&lt;BR /&gt;&lt;BR /&gt;Can you assign points?</description>
    <pubDate>Tue, 17 Oct 2006 01:09:05 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2006-10-17T01:09:05Z</dc:date>
    <item>
      <title>aCC runtime: Error 215 from shl_findsy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879081#M99065</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I have compuiled my source code on HPUX11 using aCC without any problem. But when i am try using this compiled shared library in application. it is giving following error.&lt;BR /&gt;&lt;BR /&gt;aCC runtime: Error 215 from shl_findsym(/usr/app/infa/infa7/hp_32/server/libfldbsocketu.sl,_shlInit)&lt;BR /&gt;/usr/lib/dld.sl: Unresolved symbol: typeid__XTQ2_3std9exception_ (data)  from /usr/app/infa/infa7/hp_32/server/libfldbsocketu.sl&lt;BR /&gt;/usr/lib/dld.sl: Unresolved symbol: set__13ACE_INET_AddrFUsPCciT3 (code)  from /usr/app/infa/infa7/hp_32/server/libfldbsocketu.sl&lt;BR /&gt;/usr/lib/dld.sl: Unresolved symbol: connect__18ACE_SOCK_ConnectorFR15ACE_SOCK_StreamRC8ACE_AddrPC14ACE_Time_ValueT2iN35 (code)  from /usr/app/infa/infa7/hp_32/server/libfldbsocketu.sl&lt;BR /&gt;/usr/lib/dld.sl: Unresolved symbol: set_address__13ACE_INET_AddrFPCciN22 (code)  from /usr/app/infa/infa7/hp_32/server/libfldbsocketu.sl&lt;BR /&gt;/usr/lib/dld.sl: Unresolved symbol: __dt__Q2_3std9exceptionFv (code)  from /usr/app/infa/infa7/hp_32/server/libfldbsocketu.sl&lt;BR /&gt;/usr/lib/dld.sl: Unresolved symbol: last_error_adapter__11ACE_Log_MsgSFv (code)  from /usr/app/infa/infa7/hp_32/server/libfldbsocketu.sl&lt;BR /&gt;/usr/lib/dld.sl: Unresolved symbol: sprintf__6ACE_OSFPcPCce (code)  from /usr/app/infa/infa7/hp_32/server/libfldbsocketu.sl&lt;BR /&gt;/usr/lib/dld.sl: Unresolved symbol: __ct__13ACE_INET_AddrFUsPCci (code)  from /usr/app/infa/infa7/hp_32/server/libfldbsocketu.sl&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Can any one knows whats wrong here&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Ashin</description>
      <pubDate>Thu, 12 Oct 2006 07:47:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879081#M99065</guid>
      <dc:creator>Ashin</dc:creator>
      <dc:date>2006-10-12T07:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: aCC runtime: Error 215 from shl_findsy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879082#M99066</link>
      <description>The error message said while initializing the shared lib, there were unsats.  You can use c++filt to demangle them:&lt;BR /&gt;typeid&amp;lt;:exception&amp;gt;&lt;BR /&gt;ACE_INET_Addr::set(unsigned short,const char*,int,int)&lt;BR /&gt;ACE_SOCK_Connector::connect(ACE_SOCK_Stream&amp;amp;,const ACE_Addr&amp;amp;,const ACE_Time_Value*,const ACE_Addr&amp;amp;,int,int,int,int)&lt;BR /&gt;ACE_INET_Addr::set_address(const char*,int, int,int)&lt;BR /&gt;std::exception::~exception()&lt;BR /&gt; static ACE_Log_Msg::last_error_adapter()&lt;BR /&gt; ACE_OS::sprintf(char*,const char*,...)&lt;BR /&gt;ACE_INET_Addr::ACE_INET_Addr(unsigned short, const char*,int)&lt;BR /&gt;&lt;BR /&gt;Several symbols have "std::", so did you compile everything with -AA?&lt;BR /&gt;&lt;BR /&gt;To search for the other symbols, you could use: nm -pxAN * | fgrep mangled-name</description>
      <pubDate>Thu, 12 Oct 2006 18:07:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879082#M99066</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2006-10-12T18:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: aCC runtime: Error 215 from shl_findsy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879083#M99067</link>
      <description>I have not used -AA option while compilation.&lt;BR /&gt;&lt;BR /&gt;is it really required to use -AA option.?&lt;BR /&gt;&lt;BR /&gt;What it used for and how it will solve ny problem .Can you explain me in detail???&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Oct 2006 03:50:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879083#M99067</guid>
      <dc:creator>Ashin</dc:creator>
      <dc:date>2006-10-13T03:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: aCC runtime: Error 215 from shl_findsy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879084#M99068</link>
      <description>&amp;gt;I have not used -AA option while compilation.&lt;BR /&gt;&lt;BR /&gt;The library libfldbsocketu.sl has been compiled with -AA.  You need to compile everything consistently, you can't mix and match -AP and -AA.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h21007.www2.hp.com/dspp/tech/tech_TechDocumentDetailPage_IDX/1,1701,5520,00.html" target="_blank"&gt;http://h21007.www2.hp.com/dspp/tech/tech_TechDocumentDetailPage_IDX/1,1701,5520,00.html&lt;/A&gt;</description>
      <pubDate>Fri, 13 Oct 2006 15:32:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879084#M99068</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2006-10-13T15:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: aCC runtime: Error 215 from shl_findsy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879085#M99069</link>
      <description>Earlier my shared library was not compiled with -AA.Now, i have compiled and linked using -AA option, but still giving me same problem.&lt;BR /&gt;&lt;BR /&gt;Please help me , why it is happening&lt;BR /&gt;????????????/</description>
      <pubDate>Mon, 16 Oct 2006 04:32:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879085#M99069</guid>
      <dc:creator>Ashin</dc:creator>
      <dc:date>2006-10-16T04:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: aCC runtime: Error 215 from shl_findsy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879086#M99070</link>
      <description>If you can't recompile libfldbsocketu.sl with -AP, your WHOLE (C++ parts) application must be compiled with -AA.&lt;BR /&gt;&lt;BR /&gt;NOTE: -AA only solves the two symbols with std, you'll have to figure out why those other unsats are there.</description>
      <pubDate>Mon, 16 Oct 2006 14:35:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879086#M99070</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2006-10-16T14:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: aCC runtime: Error 215 from shl_findsy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879087#M99071</link>
      <description>Thanks very much Dennis,&lt;BR /&gt;&lt;BR /&gt;I am able to solve my problem.&lt;BR /&gt;Just i search for the unresolved symbols using " nm -pxAN * | fgrep mangled-name".&lt;BR /&gt;and took appropriate file for that.&lt;BR /&gt;&lt;BR /&gt;After all ,, Hurrayyyyyyy&lt;BR /&gt;&lt;BR /&gt;Its resolve&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Ashin</description>
      <pubDate>Tue, 17 Oct 2006 00:51:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879087#M99071</guid>
      <dc:creator>Ashin</dc:creator>
      <dc:date>2006-10-17T00:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: aCC runtime: Error 215 from shl_findsy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879088#M99072</link>
      <description>&amp;gt;I am able to solve my problem.&lt;BR /&gt;&lt;BR /&gt;Can you assign points?</description>
      <pubDate>Tue, 17 Oct 2006 01:09:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879088#M99072</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2006-10-17T01:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: aCC runtime: Error 215 from shl_findsy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879089#M99073</link>
      <description>Done, point assigned!!!!!!!Enjoy</description>
      <pubDate>Tue, 17 Oct 2006 01:22:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-runtime-error-215-from-shl-findsy/m-p/3879089#M99073</guid>
      <dc:creator>Ashin</dc:creator>
      <dc:date>2006-10-17T01:22:10Z</dc:date>
    </item>
  </channel>
</rss>

