This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-release-arm-stable-allmodconfig in repository toolchain/ci/gcc.
from 54213005e6d Daily bump. adds bdaf0ce0af3 libstdc++: handle small max_blocks_per_chunk in pool resour [...] adds 90fdf477a1c libstdc++: Fix noexcept-specifier for std::bind_front [PR 97101] adds 3ec14c9a49a libstdc++: Make C++17 ignore --disable-libstdcxx-filesystem [...] adds 90f845adff0 libstdc++: Fix build for targets without lstat [PR 94681] adds b3043e49089 libstdc++: Fix std::gcd and std::lcm for unsigned integers [...] adds 6dceae0cb9c Daily bump. adds 4be18e2f16b libstdc++: Use correct argument type for __use_alloc [PR 96803] adds 132ddcc78c1 libstdc++: Use correct argument type for __use_alloc, again [...] adds e7285587186 libstdc++: Fix out-of-bounds string_view access in filesyst [...] adds c189842fef7 Daily bump. adds dbc775fc2ba Daily bump. adds 6ca87f2ae83 aarch64: Add support for Neoverse V1 CPU
No new revisions were added by this update.
Summary of changes: gcc/DATESTAMP | 2 +- gcc/config/aarch64/aarch64-cores.def | 2 + gcc/config/aarch64/aarch64-tune.md | 2 +- gcc/doc/invoke.texi | 4 +- libstdc++-v3/ChangeLog | 100 +++++ libstdc++-v3/acinclude.m4 | 413 ++++++++++----------- libstdc++-v3/configure | 282 +++++++------- libstdc++-v3/include/experimental/numeric | 38 +- libstdc++-v3/include/std/functional | 4 +- libstdc++-v3/include/std/numeric | 83 +++-- libstdc++-v3/include/std/tuple | 12 +- libstdc++-v3/src/c++17/fs_ops.cc | 2 +- libstdc++-v3/src/c++17/fs_path.cc | 2 +- libstdc++-v3/src/c++17/memory_resource.cc | 21 +- libstdc++-v3/src/filesystem/ops.cc | 2 +- .../20_util/function_objects/bind_front/97101.cc | 41 ++ libstdc++-v3/testsuite/20_util/tuple/cons/96803.cc | 62 ++++ .../unsynchronized_pool_resource/allocate.cc | 20 + libstdc++-v3/testsuite/26_numerics/gcd/92978.cc | 41 ++ libstdc++-v3/testsuite/26_numerics/gcd/gcd_neg.cc | 10 +- libstdc++-v3/testsuite/26_numerics/lcm/92978.cc | 28 ++ libstdc++-v3/testsuite/26_numerics/lcm/lcm_neg.cc | 10 +- .../27_io/filesystem/path/append/source.cc | 10 + .../testsuite/experimental/numeric/92978.cc | 48 +++ 24 files changed, 803 insertions(+), 436 deletions(-) create mode 100644 libstdc++-v3/testsuite/20_util/function_objects/bind_front/97101.cc create mode 100644 libstdc++-v3/testsuite/20_util/tuple/cons/96803.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/gcd/92978.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/lcm/92978.cc create mode 100644 libstdc++-v3/testsuite/experimental/numeric/92978.cc