This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Problem using "protoize"



> 
> I was trying to use "protoize" command, and got the follow message
> 
> "protoize: warning: missing SYSCALLS file
> `/cygnus/b19/H-i386-cygwin32/lib/gcc-lib/i386-cygwin32/2.7-
> 97r2aBeta/SYSCALLS.c.X'"
> 
> anybody has any idea?? I was trying to convert K&R c code to ANSI
> style
> 
> psksvp@ccs.neu.edu

Run "info gcc" to find info about running protoize (it's actually a special
version of the gcc compiler.)

The SYSCALLS.c.X is an "auxinfo" file produced by gcc that gives protoization
information about system calls.  It should have been created when you built
the system, but aparently it wasn't created or you have moved things or
changed versions or something.  Search for a SYSCALLS.c.X file in your
filesystem and if you find one, you can run protoize with the -B option
to specify the directory that contains the SYSCALLS.c.X file.  Otherwise,
you can create a null length SYSCALLS.c.X file in a temp directory and
give the temp directory to protoize via the -B option.

To ultimately solve the probelm, make sure that the protoize that you are
running is the current version you have compiled (i.e. it looks like the
protoize you are running is the 2.7-97r2aBeta version).  If so, then try
to find out why the SYSCALLS.c.X file was not produced when you built the
system.

marcus hall
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]