<?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: /usr/ccs/bin/ld: Unsatisfied Symbols in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493587#M704889</link>
    <description>Hi Stephen,&lt;BR /&gt;&lt;BR /&gt; The paths are rightly set .. but I could not check the value of those variables like&lt;BR /&gt;CONFIGURATIONAPI,COLLECTIONAPI,EVENTAPI, by echo $CONFIGURATIONAPI.&lt;BR /&gt;&lt;BR /&gt;But PROC_FLAGS = CODE=CPP CPP_SUFFIX=cc&lt;BR /&gt;&lt;BR /&gt;is correct ,otherwise syntax errors are coming.&lt;BR /&gt;</description>
    <pubDate>Tue, 01 Mar 2005 01:08:44 GMT</pubDate>
    <dc:creator>soumya das</dc:creator>
    <dc:date>2005-03-01T01:08:44Z</dc:date>
    <item>
      <title>/usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493573#M704875</link>
      <description>This is the error I am getting while running a makefile to create an executable file.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;/usr/ccs/bin/ld: Unsatisfied symbols:&lt;BR /&gt;   RWCollectable::RWCollectable()%2 (first referenced in AlertCollectionManager.o) (code)&lt;BR /&gt;   RWCollectable::saveGuts(RWFile &amp;amp;) const (first referenced in AlertEntry.o) (code)&lt;BR /&gt;   ConfigurationFileManager::initialize(char *,char *) (first referenced in EventInterfaceServer.o) (code)&lt;BR /&gt;   RWCollectable::hash() const (first referenced in AlertEntry.o) (code)&lt;BR /&gt;   RWCollectable::restoreGuts(RWFile &amp;amp;) (first referenced in AlertEntry.o) (code)&lt;BR /&gt;   AlertDBConnectionManager::enableUserSubscribedAlerts(AlertCollectionManager *,char *) (first referenced in EventInterfaceServer.)&lt;BR /&gt;   AlertDBConnectionManager::AlertDBConnectionManager(char *,char *,char *) (first referenced in EventInterfaceServer.o) (code)&lt;BR /&gt;   RWCollectable::restoreGuts(RWvistream &amp;amp;) (first referenced in AlertEntry.o) (code)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; I have checked withn the corresponding header files where the definitions of these functions exist. So, all the functions for which "Unsatisfied Error" is coming are defined .. still the error is occuring .&lt;BR /&gt;&lt;BR /&gt; Can anyone help?&lt;BR /&gt;&lt;BR /&gt;--regards&lt;BR /&gt;soumya</description>
      <pubDate>Fri, 25 Feb 2005 09:27:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493573#M704875</guid>
      <dc:creator>soumya das</dc:creator>
      <dc:date>2005-02-25T09:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493574#M704876</link>
      <description>This has nothing to do with header files; you need to add libraries and/or object files to your make definitions. Ld is the linker.</description>
      <pubDate>Fri, 25 Feb 2005 09:37:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493574#M704876</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-02-25T09:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493575#M704877</link>
      <description>Hello again,&lt;BR /&gt;&lt;BR /&gt;it looks like you need to link in some RogueWave? libraries. You have included the header files, but also ned to link in the corresponding library or libraries.</description>
      <pubDate>Fri, 25 Feb 2005 09:45:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493575#M704877</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-02-25T09:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493576#M704878</link>
      <description>Hi stephen,&lt;BR /&gt;&lt;BR /&gt; I have included the libraries as well as the object (.o) files in th LD Flag option.&lt;BR /&gt;&lt;BR /&gt; One of the make file is running fine.&lt;BR /&gt;&lt;BR /&gt; But the other one is giving some warning like :&lt;BR /&gt;&lt;BR /&gt; aCC: warning 901: unknown option: `-AlertDBConnectionManager.o': use +help for online documentation. &lt;BR /&gt;&lt;BR /&gt; There are as many warning as there are object files included with the LD Flag options.    &lt;BR /&gt;  Can u suggest anything ?&lt;BR /&gt;&lt;BR /&gt;  I am attatching the output of running the makefile.&lt;BR /&gt;  &lt;BR /&gt;</description>
      <pubDate>Sat, 26 Feb 2005 03:41:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493576#M704878</guid>
      <dc:creator>soumya das</dc:creator>
      <dc:date>2005-02-26T03:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493577#M704879</link>
      <description>It looks like the makefile is wrong. It is prefixing the name of the object file with a '-', which the compiler thinks is a flag, so instead of including (for example) AlertDBConnectionManager.o in the link stage, it is treating it as -A (flag) -l(flag) etc, which makes no sense.&lt;BR /&gt;&lt;BR /&gt;Can you post the makefile itself?</description>
      <pubDate>Mon, 28 Feb 2005 04:16:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493577#M704879</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-02-28T04:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493578#M704880</link>
      <description>Hi Stephen,&lt;BR /&gt;&lt;BR /&gt; The makefile for alertserver is the following:&lt;BR /&gt;&lt;BR /&gt;include ../../Include_Paths&lt;BR /&gt;&lt;BR /&gt;CC = /opt/aCC/bin/aCC&lt;BR /&gt;CCFLAGS = -g0 +Z -D_HPUX_SOURCE -DRW_MULTI_THREAD -D_REENTRANT -mt&lt;BR /&gt;.SUFFIXES :&lt;BR /&gt;.SUFFIXES : .cc .h .pc .o&lt;BR /&gt;&lt;BR /&gt;PROC_COMP = $(ORACLE_HOME)/bin/proc&lt;BR /&gt;PROC_FLAGS = CODE=CPP CPP_SUFFIX=cc&lt;BR /&gt;PROC_INCLUDE = SYS_INCLUDE=/opt/aCC/include/iostream SYS_INCLUDE=/opt/aCC/include &lt;BR /&gt;&lt;BR /&gt;LD_FLAGS = -L$(CONFIGURATIONAPI) -L$(COLLECTIONAPI) -L$(EVENTAPI) -L$(SOCKETAPI) -L$(MQAPI) -L$(SVLMESSAGEHANDLERAPI) -lconfigurationmanager -lcollectionmanager -leventmanager -lsocketlib -lmqapi -lsvlmessagehandler -limqi23ah -lmqm -lmqic -SvlInputMessageHandler.o -AlertDBConnectionManager.o -AlertCollectionManager.o -AlertEntry.o -AlertServer.o -ClientSurveillanceObject.o -EventInterfaceServer.o +z&lt;BR /&gt;IFLAGS = -I$(COLLECTIONAPI) -I$(CONFIGURATIONAPI) -I$(EVENTAPI) -I$(SOCKETAPI)&lt;BR /&gt;&lt;BR /&gt;PROC_src=AlertDBConnectionManager.pc&lt;BR /&gt;SRCS = $(PROC_SRC:.pc=.cc)&lt;BR /&gt;CC_SRCS = $(SRCS) AlertCollectionManager.cc AlertEntry.cc AlertServer.cc ClientSurveillanceObject.cc EventInterfaceServer.cc &lt;BR /&gt;OBJS = $(CC_SRCS:.cc=.o)&lt;BR /&gt;&lt;BR /&gt;TARGET = AlertServer&lt;BR /&gt;&lt;BR /&gt;$(TARGET) : $(OBJS) &lt;BR /&gt; $(CC)  $(OBJS) $(CCFLAGS) $(LD_FLAGS) -o $@&lt;BR /&gt; chatr +s enable $(TARGET)&lt;BR /&gt;.pc.cc:&lt;BR /&gt; $(PROC_COMP) $(PROC_FLAGS) $(PROC_INCLUDE) $&amp;lt;&lt;BR /&gt;&lt;BR /&gt;.cc.o: $(CC_SRCS)&lt;BR /&gt; $(CC) $(CCFLAGS) $(IFLAGS) -c $&amp;lt; -o $@&lt;BR /&gt;&lt;BR /&gt;clean:&lt;BR /&gt; rm -rf $(SRCS) $(OBJS)  *.lis&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;   The makefile for Svlmessagehandler is :&lt;BR /&gt;&lt;BR /&gt;include ../../Include_Paths&lt;BR /&gt;&lt;BR /&gt;CC = /opt/softbench/bin/aCC&lt;BR /&gt;CCFLAGS = -g0 +Z -D_HPUX_SOURCE -DRW_MULTI_THREAD  -D_REENTRANT -mt &lt;BR /&gt;.SUFFIXES :&lt;BR /&gt;.SUFFIXES : .cc .h .pc .o&lt;BR /&gt;&lt;BR /&gt;PROC_COMP = $(ORACLE_HOME)/bin/proc&lt;BR /&gt;PROC_FLAGS = CODE=CPP CPP_SUFFIX=cc&lt;BR /&gt;PROC_INCLUDE = SYS_INCLUDE=/opt/aCC/include/iostream SYS_INCLUDE=/opt/aCC/include&lt;BR /&gt;LD_FLAGS = -B immediate -B nonfatal -L$(CONFIGURATIONAPI) -L$(COLLECTIONAPI) -L$(EVENTAPI) -L$(SOCKETAPI) -L$(MQAPI) -L$(SVLMESSAGEHANDLERAPI) -lconfigurationmanager -lcollectionmanager -leventmanager -lsocketlib -lmqapi -lsvlmessagehandler -limqi23ah -lmqm -lmqic -InputMqHandler.o -SvlAlertGeneration.o -SvlHandlerMain.o -SvlInputMessageHandler.o -SvlInterfaceServer.o -Wl,-hsqlca,+allowdups +z &lt;BR /&gt;&lt;BR /&gt;PROC_src=SvlAlertGeneration.pc&lt;BR /&gt;&lt;BR /&gt;SRCS = $(PROC_SRC:.pc=.cc)&lt;BR /&gt;CC_SRCS = $(SRCS) InputMqHandler.cc SvlInputMessageHandler.cc SvlHandlerMain.cc SvlInterfaceServer.cc&lt;BR /&gt;OBJS = $(CC_SRCS:.cc=.o)&lt;BR /&gt;&lt;BR /&gt;IFLAGS = -I$(CONFIGURATIONAPI) -I$(COLLECTIONAPI) -I$(EVENTAPI) -I$(SOCKETAPI) -I$(MQAPI) -I$(SVLMESSAGEHANDLERAPI)&lt;BR /&gt;&lt;BR /&gt;TARGET = SvlInputMessageHandler&lt;BR /&gt;&lt;BR /&gt;$(TARGET) : $(OBJS)&lt;BR /&gt; $(CC) $(OBJS) $(CCFLAGS) $(LD_FLAGS) -o $@&lt;BR /&gt; chatr +s enable $(TARGET)&lt;BR /&gt;.pc.cc:&lt;BR /&gt; $(PROC_COMP) $(PROC_FLAGS) $(PROC_INCLUDE) $&amp;lt;&lt;BR /&gt;&lt;BR /&gt;.cc.o: $(CC_SRCS)&lt;BR /&gt; $(CC) $(CCFLAGS) $(IFLAGS) -c $&amp;lt; -o $@&lt;BR /&gt;&lt;BR /&gt;clean:&lt;BR /&gt; rm -rf $(OBJS) $(SRCS) *.lis&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; While the latter is not throwing any warning the formaer one (for alertserver) warnings are coming -- aCC: warning 901: unknown option: `-AlertDBConnectionManager.o': use +help for online documentatio</description>
      <pubDate>Mon, 28 Feb 2005 04:49:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493578#M704880</guid>
      <dc:creator>soumya das</dc:creator>
      <dc:date>2005-02-28T04:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493579#M704881</link>
      <description>I think the LDFLAGS in the first makefile should read&lt;BR /&gt;&lt;BR /&gt;LD_FLAGS = -L$(CONFIGURATIONAPI) -L$(COLLECTIONAPI) -L$(EVENTAPI) -L$(SOCKETAPI) -L$(MQAPI) -L$(SVLMESSAGEHANDLERAPI) -lconfigurationmanager -lcollectionmanager -leventmanager -lsocketlib -lmqapi -lsvlmessagehandler -limqi23ah -lmqm -lmqic SvlInputMessageHandler.o AlertDBConnectionManager.o AlertCollectionManager.o AlertEntry.o AlertServer.o ClientSurveillanceObject.o EventInterfaceServer.o +z&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Feb 2005 05:01:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493579#M704881</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-02-28T05:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493580#M704882</link>
      <description>I think the LDFLAGS in the second makefile should read&lt;BR /&gt;&lt;BR /&gt;LD_FLAGS = -B immediate -B nonfatal -L$(CONFIGURATIONAPI) -L$(COLLECTIONAPI) -L$(EVENTAPI) -L$(SOCKETAPI) -L$(MQAPI) -L$(SVLMESSAGEHANDLERAPI) -lconfigurationmanager -lcollectionmanager -leventmanager -lsocketlib -lmqapi -lsvlmessagehandler -limqi23ah -lmqm -lmqic InputMqHandler.o SvlAlertGeneration.o SvlHandlerMain.o SvlInputMessageHandler.o SvlInterfaceServer.o -Wl,-hsqlca,+allowdups +z</description>
      <pubDate>Mon, 28 Feb 2005 05:03:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493580#M704882</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-02-28T05:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493581#M704883</link>
      <description>Hi,&lt;BR /&gt; I tried as u told .. but errors like "Duplicate Symbols" are coming up.&lt;BR /&gt;&lt;BR /&gt; /usr/ccs/bin/ld: Duplicate symbol "AlertDBConnectionManager::AlertDBConnectionManager(char *,char *,char *)" in files AlertDBConnectionManager.o and AlertDBConnectionManager.o&lt;BR /&gt;&lt;BR /&gt;  I think this is because the library files also include the same object files.&lt;BR /&gt;&lt;BR /&gt;  And If I don't include those object files then the following errors are coming up:&lt;BR /&gt;&lt;BR /&gt;/usr/ccs/bin/ld: Unsatisfied symbols:&lt;BR /&gt; RWCollectable::RWCollectable()%2 (first referenced in AlertDBConnectionManager.o) (code)&lt;BR /&gt;   typeid&lt;INPUTMQHANDLER&gt; (first referenced in SvlInputMessageHandler.o) (data)&lt;BR /&gt;   RWCollectable::saveGuts(RWFile &amp;amp;) const (first referenced in AlertEntry.o) (code)&lt;BR /&gt;&lt;BR /&gt;--regards,&lt;BR /&gt;&lt;BR /&gt;soumya&lt;/INPUTMQHANDLER&gt;</description>
      <pubDate>Mon, 28 Feb 2005 05:23:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493581#M704883</guid>
      <dc:creator>soumya das</dc:creator>
      <dc:date>2005-02-28T05:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493582#M704884</link>
      <description>OK, don't include the object files, as you say the libraries already contain the same things. What we need to find is where the constructor for the RWCollectable() class is defined. &lt;BR /&gt;&lt;BR /&gt;Are you including the header file that declares the constructor? &lt;BR /&gt;&lt;BR /&gt;Do you know which library it is defined in?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Feb 2005 05:29:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493582#M704884</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-02-28T05:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493583#M704885</link>
      <description>In the proc file the header files like collect.h and collstr.h have been included which contains the definitions of RWCollectable class. I have also included the library files which contains the objectfiles of the .pc files.&lt;BR /&gt;&lt;BR /&gt; I don't understand why this "Unstisfied symbol" error is coming up.</description>
      <pubDate>Mon, 28 Feb 2005 07:58:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493583#M704885</guid>
      <dc:creator>soumya das</dc:creator>
      <dc:date>2005-02-28T07:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493584#M704886</link>
      <description>Are you sure that the variables&lt;BR /&gt;&lt;BR /&gt;CONFIGURATIONAPI&lt;BR /&gt;COLLECTIONAPI&lt;BR /&gt;EVENTAPI&lt;BR /&gt;SOCKETAPI&lt;BR /&gt;MQAPI&lt;BR /&gt;SVLMESSAGEHANDLERAPI&lt;BR /&gt;&lt;BR /&gt;etc. are set properly?</description>
      <pubDate>Mon, 28 Feb 2005 08:11:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493584#M704886</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-02-28T08:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493585#M704887</link>
      <description>Does you makefile really say&lt;BR /&gt;&lt;BR /&gt;PROC_FLAGS = CODE=CPP CPP_SUFFIX=cc&lt;BR /&gt;&lt;BR /&gt;Or is that a formatting error introduced by the posting process, it should read&lt;BR /&gt;&lt;BR /&gt;PROC_FLAGS= &lt;BR /&gt;CODE=CPP &lt;BR /&gt;CPP_SUFFIX=cc&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Feb 2005 12:19:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493585#M704887</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-02-28T12:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493586#M704888</link>
      <description>and you don't need the +Z flag in your makefile either.</description>
      <pubDate>Mon, 28 Feb 2005 12:22:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493586#M704888</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-02-28T12:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493587#M704889</link>
      <description>Hi Stephen,&lt;BR /&gt;&lt;BR /&gt; The paths are rightly set .. but I could not check the value of those variables like&lt;BR /&gt;CONFIGURATIONAPI,COLLECTIONAPI,EVENTAPI, by echo $CONFIGURATIONAPI.&lt;BR /&gt;&lt;BR /&gt;But PROC_FLAGS = CODE=CPP CPP_SUFFIX=cc&lt;BR /&gt;&lt;BR /&gt;is correct ,otherwise syntax errors are coming.&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Mar 2005 01:08:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493587#M704889</guid>
      <dc:creator>soumya das</dc:creator>
      <dc:date>2005-03-01T01:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493588#M704890</link>
      <description>Have you removed the +Z flag from the makefile yet?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Mar 2005 06:36:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493588#M704890</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-03-01T06:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493589#M704891</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt; Now I'm getting the error :&lt;BR /&gt;&lt;BR /&gt; /usr/ccs/bin/ld: Unsatisfied symbols:&lt;BR /&gt;   sqlcxt (first referenced in SvlAlertGeneration.o) (code)&lt;BR /&gt;&lt;BR /&gt; I think it is because of some library files that is getting missed ..&lt;BR /&gt;&lt;BR /&gt;  Can anyone suggest which library file should I use?</description>
      <pubDate>Wed, 02 Mar 2005 02:21:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493589#M704891</guid>
      <dc:creator>soumya das</dc:creator>
      <dc:date>2005-03-02T02:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493590#M704892</link>
      <description>I think it is in libclntsh.so&lt;BR /&gt;&lt;BR /&gt;So your makefile (LD_FLAGS) would need to include:&lt;BR /&gt;&lt;BR /&gt;-L $(ORACLE_HOME)/lib -lclntsh</description>
      <pubDate>Thu, 03 Mar 2005 04:08:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493590#M704892</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-03-03T04:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493591#M704893</link>
      <description>Hi Stephen,&lt;BR /&gt;&lt;BR /&gt;Thanks for the ans. Although I could find it out from other sources.&lt;BR /&gt;&lt;BR /&gt; I 'm not able to give u points since that portion is disables and showing the "unassigned". That drop down list is not there.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;--regards&lt;BR /&gt;soumya</description>
      <pubDate>Thu, 03 Mar 2005 04:16:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493591#M704893</guid>
      <dc:creator>soumya das</dc:creator>
      <dc:date>2005-03-03T04:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: /usr/ccs/bin/ld: Unsatisfied Symbols</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493592#M704894</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am now getting a differnt set of probs. while running the Alertserver and Inputmessagehandler(executables generated after running the makefile.).The errors in the nohup.out is the following:&lt;BR /&gt;&lt;BR /&gt;error opening specified file errno = 2&lt;BR /&gt;Error in initializing Logger&lt;BR /&gt;InterfaceServer failed to initialize&lt;BR /&gt;&lt;BR /&gt; Can u throw any light on this?&lt;BR /&gt;&lt;BR /&gt;-regards,&lt;BR /&gt;soumya</description>
      <pubDate>Thu, 03 Mar 2005 04:21:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-ccs-bin-ld-unsatisfied-symbols/m-p/3493592#M704894</guid>
      <dc:creator>soumya das</dc:creator>
      <dc:date>2005-03-03T04:21:25Z</dc:date>
    </item>
  </channel>
</rss>

