head 1.1; branch 1.1.1; access; symbols netbsd-11-0-RC4:1.1.1.1 netbsd-11-0-RC3:1.1.1.1 netbsd-11-0-RC2:1.1.1.1 netbsd-11-0-RC1:1.1.1.1 gcc-14-3-0:1.1.1.1 perseant-exfatfs-base-20250801:1.1.1.1 netbsd-11:1.1.1.1.0.10 netbsd-11-base:1.1.1.1 gcc-12-5-0:1.1.1.1 netbsd-10-1-RELEASE:1.1.1.1 perseant-exfatfs-base-20240630:1.1.1.1 gcc-12-4-0:1.1.1.1 perseant-exfatfs:1.1.1.1.0.8 perseant-exfatfs-base:1.1.1.1 netbsd-10-0-RELEASE:1.1.1.1 netbsd-10-0-RC6:1.1.1.1 netbsd-10-0-RC5:1.1.1.1 netbsd-10-0-RC4:1.1.1.1 netbsd-10-0-RC3:1.1.1.1 netbsd-10-0-RC2:1.1.1.1 netbsd-10-0-RC1:1.1.1.1 gcc-12-3-0:1.1.1.1 gcc-10-5-0:1.1.1.1 netbsd-10:1.1.1.1.0.6 netbsd-10-base:1.1.1.1 gcc-10-4-0:1.1.1.1 cjep_sun2x-base1:1.1.1.1 cjep_sun2x:1.1.1.1.0.4 cjep_sun2x-base:1.1.1.1 cjep_staticlib_x-base1:1.1.1.1 cjep_staticlib_x:1.1.1.1.0.2 cjep_staticlib_x-base:1.1.1.1 gcc-10-3-0:1.1.1.1 FSF:1.1.1; locks; strict; comment @# @; 1.1 date 2021.04.10.22.09.57; author mrg; state Exp; branches 1.1.1.1; next ; commitid eC4g0MRpqTvEkNOC; 1.1.1.1 date 2021.04.10.22.09.57; author mrg; state Exp; branches; next ; commitid eC4g0MRpqTvEkNOC; desc @@ 1.1 log @Initial revision @ text @#!/bin/bash # "sh update_web_docs_libstdcxx_git" # Checks out a copy of the libstdc++-v3 "inner" documentation and puts # it in the onlinedocs area. For an initial description of "inner" # docs, see the thread starting with # http://gcc.gnu.org/ml/libstdc++/2000-11/msg00475.html ##################################################################### GITROOT=${GITROOT:-"/git/gcc.git"} GETTHIS='libstdc++-v3/doc/html' WWWDIR=/www/gcc/htdocs/onlinedocs/libstdc++ #WWWDIR=/tmp/fake-onlinedocs-testing ## No more changes should be needed. Ha, right, whatever. ##################################################################### FILTER="newer or same age version exists|0 blocks" PATH=/usr/local/bin:$PATH export GITROOT test -d $WWWDIR || /bin/mkdir $WWWDIR test -d $WWWDIR || { echo something is very wrong ; exit 1; } WORKDIR=/tmp/v3-doc-update.$$ /bin/rm -rf $WORKDIR /bin/mkdir $WORKDIR cd $WORKDIR # checkout all the HTML files, get down into an interesting directory git -C $GITROOT archive master $GETTHIS | tar xf - cd $GETTHIS # copy the tree to the onlinedocs area, preserve directory structure find . -depth -print | cpio -pd $WWWDIR 2>&1 | egrep -v "$FILTER" err=${PIPESTATUS[1]} if [ $err -gt 0 ]; then printf "\nCopying failed with error code %d.\n" $err fi cd / /bin/rm -rf $WORKDIR @ 1.1.1.1 log @initial import of GCC 10.3.0. main changes include: caveats: - ABI issue between c++14 and c++17 fixed - profile mode is removed from libstdc++ - -fno-common is now the default new features: - new flags -fallocation-dce, -fprofile-partial-training, -fprofile-reproducible, -fprofile-prefix-path, and -fanalyzer - many new compile and link time optimisations - enhanced drive optimisations - openacc 2.6 support - openmp 5.0 features - new warnings: -Wstring-compare and -Wzero-length-bounds - extended warnings: -Warray-bounds, -Wformat-overflow, -Wrestrict, -Wreturn-local-addr, -Wstringop-overflow, -Warith-conversion, -Wmismatched-tags, and -Wredundant-tags - some likely C2X features implemented - more C++20 implemented - many new arm & intel CPUs known hundreds of reported bugs are fixed. full list of changes can be found at: https://gcc.gnu.org/gcc-10/changes.html @ text @@