Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: 8.1.7 Install fails on Sun 2.7 due to no compiler

Re: 8.1.7 Install fails on Sun 2.7 due to no compiler

From: Viacheslav Leichinsky <v_leichinsky_at_ittoolbox.com>
Date: 7 Jun 2001 00:30:00 -0700
Message-ID: <beb04beb.0106062329.1bb69415@posting.google.com>

stephen_m_mcallister_at_hotmail.com (S. M. McAllister) wrote in message news:<b24e556f.0106061442.26b527e3_at_posting.google.com>...
> I am trying to install Oracle 8.1.7 on Solaris 2.7. The Patches are
> all up to date. During the link phase of installing Net8 I am getting
> this error.
>
> The install is failing with an Error dialog that says
> "Error in invoking target ntcontab.o of
> makefile /u00/app/oracle/product/8.1.7/network/ins_net_client.mk"
>

 Hi Steve!

If you take a look
at /u00/app/oracle/product/8.1.7/network/lib/ins_net_client.mk, you can see the following:
(if [ "$(GENNT)" = "compile" ] ; then \

	  $(ORACLE_HOME)/bin/gennttab > ntcontab.c ;\
	  $(CC) $(CFLAGS_SHIP) -c ntcontab.c ;\
	  rm -f $(ORACLE_HOME)/lib/ntcontab.o ;\
	  mv ntcontab.o $(ORACLE_HOME)/lib ;\
          $(AR) rv $(LIBNET) $(ORACLE_HOME)/lib/$@ ; fi)
	(if [ "$(GENNT)" = "assemble" ] ; then \
                           ^^^^^^^^^^

	  $(ORACLE_HOME)/bin/gennttab > ntcontab.s ;\
	  $(AS) $(ASFLAGS_SHIP) ntcontab.o ntcontab.s ;\
	  rm -f $(ORACLE_HOME)/lib/ntcontab.o ;\
	  mv ntcontab.o $(ORACLE_HOME)/lib ;\
          $(AR) rv $(LIBNET) $(ORACLE_HOME)/lib/$@ ; fi)

Of course, there is only ntcontab.s in /u00/app/oracle/product/8.1.7/network/lib !! So should be GENNT = assemble in /u00/app/oracle/product/8.1.7/network/lib/env_network.mk

Regards,
Slava. Received on Thu Jun 07 2001 - 02:30:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US