diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-07 15:17:07 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-07 15:17:07 +0000 |
commit | af808d7d9f63fc8b114d6def6866d0d2c5b6b24e (patch) | |
tree | c1c9be83692efba34fd6a681a9cf6a699a78a8c9 /gcc/cpplib.h | |
parent | 5aa3f5e2a0c432ca6625a2c528a836b1148fe046 (diff) | |
download | ppe42-gcc-af808d7d9f63fc8b114d6def6866d0d2c5b6b24e.tar.gz ppe42-gcc-af808d7d9f63fc8b114d6def6866d0d2c5b6b24e.zip |
* c-lang.c (c_post_options): Call cpp_post_options.
* cppmain.c (main): Similarly.
* fix-header.c (read_scan_file): Similarly.
* cp/decl2.c (cxx_post_options): Similarly.
* objc/objc-act.c (objc_post_options): Similarly.
* cppinit.c (cpp_start_read): Move option consistency checks
to cpp_post_options. Don't call init_dependency_output.
If needed, add default target and main file dependency.
(OPT_MD, OPT_MMD): Remove.
(OPT_MF): New.
(cpp_handle_option): Update for OPT_* changes.
(cpp_post_options): New.
(init_dependency_output): Command line -MF overrides environment
variables. Don't set default target etc. Suppress output
if dependencies are going to stdout.
(print_help): Update.
* cpplib.h (cpp_post_options): New.
* gcc.c (cpp_options): Update for -MD, -MMD, -MF.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38777 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 7b53d0959c7..d5063b96c26 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -704,14 +704,25 @@ struct cpp_hashnode union tree_node *fe_value; /* Front end value. */ }; +/* Call this first to get a handle to pass to other functions. */ extern cpp_reader *cpp_create_reader PARAMS ((enum c_lang)); + +/* Now call cpp_handle_option[s] to handle 1[or more] switches. The + return value is the number of arguments used. If + cpp_handle_options returns without using all arguments, it couldn't + understand the next switch. When there are no switches left, you + must call cpp_post_options before calling cpp_start_read. Only + after cpp_post_options are the contents of the cpp_options + structure reliable. */ +extern int cpp_handle_options PARAMS ((cpp_reader *, int, char **)); +extern int cpp_handle_option PARAMS ((cpp_reader *, int, char **)); +extern void cpp_post_options PARAMS ((cpp_reader *)); + extern unsigned int cpp_token_len PARAMS ((const cpp_token *)); extern unsigned char *cpp_token_as_text PARAMS ((cpp_reader *, const cpp_token *)); extern unsigned char *cpp_spell_token PARAMS ((cpp_reader *, const cpp_token *, unsigned char *)); -extern int cpp_handle_options PARAMS ((cpp_reader *, int, char **)); -extern int cpp_handle_option PARAMS ((cpp_reader *, int, char **)); extern void cpp_register_pragma PARAMS ((cpp_reader *, const char *, const char *, void (*) PARAMS ((cpp_reader *)))); |