]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/common.opt
Makefile.in: Update to use common.opt and lang_opt_files.
[thirdparty/gcc.git] / gcc / common.opt
1 ; Options for the language- and target-independent parts of the compiler.
2 ; Copyright (C) 2003 Free Software Foundation, Inc.
3 ;
4 ; This file is part of GCC.
5 ;
6 ; GCC is free software; you can redistribute it and/or modify it under
7 ; the terms of the GNU General Public License as published by the Free
8 ; Software Foundation; either version 2, or (at your option) any later
9 ; version.
10 ;
11 ; GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 ; WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 ; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 ; for more details.
15 ;
16 ; You should have received a copy of the GNU General Public License
17 ; along with GCC; see the file COPYING. If not, write to the Free
18 ; Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 ; 02111-1307, USA.
20
21
22 ; This file is processed by the script opts.sh. It is a database of
23 ; command line options, with each record separated by a blank line,
24 ; and each field appearing on its own line. The first field is the
25 ; command-line switch with the leading "-" removed. All options
26 ; beginning with "f" or "W" are implicitly assumed to take a "no-"
27 ; form; this form should not be listed. If you do not want this
28 ; negative form and you want it to be automatically rejected, add
29 ; RejectNegative to the second field.
30
31 ; The second field should contain "Common". If the switch takes an
32 ; argument, then you should also specify "Joined" and/or "Separate" to
33 ; indicate where the argument can appear.
34
35 ; Comments can appear on their own line anwhere in the file, preceded
36 ; by a semicolon. Whitespace is permitted before the semicolon.
37
38 ; For each switch XXX below, an enumeration constant is created by the
39 ; script opts.sh spelt OPT_XXX, but with all non-alphanumeric
40 ; characters replaced with an underscore.
41
42 ; Please try to keep this file in ASCII collating order.
43
44 quiet
45 Common
46
47 ; This comment is to ensure we retain the blank line above.