diff options
author | Richard Sandiford <rsandifo@redhat.com> | 2005-05-16 12:30:06 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2005-05-16 12:30:06 +0000 |
commit | aeb70e782ac3089f3931b58b1291c1196a8e6c8f (patch) | |
tree | 1a880bfd7d5dee689ffa88c4d78e2661c5086ffd /gcc/opts.h | |
parent | 8b37cc6429c7771e6501354521446cfe47f157ff (diff) | |
download | gcc-aeb70e782ac3089f3931b58b1291c1196a8e6c8f.zip gcc-aeb70e782ac3089f3931b58b1291c1196a8e6c8f.tar.gz gcc-aeb70e782ac3089f3931b58b1291c1196a8e6c8f.tar.bz2 |
Makefile.in (options.c): Tell optc-gen.awk to include config.h, system.h, coretypes.h and tm.h.
* Makefile.in (options.c): Tell optc-gen.awk to include config.h,
system.h, coretypes.h and tm.h.
(options.o): Update dependencies accordingly.
* optc-gen.awk: Allow header_name to be a list of filenames.
Handle the "Condition" flag.
* opts.h (CL_DISABLED): New flag.
* opts.c (handle_option): Print an error for CL_DISABLED options.
* doc/options.texi: Document the "Condition" option flag.
From-SVN: r99774
Diffstat (limited to 'gcc/opts.h')
-rw-r--r-- | gcc/opts.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -52,6 +52,7 @@ extern const struct cl_option cl_options[]; extern const unsigned int cl_options_count; extern const char *const lang_names[]; +#define CL_DISABLED (1 << 21) /* Disabled in this configuration. */ #define CL_TARGET (1 << 22) /* Target-specific option. */ #define CL_REPORT (1 << 23) /* Report argument with -fverbose-asm */ #define CL_JOINED (1 << 24) /* If takes joined argument. */ |