This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: gperf F option?
- To: aoliva at cygnus dot com
- Subject: Re: gperf F option?
- From: Desmond Cheung <dycheung at cs dot sfu dot ca>
- Date: Mon, 29 May 2000 11:58:31 -0700 (PDT)
- Cc: gcc at gcc dot gnu dot org
>You don't need gperf at all, unless you're modifying source files that
>are processed with gperf. Use `contrib/gcc_udpate --touch' if you
>just want to adjust the timestamps.
I tried to build a cross-compiler and received the following error during the make process:
.
.
.
cd .; bison -d -o parse.c parse.y
parse.y contains 30 shift/reduce conflicts and 42 reduce/reduce conflicts.
cd .; grep '^#define[ ]*YYEMPTY' parse.c >>parse.h
cd ./objc; \
bison -o objc-parse.c objc-parse.y
objc-parse.y contains 72 shift/reduce conflicts.
gperf -L C -F ', 0, 0' -p -j1 -i 1 -g -o -t -G -N is_reserved_word \
-k1,3,$ ./c-parse.gperf >tmp-gperf.h
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)
*** Error code 1
make: Fatal error: Command failed for target `c-gperf.h'
Current working directory /net/local-kirin/gnudev/gnu/m68k/gcc-2.95.2/gcc
*** Error code 1
make: Fatal error: Command failed for target `cross'
Des