Go to the first, previous, next, last section, table of contents.


Reporting Bugs

Your bug reports play an essential role in making GCC reliable.

When you encounter a problem, the first thing to do is to see if it is already known. See section Known Causes of Trouble with GCC. If it isn't known, then you should report the problem.

Reporting a bug may help you by bringing a solution to your problem, or it may not. (If it does not, look in the service directory; see section How To Get Help with GCC.) In any case, the principal function of a bug report is to help the entire community by making the next version of GCC work better. Bug reports are your contribution to the maintenance of GCC.

Since the maintainers are very overloaded, we cannot respond to every bug report. However, if the bug has not been fixed, we are likely to send you a patch and ask you to tell us whether it works.

In order for a bug report to serve its purpose, you must include the information that makes for fixing the bug.

Have You Found a Bug?

If you are not sure whether you have found a bug, here are some guidelines:

Where to Report Bugs

Send bug reports for the GNU Compiler Collection to gcc-bugs@gcc.gnu.org. In accordance with the GNU-wide convention, in which bug reports for tool "foo" are sent to `bug-foo@gnu.org', the address bug-gcc@gnu.org may also be used; it will forward to the address given above.

Please read http://www.gnu.org/software/gcc/bugs.html for bug reporting instructions before you post a bug report.

Often people think of posting bug reports to the newsgroup instead of mailing them. This appears to work, but it has one problem which can be crucial: a newsgroup posting does not contain a mail path back to the sender. Thus, if maintainers need more information, they may be unable to reach you. For this reason, you should always send bug reports by mail to the proper mailing list.

As a last resort, send bug reports on paper to:

GNU Compiler Bugs
Free Software Foundation
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA

How to Report Bugs

You may find additional and/or more up-to-date instructions at http://www.gnu.org/software/gcc/bugs.html.

The fundamental principle of reporting bugs usefully is this: report all the facts. If you are not sure whether to state a fact or leave it out, state it!

Often people omit facts because they think they know what causes the problem and they conclude that some details don't matter. Thus, you might assume that the name of the variable you use in an example does not matter. Well, probably it doesn't, but one cannot be sure. Perhaps the bug is a stray memory reference which happens to fetch from the location where that name is stored in memory; perhaps, if the name were different, the contents of that location would fool the compiler into doing the right thing despite the bug. Play it safe and give a specific, complete example. That is the easiest thing for you to do, and the most helpful.

Keep in mind that the purpose of a bug report is to enable someone to fix the bug if it is not known. It isn't very important what happens if the bug is already known. Therefore, always write your bug reports on the assumption that the bug is not known.

Sometimes people give a few sketchy facts and ask, "Does this ring a bell?" This cannot help us fix a bug, so it is basically useless. We respond by asking for enough details to enable us to investigate. You might as well expedite matters by sending them to begin with.

Try to make your bug report self-contained. If we have to ask you for more information, it is best if you include all the previous information in your response, as well as the information that was missing.

Please report each bug in a separate message. This makes it easier for us to track which bugs have been fixed and to forward your bugs reports to the appropriate maintainer.

To enable someone to investigate the bug, you should include all these things:

Here are some things that are not necessary:

The gccbug script

To simplify creation of bug reports, and to allow better tracking of reports, we use the GNATS bug tracking system. Part of that system is the gccbug script. This is a Unix shell script, so you need a shell to run it. It is normally installed in the same directory where gcc is installed.

The gccbug script is derived from send-pr, see section `Creating new Problem Reports' in Reporting Problems. When invoked, it starts a text editor so you can fill out the various fields of the report. When the you quit the editor, the report is automatically send to the bug reporting address.

A number of fields in this bug report form are specific to GCC, and are explained here.

>Category:
The category of a GCC problem can be one of the following:
c
A problem with the C compiler proper. driver.
c++
A problem with the C++ compiler. driver.
fortran
A problem with the Fortran 77.
java
A problem with the Java compiler.
objc
A problem with the Objective C compiler.
libstdc++
A problem with the C++ standard library.
libf2c
A problem with the Fortran 77 library.
libobjc
A problem with the Objective C library.
optimization
The problem occurs only when generating optimized code.
debug
The problem occurs only when generating code for debugging.
target
The problem is specific to the target architecture.
middle-end
The problem is independent from target architecture and programming language.
other
It is a problem in some other part of the GCC software.
web
There is a problem with the GCC home page.
>Class:
The class of a problem can be one of the following:
doc-bug
A problem with the documentation.
accepts-illegal
GCC fails to reject erroneous code.
rejects-legal
GCC gives an error message for correct code.
wrong-code
The machine code generated by gcc is incorrect.
ice-on-legal-code
GCC gives an Internal Compiler Error (ICE) for correct code.
ice-on-illegal-code
GCC gives an ICE instead of reporting an error
pessimizes-code
GCC misses an important optimization opportunity.
sw-bug
A general product problem. (`sw' stands for "software".)
change-request
A request for a change in behavior, etc.
support
A support problem or question.
duplicate (pr-number)
Duplicate PR. pr-number should be the number of the original PR. The default is `sw-bug'.

Sending Patches for GCC

If you would like to write bug fixes or improvements for the GNU C compiler, that is very helpful. Send suggested fixes to the patches mailing list, gcc-patches@gcc.gnu.org.

Please follow these guidelines so we can study your patches efficiently. If you don't follow these guidelines, your information might still be useful, but using it will take extra work. Maintaining GNU C is a lot of work in the best of circumstances, and we can't keep up unless you do your best to help.


Go to the first, previous, next, last section, table of contents.