diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-14 22:34:50 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-14 22:34:50 +0000 |
commit | 3c556f04c64ac43ce21344ceb0d94165934b2b52 (patch) | |
tree | f37dd03c8db5ac792b317d8bbddee04999fd0d43 /gcc/cpplib.h | |
parent | 47f175274591a9f5f384e25a56d4f994e36b368f (diff) | |
download | gcc-3c556f04c64ac43ce21344ceb0d94165934b2b52.tar.gz |
PR preprocessor/7358
* c-opts.c (check_deps_environment_vars): Ignore main file
for SUNPRO_DEPENDENCIES.
* cppfiles.c (stack_include_file): Ignore main file if
appropriate.
* cpplib.h (struct cpp_options): New member in deps.
* doc/cppenv.texi: Update.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56333 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 3640d44605a..3d2cac707b5 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -387,6 +387,9 @@ struct cpp_options /* Generate phony targets for each dependency apart from the first one. */ bool phony_targets; + + /* If true, no dependency is generated on the main file. */ + bool ignore_main_file; } deps; /* Target-specific features set by the front end or client. */ |