aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2020-12-25 00:16:20 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2020-12-25 00:16:20 +0000
commit8daa719bdca44f50d6bbe8ddda2920779e1e5ae4 (patch)
tree128aa6a1a33f04818c229a5334656e00bbea5022 /gcc
parent662b9c55cf06d3df6682ef865fb2b685820317a9 (diff)
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog20
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/c-family/ChangeLog5
-rw-r--r--gcc/cp/ChangeLog8
4 files changed, 34 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 66369658c20..66c866b78ff 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,23 @@
+2020-12-24 Iain Sandoe <iain@sandoe.co.uk>
+
+ * configure.ac: Add gxx-libcxx-include-dir handled
+ in the same way as the regular cxx header directory.
+ * Makefile.in: Regenerated.
+ * config.in: Likewise.
+ * configure: Likewise.
+ * cppdefault.c: Pick up libc++ headers if the option
+ is enabled.
+ * cppdefault.h (struct default_include): Amend comments
+ to reflect the extended use of the cplusplus field.
+ * incpath.c (add_standard_paths): Allow for multiple
+ c++ header include path variants.
+ * doc/invoke.texi: Document the -stdlib= option.
+
+2020-12-24 Kito Cheng <kito.cheng@sifive.com>
+
+ * config/riscv/multilib-generator (arch_canonicalize): Call
+ decode for the subprocess return value.
+
2020-12-23 Martin Sebor <msebor@redhat.com>
PR middle-end/98160
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 0ecfbe28be3..57c4d8eb9ba 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20201224
+20201225
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index 761086fe856..79d2655d841 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,8 @@
+2020-12-24 Iain Sandoe <iain@sandoe.co.uk>
+
+ * c.opt: Add -stdlib= option and enumerations for
+ libstdc++ and libc++.
+
2020-12-16 Martin Liska <mliska@suse.cz>
* c.opt: Remove usage of Report.
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 95fcc2cc414..593627cb334 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,11 @@
+2020-12-24 Iain Sandoe <iain@sandoe.co.uk>
+
+ * g++spec.c (LIBCXX, LIBCXX_PROFILE, LIBCXX_STATIC): New.
+ (LIBCXXABI, LIBCXXABI_PROFILE, LIBCXXABI_STATIC): New.
+ (enum stdcxxlib_kind): New.
+ (lang_specific_driver): Allow selection amongst multiple
+ c++ runtime libraries.
+
2020-12-23 Nathan Sidwell <nathan@acm.org>
PR c++/96045