public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* problem using gcc 2.8.1 on HP ( directive not recognized NSUBSPA )
@ 1999-10-07  0:35 Uday Birajdar
  1999-10-07  1:10 ` Jeffrey A Law
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Uday Birajdar @ 1999-10-07  0:35 UTC (permalink / raw)
  To: help-gcc

Uday Birajdar wrote:

 Hello,
 I have installed gcc 2.8.1 binaries on HP 11 system. I got them from
 HP's porting site.
 when I try to compile the simple "test.c"  program , assembler gives
the
 error

 as: Directive name not recognizes NSUBSPA

 If I do
 # gcc -S test.c
 comment out the  the above directive which is

 .NSUBSPA $CODE$,QUAD=0,ALIGN=8,ACCESS=44,CODE_ONLY

 and  do
 # gcc test.s

 It works fine.

 Should I have to use gnu assembler to get rid of this problem ?
 Any pointers in this regard are welcome.

 Thanks,
 uday

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: problem using gcc 2.8.1 on HP ( directive not recognized NSUBSPA )
  1999-10-07  0:35 problem using gcc 2.8.1 on HP ( directive not recognized NSUBSPA ) Uday Birajdar
@ 1999-10-07  1:10 ` Jeffrey A Law
  1999-10-31 13:57   ` Jeffrey A Law
  1999-10-07  5:55 ` Tim Prince
  1999-10-31 13:57 ` Uday Birajdar
  2 siblings, 1 reply; 6+ messages in thread
From: Jeffrey A Law @ 1999-10-07  1:10 UTC (permalink / raw)
  To: Uday Birajdar; +Cc: help-gcc

  In message < 37FC6863.B665A878@veritas.com >you write:
  > Uday Birajdar wrote:
  > 
  >  Hello,
  >  I have installed gcc 2.8.1 binaries on HP 11 system. I got them from
  >  HP's porting site.
  >  when I try to compile the simple "test.c"  program , assembler gives
  > the
  >  error
  > 
  >  as: Directive name not recognizes NSUBSPA
You have configured the compiler to use gas, but it is finding
the HP assembler instead.  Please read the FAQ.
jeff

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: problem using gcc 2.8.1 on HP ( directive not recognized NSUBSPA )
  1999-10-07  0:35 problem using gcc 2.8.1 on HP ( directive not recognized NSUBSPA ) Uday Birajdar
  1999-10-07  1:10 ` Jeffrey A Law
@ 1999-10-07  5:55 ` Tim Prince
  1999-10-31 13:57   ` Tim Prince
  1999-10-31 13:57 ` Uday Birajdar
  2 siblings, 1 reply; 6+ messages in thread
From: Tim Prince @ 1999-10-07  5:55 UTC (permalink / raw)
  To: help-gcc

> .NSUBSPA $CODE$,QUAD=0,ALIGN=8,ACCESS=44,CODE_ONLY
>
> and  do
> # gcc test.s
>
> It works fine.
>
> Should I have to use gnu assembler to get rid of this problem ?

Yes, the porting site ought to have a compatible version of binutils.  It is
possible also to construct the current binutils and gnu compilers using only
the basic hpux tools, and it's worth the effort, even if you don't use g++.
Tim Prince
tprince@computer.org

^ permalink raw reply	[flat|nested] 6+ messages in thread

* problem using gcc 2.8.1 on HP ( directive not recognized NSUBSPA )
  1999-10-07  0:35 problem using gcc 2.8.1 on HP ( directive not recognized NSUBSPA ) Uday Birajdar
  1999-10-07  1:10 ` Jeffrey A Law
  1999-10-07  5:55 ` Tim Prince
@ 1999-10-31 13:57 ` Uday Birajdar
  2 siblings, 0 replies; 6+ messages in thread
From: Uday Birajdar @ 1999-10-31 13:57 UTC (permalink / raw)
  To: help-gcc

Uday Birajdar wrote:

 Hello,
 I have installed gcc 2.8.1 binaries on HP 11 system. I got them from
 HP's porting site.
 when I try to compile the simple "test.c"  program , assembler gives
the
 error

 as: Directive name not recognizes NSUBSPA

 If I do
 # gcc -S test.c
 comment out the  the above directive which is

 .NSUBSPA $CODE$,QUAD=0,ALIGN=8,ACCESS=44,CODE_ONLY

 and  do
 # gcc test.s

 It works fine.

 Should I have to use gnu assembler to get rid of this problem ?
 Any pointers in this regard are welcome.

 Thanks,
 uday

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: problem using gcc 2.8.1 on HP ( directive not recognized NSUBSPA )
  1999-10-07  1:10 ` Jeffrey A Law
@ 1999-10-31 13:57   ` Jeffrey A Law
  0 siblings, 0 replies; 6+ messages in thread
From: Jeffrey A Law @ 1999-10-31 13:57 UTC (permalink / raw)
  To: Uday Birajdar; +Cc: help-gcc

  In message < 37FC6863.B665A878@veritas.com >you write:
  > Uday Birajdar wrote:
  > 
  >  Hello,
  >  I have installed gcc 2.8.1 binaries on HP 11 system. I got them from
  >  HP's porting site.
  >  when I try to compile the simple "test.c"  program , assembler gives
  > the
  >  error
  > 
  >  as: Directive name not recognizes NSUBSPA
You have configured the compiler to use gas, but it is finding
the HP assembler instead.  Please read the FAQ.
jeff

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: problem using gcc 2.8.1 on HP ( directive not recognized NSUBSPA )
  1999-10-07  5:55 ` Tim Prince
@ 1999-10-31 13:57   ` Tim Prince
  0 siblings, 0 replies; 6+ messages in thread
From: Tim Prince @ 1999-10-31 13:57 UTC (permalink / raw)
  To: help-gcc

> .NSUBSPA $CODE$,QUAD=0,ALIGN=8,ACCESS=44,CODE_ONLY
>
> and  do
> # gcc test.s
>
> It works fine.
>
> Should I have to use gnu assembler to get rid of this problem ?

Yes, the porting site ought to have a compatible version of binutils.  It is
possible also to construct the current binutils and gnu compilers using only
the basic hpux tools, and it's worth the effort, even if you don't use g++.
Tim Prince
tprince@computer.org

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~1999-10-31 13:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-10-07  0:35 problem using gcc 2.8.1 on HP ( directive not recognized NSUBSPA ) Uday Birajdar
1999-10-07  1:10 ` Jeffrey A Law
1999-10-31 13:57   ` Jeffrey A Law
1999-10-07  5:55 ` Tim Prince
1999-10-31 13:57   ` Tim Prince
1999-10-31 13:57 ` Uday Birajdar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).