From: marcus AT bighorn DOT dr DOT lucent DOT com (139a80000-HallMDR313237x10) Subject: Re: Problem using "protoize" 26 Aug 1998 12:28:25 -0700 Message-ID: <199808241453.IAA00780.cygnus.gnu-win32@chorus.dr.lucent.com> Reply-To: "139a80000-HallM(DR3132)37x10" Content-Type: text To: gnu-win32 AT cygnus DOT com, psksvp AT ccs DOT neu DOT edu > > 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 AT ccs DOT neu DOT 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 AT cygnus DOT com" with one line of text: "help".