📄 error.1
字号:
.\" Copyright (c) 1980, 1990, 1993.\" The Regents of the University of California. All rights reserved..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\" notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\" notice, this list of conditions and the following disclaimer in the.\" documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\" must display the following acknowledgement:.\" This product includes software developed by the University of.\" California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\" may be used to endorse or promote products derived from this software.\" without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\" @(#)error.1 8.1 (Berkeley) 6/6/93.\".Dd June 6, 1993.Dt ERROR 1.Os BSD 4.Sh NAME.Nm error.Nd analyze and disperse compiler error messages.Sh SYNOPSIS.Nm error.Op Fl n.Op Fl s.Op Fl q.Op Fl v.Op Fl t Ar suffixlist.Op Fl I Ar ignorefile.Op name.Sh DESCRIPTION.Nm Erroranalyzes and optionally disperses the diagnostic error messagesproduced by a number of compilers and language processors to the sourcefile and line where the errors occurred. It can replace the painful,traditional methods of scribbling abbreviations of errors on paper, andpermits error messages and source code to be viewed simultaneouslywithout machinations of multiple windows in a screen editor..PpOptions are:.Bl -tag -width Ds.It Fl nDo.Em nottouch any files; all error messages are sent to thestandard output..It Fl qThe user is.Ar queriedwhether s/he wants to touch the file.A ``y'' or ``n'' to the question is necessary to continue.Absence of the.Fl qoption implies that all referenced files(except those referring to discarded error messages)are to be touched..It Fl vAfter all files have been touched,overlay the visual editor.Xr \&vi 1with it set up to edit all files touched,and positioned in the first touched file at the first error.If.Xr \&vi 1can't be found, try.Xr \&ex 1or.Xr \&ed 1from standard places..It Fl tTake the following argument as a suffix list.Files whose suffixes do not appear in the suffix list are not touched.The suffix list is dot separated, and ``*'' wildcards work.Thus the suffix list:.Pp.Dl ".c.y.foo*.h".Ppallows.Nm errorto touch files ending with ``.c'', ``.y'', ``.foo*'' and ``.y''..It Fl sPrint out.Em statisticsregarding the error categorization.Not too useful..El.Pp.Nm Errorlooks at the error messages,either from the specified file.Ar nameor from the standard input,and attempts to determine whichlanguage processor produced each error message,determines the source file and line number to which the error message refers,determines if the error message is to be ignored or not,and inserts the (possibly slightly modified) error message intothe source file as a comment on the line preceding to which theline the error message refers.Error messages which can't be categorized by language processoror content are not inserted into any file,but are sent to the standard output..Nm Errortouches source files only after all input has been read..Pp.Nm Erroris intended to be runwith its standard inputconnected via a pipe to the error message source.Some language processors put error messages on their standard error file;others put their messages on the standard output.Hence, both error sources should be piped together into.Nm error .For example, when using the.Xr csh 1syntax,.Pp.Dl make \-s lint \&| error \-q \-v.Ppwill analyze all the error messages producedby whatever programs.Xr make 1runs when making lint..Pp.Nm Errorknows about the error messages produced by:.Xr make 1 ,.Xr \&cc 1 ,.Xr cpp 1 ,.Xr ccom 1 ,.Xr \&as 1 ,.Xr \&ld 1 ,.Xr lint 1 ,.Xr \&pi 1 ,.Xr \&pc 1 ,.Xr f77 1 ,and.Em DEC Western Research Modula\-2 ..Nm Errorknows a standard format for error messages produced bythe language processors,so is sensitive to changes in these formats.For all languages except.Em Pascal ,error messages are restricted to be on one line.Some error messages refer to more than one line in more thanone files;.Nm errorwill duplicate the error message and insert it atall of the places referenced..Pp.Nm Errorwill do one of six things with error messages..Bl -tag -width Em synchronize.It Em synchronizeSome language processors produce short errors describingwhich file it is processing..Nm Erroruses these to determine the file name for languages thatdon't include the file name in each error message.These synchronization messages are consumed entirely by.Nm error ..It Em discardError messages from.Xr lint 1that refer to one of the two.Xr lint 1libraries,.Pa /usr/libdata/lint/llib-lcand.Pa /usr/libdata/lint/llib-portare discarded,to prevent accidently touching these libraries.Again, these error messages are consumed entirely by.Nm error ..It Em nullifyError messages from.Xr lint 1can be nullified if they refer to a specific function,which is known to generate diagnostics which are not interesting.Nullified error messages are not inserted into the source file,but are written to the standard output.The names of functions to ignore are taken fromeither the file named.Pa .errorrcin the users's home directory,or from the file named by the.Fl Ioption.If the file does not exist,no error messages are nullified.If the file does exist, there must be one functionname per line..It Em not file specificError messages that can't be intuited are grouped together,and written to the standard output before any files are touched.They will not be inserted into any source file..It Em file specificError message that refer to a specific file,but to no specific line,are written to the standard output whenthat file is touched..It Em true errorsError messages that can be intuited are candidates forinsertion into the file to which they refer..El.PpOnly true error messages are candidates for inserting intothe file they refer to.Other error messages are consumed entirely by.Nm erroror are written to the standard output..Nm Errorinserts the error messages into the source file on the linepreceding the line the language processor found in error.Each error message is turned into a one line comment for thelanguage,and is internally flaggedwith the string ``###'' atthe beginning of the error,and ``%%%'' at the end of the error.This makes pattern searching for errors easier with an editor,and allows the messages to be easily removed.In addition, each error message contains the source line numberfor the line the message refers to.A reasonably formatted source program can be recompiledwith the error messages still in it,without having the error messages themselves cause future errors.For poorly formatted source programs in free format languages,such as C or Pascal,it is possible to insert a comment into another comment,which can wreak havoc with a future compilation.To avoid this, programs with comments and sourceon the same line should be formattedso that language statements appear before comments..Pp.Nm Errorcatches interrupt and terminate signals,and if in the insertion phase,will orderly terminate what it is doing..Sh FILES.Bl -tag -width ~/.errorrc -compact.It Pa ~/.errorrcfunction names to ignore for.Xr lint 1error messages.It Pa /dev/ttyuser's teletype.El.Sh HISTORYThe.Nm errorcommandappeared in.Bx 4.0 ..Sh AUTHORRobert Henry.Sh BUGS.PpOpens the teletype directly to do user querying..PpSource files with links make a new copy of the file withonly one link to it..PpChanging a language processor's format of error messagesmay cause.Nm errorto not understand the error message..Pp.Nm Error ,since it is purely mechanical,will not filter out subsequent errors caused by `floodgating'initiated by one syntactically trivial error.Humans are still much better at discarding these related errors..PpPascal error messages belong after the lines affected(error puts them before). The alignment of the `\\' markingthe point of error is also disturbed by.Nm error ..Pp.Nm Errorwas designed for work on.Tn CRT Ns 'sat reasonably high speed.It is less pleasant on slow speed terminals, and has never beenused on hardcopy terminals.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -