summaryrefslogtreecommitdiff
path: root/gcc/c-incpath.h
diff options
context:
space:
mode:
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-16 06:49:59 +0000
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-16 06:49:59 +0000
commit2288041ea79a1adf1cbb2e44e9b04fc4a70173bd (patch)
treeeea8e6b301cfcc78ad08dad2ffb1c0dc3348acdd /gcc/c-incpath.h
parent921d9bf36ddd5d4ac808fea780faee0cf3141a54 (diff)
downloadgcc-2288041ea79a1adf1cbb2e44e9b04fc4a70173bd.tar.gz
2004-09-15 Andrew Pinski <pinskia@physics.uc.edu>
PR target/11572 * c-incpath.h (target_c_incpath_s): Add extra_pre_includes. Add two parameters to extra_includes. (C_INCPATH_INIT): Remove. * c-incpath.c (register_include_chains): Call extra_pre_includes before adding the standard include directory. Update call to extra_includes. (!defined TARGET_EXTRA_INCLUDES): Update hook_void_charptr_charptr_int and add !define TARGET_EXTRA_PRE_INCLUDES. (!define TARGET_EXTRA_INCLUDES): Define as hook_void_charptr_charptr_int. (!define TARGET_EXTRA_PRE_INCLUDES): Likewise. (target_c_incpath): Always declare. * fixinclude.c (defined TARGET_EXTRA_INCLUDES): Declare a empty function. (define TARGET_EXTRA_PRE_INCLUDES): Likewise. * config/darwin.h: (darwin_register_frameworks): Update for the two new parameters. (darwin_register_objc_includes): Add prototype. (TARGET_EXTRA_PRE_INCLUDES): Define. * config/darwin-c.c (darwin_register_objc_includes): New function. (darwin_register_frameworks): Update for the two new parameters. (target_c_incpath): Remove. * config/t-darwin (darwin-c.o): Add $(PREPROCESSOR_DEFINES) to the compile line. * doc/tm.texi (TARGET_EXTRA_INCLUDES): Document the two new parameters. (TARGET_EXTRA_PRE_INCLUDES): Document. * gcc.c (spec_function): Add replace-outfile. (replace_outfile_spec_function): New function. * config/darwin.h (LINK_SPEC): Add replace -lobjc with -lobjc-gnu if -fgnu-runtime is supplied. * invoke.texi (replace-outfile): Document. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87588 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-incpath.h')
-rw-r--r--gcc/c-incpath.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/c-incpath.h b/gcc/c-incpath.h
index 1096016784f..cc261a6d884 100644
--- a/gcc/c-incpath.h
+++ b/gcc/c-incpath.h
@@ -23,11 +23,10 @@ extern void add_cpp_dir_path (struct cpp_dir *, int);
struct target_c_incpath_s {
/* Do extra includes processing. STDINC is false iff -nostdinc was given. */
- void (*extra_includes) (int);
+ void (*extra_pre_includes) (const char *, const char *, int);
+ void (*extra_includes) (const char *, const char *, int);
};
extern struct target_c_incpath_s target_c_incpath;
-#define C_INCPATH_INIT { TARGET_EXTRA_INCLUDES }
-
enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };