diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-05 12:20:33 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-05 12:20:33 +0000 |
commit | a55b23646ff646bcee211963e5676a00304714ff (patch) | |
tree | d6a840d1926291ab41d00a9437a894724197515a /gcc/c.opt | |
parent | e086b176eb881ec76366820a65fcee2b7961921c (diff) | |
download | gcc-a55b23646ff646bcee211963e5676a00304714ff.tar.gz |
* doc/invoke.texi (Directory Options): Document -iquote.
* doc/cpp.texi: Likewise.
* doc/cppopts.texi: Likewise.
* c-opts.c (c_common_missing_argument): Add -iquote processing.
(c_common_handle_option): Likewise.
* c.opt (iquote): Add.
* gcc.h (DEFAULT_WORD_SWITCH_TAKES_ARG): Add -iquote.
* c-incpath.c (merge_include_chains): Update comment to use -iquote.
* c-opts.c (case OPT_I): Deprecate -I- support.
* doc/invoke.texi: Likewise.
* doc/cpp.texi: Likewise.
* doc/cppopts.texi: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81521 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c.opt')
-rw-r--r-- | gcc/c.opt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/c.opt b/gcc/c.opt index e8627700b65..83dc98de28d 100644 --- a/gcc/c.opt +++ b/gcc/c.opt @@ -103,7 +103,7 @@ Print the name of header files as they are used I C ObjC C++ ObjC++ Joined Separate --I <dir> Add <dir> to the end of the main include path. -I- gives more include path control; see info documentation +-I <dir> Add <dir> to the end of the main include path M C ObjC C++ ObjC++ @@ -720,6 +720,10 @@ isystem C ObjC C++ ObjC++ Joined Separate -isystem <dir> Add <dir> to the start of the system include path +iquote +C ObjC C++ ObjC++ Joined Separate +-iquote <dir> Add <dir> to the end of the quote include path + iwithprefix C ObjC C++ ObjC++ Joined Separate -iwithprefix <dir> Add <dir> to the end of the system include path |