public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* new madness
@ 1998-10-21 23:21 Jean-Pierre Radley
  1998-10-22 13:59 ` Nix
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Jean-Pierre Radley @ 1998-10-21 23:21 UTC (permalink / raw)
  To: EGCS Developers, Robert Lipe

SCO OSR 5.0.5.
After a cvs up, I now see a new set of errors:

gcc  -DIN_GCC    -O2  -DHAVE_CONFIG_H   -o gengenrtl \
 gengenrtl.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` ` case "alloca.o" in ?*) echo alloca.o ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*)
 echo  ;; esac ` ` case "" in ?*) echo  ;; esac `
./gengenrtl tmp-genrtl.h tmp-genrtl.c
../../egcs/gcc/move-if-change tmp-genrtl.h genrtl.h
genrtl.h is unchanged
../../egcs/gcc/move-if-change tmp-genrtl.c genrtl.c
genrtl.c is unchanged
touch s-genrtl
gperf -L KR-C -F ', 0, 0' -p -j1 -i 1 -g -o -t -G -N is_reserved_word \
   -k1,3,$ ../../egcs/gcc/c-parse.gperf >tmp-gperf.h
unsupported language option KR-C, defaulting to C
gperf: unrecognized option `-F'
Usage: gperf [-acCdDef[num]gGhH<hashname>i<init>jk<keys>K<keyname>lL<language>nN<
function name>oprs<size>S<switches>tTvZ<class name>].
(type gperf -h for help)
make[1]: *** [../../egcs/gcc/c-gperf.h] Error 1
make[1]: Leaving directory `/s/tools/egcsobj/gcc'
make: *** [all-gcc] Error 2

-- 
Jean-Pierre Radley <jpr@jpr.com>  XC/XT Custodian   Sysop, CompuServe SCOForum

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

* Re: new madness
  1998-10-21 23:21 new madness Jean-Pierre Radley
@ 1998-10-22 13:59 ` Nix
  1998-10-22 18:00 ` Martin von Loewis
  1998-10-22 21:15 ` Jeffrey A Law
  2 siblings, 0 replies; 5+ messages in thread
From: Nix @ 1998-10-22 13:59 UTC (permalink / raw)
  To: Jean-Pierre Radley; +Cc: egcs

Jean-Pierre Radley <jpr@jpr.com> writes:

> gperf: unrecognized option `-F'

You need gperf-2.7-19981006.pat, from the egcs infrastructure
directory.

-- 
`There [are] no two ways about it. Bill Gates must be sent to a prison
 colony, if possible, on Mars' - Wild Horse

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

* Re: new madness
  1998-10-21 23:21 new madness Jean-Pierre Radley
  1998-10-22 13:59 ` Nix
@ 1998-10-22 18:00 ` Martin von Loewis
  1998-10-22 21:15 ` Jeffrey A Law
  2 siblings, 0 replies; 5+ messages in thread
From: Martin von Loewis @ 1998-10-22 18:00 UTC (permalink / raw)
  To: jpr; +Cc: egcs, robertl

> gperf: unrecognized option `-F'

You'll need a gperf with the patch included in the contrib directory,
or gperf output more recent than its input.

Regards,
Martin

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

* Re: new madness
  1998-10-21 23:21 new madness Jean-Pierre Radley
  1998-10-22 13:59 ` Nix
  1998-10-22 18:00 ` Martin von Loewis
@ 1998-10-22 21:15 ` Jeffrey A Law
  1998-10-23 11:05   ` Dave Love
  2 siblings, 1 reply; 5+ messages in thread
From: Jeffrey A Law @ 1998-10-22 21:15 UTC (permalink / raw)
  To: Jean-Pierre Radley; +Cc: EGCS Developers, Robert Lipe

  In message < 19981022001040.B1332@jpr.com >you write:
  > SCO OSR 5.0.5.
  > After a cvs up, I now see a new set of errors:
  > 
  > gcc  -DIN_GCC    -O2  -DHAVE_CONFIG_H   -o gengenrtl \
  >  gengenrtl.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` ` case "all
  > oca.o" in ?*) echo alloca.o ;; esac ` ` case "" in ?*) echo  ;; esac ` ` ca
  > se "" in ?*)
  >  echo  ;; esac ` ` case "" in ?*) echo  ;; esac `
  > ./gengenrtl tmp-genrtl.h tmp-genrtl.c
  > ../../egcs/gcc/move-if-change tmp-genrtl.h genrtl.h
  > genrtl.h is unchanged
  > ../../egcs/gcc/move-if-change tmp-genrtl.c genrtl.c
  > genrtl.c is unchanged
  > touch s-genrtl
  > gperf -L KR-C -F ', 0, 0' -p -j1 -i 1 -g -o -t -G -N is_reserved_word \
  >    -k1,3,$ ../../egcs/gcc/c-parse.gperf >tmp-gperf.h
  > unsupported language option KR-C, defaulting to C
  > gperf: unrecognized option `-F'
  > Usage: gperf [-acCdDef[num]gGhH<hashname>i<init>jk<keys>K<keyname>lL<langua
  > ge>nN<
  > function name>oprs<size>S<switches>tTvZ<class name>].
  > (type gperf -h for help)
  > make[1]: *** [../../egcs/gcc/c-gperf.h] Error 1
  > make[1]: Leaving directory `/s/tools/egcsobj/gcc'
  > make: *** [all-gcc] Error 2
If you're using cvs, then you have to make sure you've got the latest
gperf(2.7) + the patch in the contrib subdir.

Or you can touch the right files to avoid the need to rebuild gperf.  I don't
know exactly what files you'd need to tough though :-)

jeff

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

* Re: new madness
  1998-10-22 21:15 ` Jeffrey A Law
@ 1998-10-23 11:05   ` Dave Love
  0 siblings, 0 replies; 5+ messages in thread
From: Dave Love @ 1998-10-23 11:05 UTC (permalink / raw)
  To: egcs

>>>>> "Jeff" == Jeffrey A Law <law@cygnus.com> writes:

 Jeff> Or you can touch the right files to avoid the need to rebuild
 Jeff> gperf.  I don't know exactly what files you'd need to tough
 Jeff> though :-)

The ones listed in the FAQ are sufficient.

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

end of thread, other threads:[~1998-10-23 11:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-10-21 23:21 new madness Jean-Pierre Radley
1998-10-22 13:59 ` Nix
1998-10-22 18:00 ` Martin von Loewis
1998-10-22 21:15 ` Jeffrey A Law
1998-10-23 11:05   ` Dave Love

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).