diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2015-12-06 18:44:56 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2015-12-06 18:44:56 +0000 |
commit | e4b2093f3cd8565b3e60cb74854bede4c1e1b214 (patch) | |
tree | 9e64a2bc6ac62760ab9bac0e0884af9bedbd3996 /gcc | |
parent | 62e56a0d652ce83ae3d220cc4a01de46674188f1 (diff) | |
download | gcc-e4b2093f3cd8565b3e60cb74854bede4c1e1b214.zip gcc-e4b2093f3cd8565b3e60cb74854bede4c1e1b214.tar.gz gcc-e4b2093f3cd8565b3e60cb74854bede4c1e1b214.tar.bz2 |
re PR ada/50048 ("cc1: note: obsolete option -I- used, please use -iquote instead" during bootstrap)
gnattools/
PR ada/50048
* Makefile.in (ftop_srcdir): New variable.
(INCLUDES_FOR_SUBDIR): Use -iquote and $(ftop_srcdir).
gcc/ada/
PR ada/50048
* gcc-interface/Makefile.in (INCLUDES): Use -iquote.
From-SVN: r231341
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/ada/gcc-interface/Makefile.in | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index ebd9f3c..b56de56 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,5 +1,10 @@ 2015-12-06 Eric Botcazou <ebotcazou@adacore.com> + PR ada/50048 + * gcc-interface/Makefile.in (INCLUDES): Use -iquote. + +2015-12-06 Eric Botcazou <ebotcazou@adacore.com> + PR ada/56274 * s-osinte-kfreebsd-gnu.ads (pthread_rwlock_t): New subtype. (pthread_rwlockattr_t): Likewise. diff --git a/gcc/ada/gcc-interface/Makefile.in b/gcc/ada/gcc-interface/Makefile.in index c5e6b30..8d91b66 100644 --- a/gcc/ada/gcc-interface/Makefile.in +++ b/gcc/ada/gcc-interface/Makefile.in @@ -257,7 +257,8 @@ TOOLS_LIBS += @NO_PIE_FLAG@ # Both . and srcdir are used, in that order, # so that tm.h and config.h will be found in the compilation # subdirectory rather than in the source directory. -INCLUDES = -I- -I. -I.. -I$(srcdir)/ada -I$(srcdir) -I$(ftop_srcdir)/include $(GMPINC) +INCLUDES = -iquote . -iquote .. -iquote $(srcdir)/ada -iquote $(srcdir) \ + -I $(ftop_srcdir)/include $(GMPINC) ADA_INCLUDES = -I- -I. -I$(srcdir)/ada |