Home | History | Annotate | Download | only in config
History log of /src/external/gpl3/gcc/dist/libgcc/config/t-darwin
RevisionDateAuthorComments
 1.1  01-Mar-2014  mrg branches: 1.1.1;
Initial revision
 1.1.1.9  13-Sep-2025  mrg initial import of GCC 14.3.0.

major changes in GCC 13:
- improved sanitizer
- zstd debug info compression
- LTO improvements
- SARIF based diagnostic support
- new warnings: -Wxor-used-as-pow, -Wenum-int-mismatch, -Wself-move,
-Wdangling-reference
- many new -Wanalyzer* specific warnings
- enhanced warnings: -Wpessimizing-move, -Wredundant-move
- new attributes to mark file descriptors, c++23 "assume"
- several C23 features added
- several C++23 features added
- many new features for Arm, x86, RISC-V

major changes in GCC 14:
- more strict C99 or newer support
- ia64* marked deprecated (but seemingly still in GCC 15.)
- several new hardening features
- support for "hardbool", which can have user supplied values of true/false
- explicit support for stack scrubbing upon function exit
- better auto-vectorisation support
- added clang-compatible __has_feature and __has_extension
- more C23, including -std=c23
- several C++26 features added
- better diagnostics in C++ templates
- new warnings: -Wnrvo, Welaborated-enum-base
- many new features for Arm, x86, RISC-V
- possible ABI breaking change for SPARC64 and small structures with arrays
of floats.
 1.1.1.8  30-Jun-2024  mrg import GCC 12.4.0.

this includes at least 85 GCC PRs fixed, 2 C, 17 C++, 16 libstdc++-v3,
at least 13 target-specific (x86, arm64, riscv mostly), and at least
24 optimisation PRs.
 1.1.1.7  30-Jul-2023  mrg branches: 1.1.1.7.2;
initial import of GCC 12.3.0.

major changes in GCC 11 included:

- The default mode for C++ is now -std=gnu++17 instead of -std=gnu++14.
- When building GCC itself, the host compiler must now support C++11,
rather than C++98.
- Some short options of the gcov tool have been renamed: -i to -j and
-j to -H.
- ThreadSanitizer improvements.
- Introduce Hardware-assisted AddressSanitizer support.
- For targets that produce DWARF debugging information GCC now defaults
to DWARF version 5. This can produce up to 25% more compact debug
information compared to earlier versions.
- Many optimisations.
- The existing malloc attribute has been extended so that it can be
used to identify allocator/deallocator API pairs. A pair of new
-Wmismatched-dealloc and -Wmismatched-new-delete warnings are added.
- Other new warnings:
-Wsizeof-array-div, enabled by -Wall, warns about divisions of two
sizeof operators when the first one is applied to an array and the
divisor does not equal the size of the array element.
-Wstringop-overread, enabled by default, warns about calls to string
functions reading past the end of the arrays passed to them as
arguments.
-Wtsan, enabled by default, warns about unsupported features in
ThreadSanitizer (currently std::atomic_thread_fence).
- Enchanced warnings:
-Wfree-nonheap-object detects many more instances of calls to
deallocation functions with pointers not returned from a dynamic
memory allocation function.
-Wmaybe-uninitialized diagnoses passing pointers or references to
uninitialized memory to functions taking const-qualified arguments.
-Wuninitialized detects reads from uninitialized dynamically
allocated memory.
-Warray-parameter warns about functions with inconsistent array forms.
-Wvla-parameter warns about functions with inconsistent VLA forms.
- Several new features from the upcoming C2X revision of the ISO C
standard are supported with -std=c2x and -std=gnu2x.
- Several C++20 features have been implemented.
- The C++ front end has experimental support for some of the upcoming
C++23 draft.
- Several new C++ warnings.
- Enhanced Arm, AArch64, x86, and RISC-V CPU support.
- The implementation of how program state is tracked within
-fanalyzer has been completely rewritten with many enhancements.

see https://gcc.gnu.org/gcc-11/changes.html for a full list.

major changes in GCC 12 include:

- An ABI incompatibility between C and C++ when passing or returning
by value certain aggregates containing zero width bit-fields has
been discovered on various targets. x86-64, ARM and AArch64
will always ignore them (so there is a C ABI incompatibility
between GCC 11 and earlier with GCC 12 or later), PowerPC64 ELFv2
always take them into account (so there is a C++ ABI
incompatibility, GCC 4.4 and earlier compatible with GCC 12 or
later, incompatible with GCC 4.5 through GCC 11). RISC-V has
changed the handling of these already starting with GCC 10. As
the ABI requires, MIPS takes them into account handling function
return values so there is a C++ ABI incompatibility with GCC 4.5
through 11.
- STABS: Support for emitting the STABS debugging format is
deprecated and will be removed in the next release. All ports now
default to emit DWARF (version 2 or later) debugging info or are
obsoleted.
- Vectorization is enabled at -O2 which is now equivalent to the
original -O2 -ftree-vectorize -fvect-cost-model=very-cheap.
- GCC now supports the ShadowCallStack sanitizer.
- Support for __builtin_shufflevector compatible with the clang
language extension was added.
- Support for attribute unavailable was added.
- Support for __builtin_dynamic_object_size compatible with the
clang language extension was added.
- New warnings:
-Wbidi-chars warns about potentially misleading UTF-8
bidirectional control characters.
-Warray-compare warns about comparisons between two operands of
array type.
- Some new features from the upcoming C2X revision of the ISO C
standard are supported with -std=c2x and -std=gnu2x.
- Several C++23 features have been implemented.
- Many C++ enhancements across warnings and -f options.

see https://gcc.gnu.org/gcc-12/changes.html for a full list.
 1.1.1.6  11-Jul-2023  mrg initial import of GCC 10.5.0.

(we plan to import 12.3 soon as well, this is mostly so it can be pulled up
to netbsd-10 branch more easily.)

the list of PR's fixed since 10.4.0 can be found here:

https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=10.5

which includes 3 C, 25 C++, 4 debug, 17 libstdc++, and many others for the
internals.
 1.1.1.5  22-Jul-2022  mrg branches: 1.1.1.5.2;
initial import of GCC 10.4.0 sources.

mostly a large list of PRs fixed (210 total), plus one x86-64
specific change related to MMX and 64 bit integer return.

https://gcc.gnu.org/gcc-10/changes.html links to the full list
of PRs fixed.
 1.1.1.4  05-Sep-2020  mrg initial import of GCC 9.3.0. changes include:

- live patching support
- shell completion help
- generally better diagnostic output (less verbose/more useful)
- diagnostics and optimisation choices can be emitted in json
- asan memory usage reduction
- many general, and specific to switch, inter-procedure,
profile and link-time optimisations. from the release notes:
"Overall compile time of Firefox 66 and LibreOffice 6.2.3 on
an 8-core machine was reduced by about 5% compared to GCC 8.3"
- OpenMP 5.0 support
- better spell-guesser
- partial experimental support for c2x and c++2a
- c++17 is no longer experimental
- arm AAPCS GCC 6-8 structure passing bug fixed, may cause
incompatibility (restored compat with GCC 5 and earlier.)
- openrisc support
 1.1.1.3  11-Mar-2020  mrg import GCC 8.4. it fixes at least these 210 PRs in GCC bugzilla:

90095 93348 89906 89766 86747 87770 89588 89753 88235 89762 89684 89946
89965 90010 90026 90733 90810 90840 90842 90867 91623 92930 93073 93402
93505 93576 93744 93820 93908 85762 86429 86521 87327 87480 87513 87554
87685 87748 88183 88380 88394 88419 88690 88820 89381 89422 89576 89831
89917 90951 92003 92852 93140 80791 89358 89970 90899 89212 89419 92745
93684 93789 88273 91826 92376 84746 89497 89595 89664 89711 89725 90018
90316 90900 91108 91293 91772 92763 93054 93246 90313 92420 93434 93767
88530 89517 91838 79262 84680 85459 85711 85860 86567 87008 87651 87652
88469 89546 89827 90197 93072 93241 81800 89190 85400 91472 91854 92095
92131 92575 93704 60228 61414 65782 89405 89498 89703 89752 90187 90193
90898 91401 91450 91665 92296 92384 92438 92615 92648 92723 92732 92904
93087 93228 93515 93905 82081 92859 89712 89876 92106 82645 78552 81266
85965 89102 90165 90299 90532 91436 92059 93205 93325 93562 90359 91280
91375 92674 92704 93439 92768 80938 83361 90563 92113 92961 87833 89848
89902 89903 92022 93828 78179 79221 82920 84016 87015 88075 89077 89266
90454 90634 91226 92154 92664 92886 93065 92692 92629 80590 91944 92899
92977 93463 89601 88025 91660 91845 90498 91077 84487 86119 89174 89981
91550 92569 84135 84974 90872 93714
 1.1.1.2  02-Feb-2018  mrg branches: 1.1.1.2.4; 1.1.1.2.6;
import GCC 6.4.0. see this url for details which are too large to
include here:

http://gcc.gnu.org/gcc-6/changes.html

the main visible changes appear to be:

- The default mode for C++ is now -std=gnu++14 instead of -std=gnu++98.
- The C and C++ compilers now support attributes on enumerators.
- Diagnostics can now contain "fix-it hints"
- more warnings (some added to -Wall)
 1.1.1.1  01-Mar-2014  mrg branches: 1.1.1.1.4; 1.1.1.1.8;
import GCC 4.8 branch at r206687.

highlights from: http://gcc.gnu.org/gcc-4.6/changes.html

GCC now has stricter checks for invalid command-line options
New -Wunused-but-set-variable and -Wunused-but-set-parameter
warnings
Many platforms have been obsoleted
Link-time optimization improvements
A new switch -fstack-usage has been added
A new function attribute leaf was introduced
A new warning, enabled by -Wdouble-promotion
Support for selectively enabling and disabling warnings via
#pragma GCC diagnostic has been added
There is now experimental support for some features from the
upcoming C1X revision of the ISO C standard
Improved experimental support for the upcoming C++0x ISO C++
standard
G++ now issues clearer diagnostics in several cases
Updates for ARM, x86, MIPS, PPC/PPC64, SPARC
Darwin, FreeBSD, Solaris 2, MinGW and Cygwin now all support
__float128 on 32-bit and 64-bit x86 targets. [*1]

highlights from: http://gcc.gnu.org/gcc-4.7/changes.html

The -fconserve-space flag has been deprecated
Support for a new parameter --param case-values-threshold=n
was added
Interprocedural and Link-time optimization improvements
A new built-in, __builtin_assume_aligned, has been added
A new warning option -Wunused-local-typedefs was added
A new experimental command-line option -ftrack-macro-expansion
was added
Support for atomic operations specifying the C++11/C11 memory
model has been added
There is support for some more features from the C11 revision
of the ISO C standard
Improved experimental support for the new ISO C++ standard,
C++11
Updates for ARM, x86, MIPS, PPC/PPC64, SH, SPARC, TILE*
A new option (-grecord-gcc-switches) was added

highlights from: http://gcc.gnu.org/gcc-4.8/changes.html

GCC now uses C++ as its implementation language. This means
that to build GCC from sources, you will need a C++
compiler that understands C++ 2003
DWARF4 is now the default when generating DWARF debug
information
A new general optimization level, -Og, has been introduced
A new option -ftree-partial-pre was added
The option -fconserve-space has been removed
The command-line options -fipa-struct-reorg and
-fipa-matrix-reorg have been removed
Interprocedural and Link-time optimization improvements
AddressSanitizer, a fast memory error detector, has been
added [*2]
A new -Wsizeof-pointer-memaccess warning has been added
G++ now supports a -std=c++1y option for experimentation
with features proposed for the next revision of the
standard, expected around 2014
Improved experimental support for the new ISO C++ standard,
C++11
A new port has been added to support AArch64
Updates for ARM, x86, MIPS, PPC/PPC64, SH, SPARC, TILE*


[*1] we should support this too!
[*2] we should look into this.
https://code.google.com/p/address-sanitizer/
 1.1.1.7.2.1  01-Jul-2024  perseant Sync with HEAD.
 1.1.1.5.2.1  13-Jul-2023  martin Sync to head external/gpl3/gcc/dist, pulling up the following revisions
(requested by mrg in ticket #231):

external/gpl3/gcc/dist/fixincludes/tests/base/objc/runtime.h up to 1.1.1.1
external/gpl3/gcc/dist/gcc/opts-jobserver.h up to 1.1.1.1
external/gpl3/gcc/dist/libgcc/config/t-darwin-min-1 up to 1.1.1.1
external/gpl3/gcc/dist/libgcc/config/t-darwin-min-5 up to 1.1.1.1
external/gpl3/gcc/dist/libgcc/config/t-darwin-min-8 up to 1.1.1.1
external/gpl3/gcc/dist/ChangeLog up to 1.1.1.21
external/gpl3/gcc/dist/LAST_UPDATED up to 1.18
external/gpl3/gcc/dist/MD5SUMS up to 1.18
external/gpl3/gcc/dist/NEWS up to 1.16
external/gpl3/gcc/dist/INSTALL/binaries.html up to 1.13
external/gpl3/gcc/dist/INSTALL/build.html up to 1.15
external/gpl3/gcc/dist/INSTALL/configure.html up to 1.15
external/gpl3/gcc/dist/INSTALL/download.html up to 1.14
external/gpl3/gcc/dist/INSTALL/finalinstall.html up to 1.13
external/gpl3/gcc/dist/INSTALL/gfdl.html up to 1.13
external/gpl3/gcc/dist/INSTALL/index.html up to 1.13
external/gpl3/gcc/dist/INSTALL/old.html up to 1.13
external/gpl3/gcc/dist/INSTALL/prerequisites.html up to 1.15
external/gpl3/gcc/dist/INSTALL/specific.html up to 1.14
external/gpl3/gcc/dist/INSTALL/test.html up to 1.13
external/gpl3/gcc/dist/config/ChangeLog up to 1.1.1.21
external/gpl3/gcc/dist/contrib/ChangeLog up to 1.1.1.21
external/gpl3/gcc/dist/contrib/header-tools/ChangeLog up to 1.1.1.11
external/gpl3/gcc/dist/contrib/reghunt/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/contrib/regression/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/fixincludes/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/fixincludes/fixincl.x up to 1.1.1.16
external/gpl3/gcc/dist/fixincludes/inclhack.def up to 1.1.1.15
external/gpl3/gcc/dist/fixincludes/tests/base/stdio.h up to 1.1.1.6
external/gpl3/gcc/dist/gcc/BASE-VER up to 1.1.1.19
external/gpl3/gcc/dist/gcc/ChangeLog up to 1.24
external/gpl3/gcc/dist/gcc/DATESTAMP up to 1.1.1.22
external/gpl3/gcc/dist/gcc/asan.c up to 1.1.1.13
external/gpl3/gcc/dist/gcc/bb-reorder.c up to 1.1.1.15
external/gpl3/gcc/dist/gcc/builtins.c up to 1.20
external/gpl3/gcc/dist/gcc/cfgbuild.c up to 1.1.1.11
external/gpl3/gcc/dist/gcc/cgraphclones.c up to 1.1.1.13
external/gpl3/gcc/dist/gcc/cgraphunit.c up to 1.1.1.14
external/gpl3/gcc/dist/gcc/config.gcc up to 1.72
external/gpl3/gcc/dist/gcc/cse.c up to 1.1.1.13
external/gpl3/gcc/dist/gcc/expr.c up to 1.19
external/gpl3/gcc/dist/gcc/function.c up to 1.1.1.18
external/gpl3/gcc/dist/gcc/function.h up to 1.1.1.12
external/gpl3/gcc/dist/gcc/gcc.c up to 1.25
external/gpl3/gcc/dist/gcc/generic-match-head.c up to 1.1.1.9
external/gpl3/gcc/dist/gcc/gimple-ssa-store-merging.c up to 1.1.1.9
external/gpl3/gcc/dist/gcc/ifcvt.c up to 1.1.1.15
external/gpl3/gcc/dist/gcc/ira-color.c up to 1.10
external/gpl3/gcc/dist/gcc/loop-invariant.c up to 1.1.1.13
external/gpl3/gcc/dist/gcc/lto-streamer-in.c up to 1.1.1.13
external/gpl3/gcc/dist/gcc/lto-wrapper.c up to 1.1.1.12
external/gpl3/gcc/dist/gcc/match.pd up to 1.1.1.13
external/gpl3/gcc/dist/gcc/omp-expand.c up to 1.1.1.8
external/gpl3/gcc/dist/gcc/omp-low.c up to 1.1.1.19
external/gpl3/gcc/dist/gcc/optabs.c up to 1.1.1.15
external/gpl3/gcc/dist/gcc/optc-save-gen.awk up to 1.1.1.10
external/gpl3/gcc/dist/gcc/opts-common.c up to 1.1.1.13
external/gpl3/gcc/dist/gcc/predict.c up to 1.1.1.12
external/gpl3/gcc/dist/gcc/ree.c up to 1.1.1.12
external/gpl3/gcc/dist/gcc/reg-stack.c up to 1.1.1.11
external/gpl3/gcc/dist/gcc/regrename.c up to 1.1.1.11
external/gpl3/gcc/dist/gcc/sanopt.c up to 1.1.1.10
external/gpl3/gcc/dist/gcc/selftest-diagnostic.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/symbol-summary.h up to 1.1.1.9
external/gpl3/gcc/dist/gcc/tree-inline.c up to 1.1.1.18
external/gpl3/gcc/dist/gcc/tree-loop-distribution.c up to 1.1.1.13
external/gpl3/gcc/dist/gcc/tree-nested.c up to 1.1.1.13
external/gpl3/gcc/dist/gcc/tree-sra.c up to 1.1.1.17
external/gpl3/gcc/dist/gcc/tree-ssa-ccp.c up to 1.16
external/gpl3/gcc/dist/gcc/tree-ssa-dom.c up to 1.1.1.16
external/gpl3/gcc/dist/gcc/tree-ssa-loop-ivopts.c up to 1.1.1.14
external/gpl3/gcc/dist/gcc/tree-ssa-reassoc.c up to 1.1.1.18
external/gpl3/gcc/dist/gcc/tree-ssa-sccvn.c up to 1.1.1.18
external/gpl3/gcc/dist/gcc/tree-ssa-strlen.c up to 1.1.1.13
external/gpl3/gcc/dist/gcc/tree-ssa.c up to 1.1.1.13
external/gpl3/gcc/dist/gcc/tree.c up to 1.5
external/gpl3/gcc/dist/gcc/tree.h up to 1.5
external/gpl3/gcc/dist/gcc/varasm.c up to 1.14
external/gpl3/gcc/dist/gcc/wide-int.cc up to 1.1.1.10
external/gpl3/gcc/dist/gcc/wide-int.h up to 1.1.1.10
external/gpl3/gcc/dist/gcc/analyzer/ChangeLog up to 1.1.1.3
external/gpl3/gcc/dist/gcc/brig/ChangeLog up to 1.1.1.9
external/gpl3/gcc/dist/gcc/c/ChangeLog up to 1.1.1.19
external/gpl3/gcc/dist/gcc/c/c-parser.c up to 1.1.1.16
external/gpl3/gcc/dist/gcc/c/c-typeck.c up to 1.1.1.17
external/gpl3/gcc/dist/gcc/c-family/ChangeLog up to 1.1.1.18
external/gpl3/gcc/dist/gcc/c-family/c-common.c up to 1.1.1.17
external/gpl3/gcc/dist/gcc/c-family/c-ubsan.c up to 1.1.1.10
external/gpl3/gcc/dist/gcc/c-family/c-warn.c up to 1.1.1.8
external/gpl3/gcc/dist/gcc/common/config/i386/i386-cpuinfo.h up to 1.1.1.2
external/gpl3/gcc/dist/gcc/config/darwin.c up to 1.1.1.15
external/gpl3/gcc/dist/gcc/config/darwin.h up to 1.1.1.14
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64-c.c up to 1.1.1.9
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64-cores.def up to 1.1.1.12
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64-cost-tables.h up to 1.1.1.9
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64-fusion-pairs.def up to 1.1.1.8
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64-netbsd.h up to 1.7
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64-protos.h up to 1.1.1.13
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64-simd.md up to 1.1.1.13
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64-sve-builtins.cc up to 1.1.1.3
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64-sve.md up to 1.1.1.5
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64-tune.md up to 1.1.1.12
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64-tuning-flags.def up to 1.1.1.8
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64.c up to 1.1.1.19
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64.h up to 1.4
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64.md up to 1.1.1.17
external/gpl3/gcc/dist/gcc/config/aarch64/driver-aarch64.c up to 1.14
external/gpl3/gcc/dist/gcc/config/aarch64/iterators.md up to 1.1.1.14
external/gpl3/gcc/dist/gcc/config/i386/i386-builtin.def up to 1.1.1.8
external/gpl3/gcc/dist/gcc/config/i386/i386-expand.c up to 1.1.1.3
external/gpl3/gcc/dist/gcc/config/i386/i386-features.c up to 1.1.1.2
external/gpl3/gcc/dist/gcc/config/i386/i386-options.c up to 1.1.1.2
external/gpl3/gcc/dist/gcc/config/i386/smmintrin.h up to 1.1.1.11
external/gpl3/gcc/dist/gcc/config/i386/t-i386 up to 1.1.1.11
external/gpl3/gcc/dist/gcc/config/nvptx/nvptx.c up to 1.1.1.12
external/gpl3/gcc/dist/gcc/config/nvptx/nvptx.h up to 1.1.1.9
external/gpl3/gcc/dist/gcc/config/nvptx/nvptx.md up to 1.1.1.9
external/gpl3/gcc/dist/gcc/config/pa/pa.md up to 1.1.1.17
external/gpl3/gcc/dist/gcc/config/riscv/t-rtems up to 1.1.1.2
external/gpl3/gcc/dist/gcc/config/rs6000/altivec.md up to 1.1.1.19
external/gpl3/gcc/dist/gcc/config/rs6000/mma.md up to 1.1.1.3
external/gpl3/gcc/dist/gcc/config/rs6000/rs6000-builtin.def up to 1.1.1.19
external/gpl3/gcc/dist/gcc/config/rs6000/rs6000-call.c up to 1.1.1.3
external/gpl3/gcc/dist/gcc/config/rs6000/rs6000-logue.c up to 1.4
external/gpl3/gcc/dist/gcc/config/rs6000/rs6000-p8swap.c up to 1.1.1.6
external/gpl3/gcc/dist/gcc/config/rs6000/rs6000-protos.h up to 1.1.1.15
external/gpl3/gcc/dist/gcc/config/rs6000/rs6000.c up to 1.32
external/gpl3/gcc/dist/gcc/config/rs6000/rs6000.h up to 1.1.1.17
external/gpl3/gcc/dist/gcc/config/rs6000/rs6000.md up to 1.1.1.20
external/gpl3/gcc/dist/gcc/config/rs6000/rtems.h up to 1.1.1.11
external/gpl3/gcc/dist/gcc/config/rs6000/t-rtems up to 1.1.1.11
external/gpl3/gcc/dist/gcc/config/rs6000/vector.md up to 1.1.1.15
external/gpl3/gcc/dist/gcc/config/rs6000/vsx.md up to 1.1.1.20
external/gpl3/gcc/dist/gcc/config/s390/s390.c up to 1.1.1.18
external/gpl3/gcc/dist/gcc/config/sparc/sparc.c up to 1.1.1.19
external/gpl3/gcc/dist/gcc/cp/ChangeLog up to 1.1.1.22
external/gpl3/gcc/dist/gcc/cp/constexpr.c up to 1.1.1.14
external/gpl3/gcc/dist/gcc/cp/cp-gimplify.c up to 1.1.1.15
external/gpl3/gcc/dist/gcc/cp/cp-tree.h up to 1.1.1.15
external/gpl3/gcc/dist/gcc/cp/cvt.c up to 1.1.1.15
external/gpl3/gcc/dist/gcc/cp/decl.c up to 1.10
external/gpl3/gcc/dist/gcc/cp/decl2.c up to 1.1.1.18
external/gpl3/gcc/dist/gcc/cp/expr.c up to 1.1.1.12
external/gpl3/gcc/dist/gcc/cp/friend.c up to 1.1.1.12
external/gpl3/gcc/dist/gcc/cp/lambda.c up to 1.1.1.12
external/gpl3/gcc/dist/gcc/cp/parser.c up to 1.1.1.21
external/gpl3/gcc/dist/gcc/cp/pt.c up to 1.1.1.19
external/gpl3/gcc/dist/gcc/cp/semantics.c up to 1.1.1.20
external/gpl3/gcc/dist/gcc/cp/tree.c up to 1.1.1.18
external/gpl3/gcc/dist/gcc/cp/typeck.c up to 1.1.1.19
external/gpl3/gcc/dist/gcc/d/ChangeLog up to 1.1.1.4
external/gpl3/gcc/dist/gcc/d/d-convert.cc up to 1.1.1.4
external/gpl3/gcc/dist/gcc/d/decl.cc up to 1.1.1.4
external/gpl3/gcc/dist/gcc/d/expr.cc up to 1.1.1.4
external/gpl3/gcc/dist/gcc/d/gdc.texi up to 1.1.1.3
external/gpl3/gcc/dist/gcc/d/imports.cc up to 1.1.1.3
external/gpl3/gcc/dist/gcc/d/toir.cc up to 1.1.1.3
external/gpl3/gcc/dist/gcc/d/dmd/dinterpret.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/d/dmd/expressionsem.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/doc/cpp.1 up to 1.17
external/gpl3/gcc/dist/gcc/doc/cpp.info up to 1.16
external/gpl3/gcc/dist/gcc/doc/cppinternals.info up to 1.18
external/gpl3/gcc/dist/gcc/doc/cppopts.texi up to 1.10
external/gpl3/gcc/dist/gcc/doc/extend.texi up to 1.10
external/gpl3/gcc/dist/gcc/doc/fsf-funding.7 up to 1.15
external/gpl3/gcc/dist/gcc/doc/g++.1 up to 1.18
external/gpl3/gcc/dist/gcc/doc/gcc.1 up to 1.18
external/gpl3/gcc/dist/gcc/doc/gcc.info up to 1.16
external/gpl3/gcc/dist/gcc/doc/gccinstall.info up to 1.18
external/gpl3/gcc/dist/gcc/doc/gccint.info up to 1.17
external/gpl3/gcc/dist/gcc/doc/gcov-dump.1 up to 1.1.1.12
external/gpl3/gcc/dist/gcc/doc/gcov-tool.1 up to 1.11
external/gpl3/gcc/dist/gcc/doc/gcov.1 up to 1.17
external/gpl3/gcc/dist/gcc/doc/gfdl.7 up to 1.15
external/gpl3/gcc/dist/gcc/doc/gfortran.1 up to 1.14
external/gpl3/gcc/dist/gcc/doc/gpl.7 up to 1.15
external/gpl3/gcc/dist/gcc/doc/invoke.texi up to 1.23
external/gpl3/gcc/dist/gcc/doc/lto-dump.1 up to 1.1.1.3
external/gpl3/gcc/dist/gcc/fortran/ChangeLog up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/array.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/check.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/decl.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/dependency.c up to 1.1.1.3
external/gpl3/gcc/dist/gcc/fortran/expr.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/f95-lang.c up to 1.1.1.3
external/gpl3/gcc/dist/gcc/fortran/gfortran.info up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/interface.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/iresolve.c up to 1.1.1.3
external/gpl3/gcc/dist/gcc/fortran/match.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/parse.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/primary.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/resolve.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/simplify.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/symbol.c up to 1.1.1.3
external/gpl3/gcc/dist/gcc/fortran/trans-decl.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/trans-expr.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/trans-intrinsic.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/trans-types.c up to 1.1.1.4
external/gpl3/gcc/dist/gcc/fortran/trans.h up to 1.1.1.3
external/gpl3/gcc/dist/gcc/jit/ChangeLog up to 1.1.1.14
external/gpl3/gcc/dist/gcc/lto/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/gcc/objc/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/gcc/objcp/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/include/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/intl/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/libbacktrace/ChangeLog up to 1.1.1.19
external/gpl3/gcc/dist/libcc1/ChangeLog up to 1.1.1.14
external/gpl3/gcc/dist/libcpp/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/libcpp/directives.c up to 1.1.1.13
external/gpl3/gcc/dist/libdecnumber/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/libgcc/ChangeLog up to 1.1.1.22
external/gpl3/gcc/dist/libgcc/config.host up to 1.33
external/gpl3/gcc/dist/libgcc/config/darwin10-unwind-find-enc-func.c up to 1.1.1.2
external/gpl3/gcc/dist/libgcc/config/t-darwin up to 1.1.1.6
external/gpl3/gcc/dist/libgcc/config/t-slibgcc-darwin up to 1.1.1.4
external/gpl3/gcc/dist/libgcc/config/avr/libf7/ChangeLog up to 1.1.1.3
external/gpl3/gcc/dist/libgcc/config/avr/libf7/libf7-asm.sx up to 1.1.1.2
external/gpl3/gcc/dist/libgcc/config/i386/cpuinfo.c up to 1.1.1.11
external/gpl3/gcc/dist/libgcc/config/libbid/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/libgcc/config/riscv/div.S up to 1.1.1.7
external/gpl3/gcc/dist/libgcc/config/riscv/riscv-asm.h up to 1.1.1.4
external/gpl3/gcc/dist/libgfortran/ChangeLog up to 1.1.1.4
external/gpl3/gcc/dist/libgomp/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/libgomp/libgomp.info up to 1.15
external/gpl3/gcc/dist/libgomp/libgomp.texi up to 1.1.1.11
external/gpl3/gcc/dist/libgomp/target.c up to 1.1.1.9
external/gpl3/gcc/dist/libgomp/task.c up to 1.1.1.12
external/gpl3/gcc/dist/libhsail-rt/ChangeLog up to 1.1.1.9
external/gpl3/gcc/dist/libiberty/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/libiberty/strstr.c up to 1.1.1.2
external/gpl3/gcc/dist/libobjc/ChangeLog up to 1.1.1.21
external/gpl3/gcc/dist/libphobos/ChangeLog up to 1.1.1.4
external/gpl3/gcc/dist/libphobos/src/std/path.d up to 1.1.1.2
external/gpl3/gcc/dist/libquadmath/ChangeLog up to 1.1.1.4
external/gpl3/gcc/dist/libquadmath/libquadmath.info up to 1.1.1.4
external/gpl3/gcc/dist/libquadmath/strtod/strtod_l.c up to 1.1.1.2
external/gpl3/gcc/dist/libsanitizer/ChangeLog up to 1.4
external/gpl3/gcc/dist/libsanitizer/configure.tgt up to 1.10
external/gpl3/gcc/dist/libssp/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/libstdc++-v3/ChangeLog up to 1.1.1.22
external/gpl3/gcc/dist/libstdc++-v3/config/os/gnu-linux/os_defines.h up to 1.1.1.11
external/gpl3/gcc/dist/libstdc++-v3/doc/doxygen/user.cfg.in up to 1.1.1.7
external/gpl3/gcc/dist/libstdc++-v3/doc/html/bk02.html up to 1.1.1.4
external/gpl3/gcc/dist/libstdc++-v3/doc/html/manual/api.html up to 1.1.1.11
external/gpl3/gcc/dist/libstdc++-v3/doc/html/manual/ext_demangling.html up to 1.1.1.7
external/gpl3/gcc/dist/libstdc++-v3/doc/html/manual/extensions.html up to 1.1.1.6
external/gpl3/gcc/dist/libstdc++-v3/doc/html/manual/index.html up to 1.1.1.14
external/gpl3/gcc/dist/libstdc++-v3/doc/xml/authors.xml up to 1.1.1.4
external/gpl3/gcc/dist/libstdc++-v3/doc/xml/manual/evolution.xml up to 1.1.1.10
external/gpl3/gcc/dist/libstdc++-v3/doc/xml/manual/extensions.xml up to 1.1.1.13
external/gpl3/gcc/dist/libstdc++-v3/doc/xml/manual/spine.xml up to 1.1.1.11
external/gpl3/gcc/dist/libstdc++-v3/include/Makefile.am up to 1.1.1.16
external/gpl3/gcc/dist/libstdc++-v3/include/Makefile.in up to 1.1.1.16
external/gpl3/gcc/dist/libstdc++-v3/include/bits/fs_path.h up to 1.1.1.6
external/gpl3/gcc/dist/libstdc++-v3/include/bits/gslice_array.h up to 1.1.1.12
external/gpl3/gcc/dist/libstdc++-v3/include/bits/indirect_array.h up to 1.1.1.12
external/gpl3/gcc/dist/libstdc++-v3/include/bits/list.tcc up to 1.1.1.12
external/gpl3/gcc/dist/libstdc++-v3/include/bits/mask_array.h up to 1.1.1.13
external/gpl3/gcc/dist/libstdc++-v3/include/bits/range_access.h up to 1.1.1.11
external/gpl3/gcc/dist/libstdc++-v3/include/bits/regex.h up to 1.1.1.13
external/gpl3/gcc/dist/libstdc++-v3/include/bits/regex.tcc up to 1.1.1.10
external/gpl3/gcc/dist/libstdc++-v3/include/bits/regex_automaton.h up to 1.1.1.11
external/gpl3/gcc/dist/libstdc++-v3/include/bits/regex_compiler.h up to 1.1.1.12
external/gpl3/gcc/dist/libstdc++-v3/include/bits/regex_compiler.tcc up to 1.1.1.10
external/gpl3/gcc/dist/libstdc++-v3/include/bits/regex_error.h up to 1.1.1.11
external/gpl3/gcc/dist/libstdc++-v3/include/bits/regex_executor.tcc up to 1.1.1.10
external/gpl3/gcc/dist/libstdc++-v3/include/bits/regex_scanner.h up to 1.1.1.11
external/gpl3/gcc/dist/libstdc++-v3/include/bits/regex_scanner.tcc up to 1.1.1.10
external/gpl3/gcc/dist/libstdc++-v3/include/bits/shared_ptr_base.h up to 1.1.1.16
external/gpl3/gcc/dist/libstdc++-v3/include/bits/slice_array.h up to 1.1.1.13
external/gpl3/gcc/dist/libstdc++-v3/include/bits/stl_iterator.h up to 1.1.1.14
external/gpl3/gcc/dist/libstdc++-v3/include/bits/stl_uninitialized.h up to 1.1.1.13
external/gpl3/gcc/dist/libstdc++-v3/include/experimental/numeric up to 1.1.1.8
external/gpl3/gcc/dist/libstdc++-v3/include/experimental/optional up to 1.1.1.12
external/gpl3/gcc/dist/libstdc++-v3/include/std/any up to 1.1.1.9
external/gpl3/gcc/dist/libstdc++-v3/include/std/memory up to 1.1.1.12
external/gpl3/gcc/dist/libstdc++-v3/include/std/numeric up to 1.1.1.12
external/gpl3/gcc/dist/libstdc++-v3/include/std/ranges up to 1.1.1.3
external/gpl3/gcc/dist/libstdc++-v3/include/std/span up to 1.1.1.3
external/gpl3/gcc/dist/libstdc++-v3/include/std/valarray up to 1.1.1.12
external/gpl3/gcc/dist/libstdc++-v3/python/libstdcxx/v6/xmethods.py up to 1.1.1.12
external/gpl3/gcc/dist/libstdc++-v3/src/c++11/thread.cc up to 1.1.1.12
external/gpl3/gcc/dist/libstdc++-v3/src/c++17/fs_path.cc up to 1.1.1.4
external/gpl3/gcc/dist/lto-plugin/ChangeLog up to 1.1.1.20
external/gpl3/gcc/dist/maintainer-scripts/ChangeLog up to 1.1.1.21

Import gcc 10.5.
 1.1.1.2.6.1  14-Aug-2020  martin Pull up the following, all via patch, requested by mrg in ticket #1049:

external/gpl3/gcc/dist/ChangeLog
external/gpl3/gcc/dist/LAST_UPDATED
external/gpl3/gcc/dist/MD5SUMS
external/gpl3/gcc/dist/NEWS
external/gpl3/gcc/dist/config/ChangeLog
external/gpl3/gcc/dist/contrib/ChangeLog
external/gpl3/gcc/dist/contrib/test_summary
external/gpl3/gcc/dist/contrib/header-tools/ChangeLog
external/gpl3/gcc/dist/contrib/reghunt/ChangeLog
external/gpl3/gcc/dist/contrib/regression/ChangeLog
external/gpl3/gcc/dist/fixincludes/ChangeLog
external/gpl3/gcc/dist/fixincludes/fixincl.x
external/gpl3/gcc/dist/fixincludes/inclhack.def
external/gpl3/gcc/dist/fixincludes/tests/base/architecture/ppc/math.h
external/gpl3/gcc/dist/fixincludes/tests/base/dispatch/object.h
external/gpl3/gcc/dist/fixincludes/tests/base/os/availability.h
external/gpl3/gcc/dist/fixincludes/tests/base/os/base.h
external/gpl3/gcc/dist/gcc/BASE-VER
external/gpl3/gcc/dist/gcc/ChangeLog
external/gpl3/gcc/dist/gcc/DATESTAMP
external/gpl3/gcc/dist/gcc/builtins.c
external/gpl3/gcc/dist/gcc/calls.c
external/gpl3/gcc/dist/gcc/cfgcleanup.c
external/gpl3/gcc/dist/gcc/cfghooks.c
external/gpl3/gcc/dist/gcc/cfghooks.h
external/gpl3/gcc/dist/gcc/cfgloop.h
external/gpl3/gcc/dist/gcc/cfgloopmanip.c
external/gpl3/gcc/dist/gcc/cfgrtl.c
external/gpl3/gcc/dist/gcc/combine.c
external/gpl3/gcc/dist/gcc/config.gcc
external/gpl3/gcc/dist/gcc/convert.c
external/gpl3/gcc/dist/gcc/dce.c
external/gpl3/gcc/dist/gcc/df-core.c
external/gpl3/gcc/dist/gcc/dse.c
external/gpl3/gcc/dist/gcc/dwarf2out.c
external/gpl3/gcc/dist/gcc/except.c
external/gpl3/gcc/dist/gcc/explow.c
external/gpl3/gcc/dist/gcc/expmed.c
external/gpl3/gcc/dist/gcc/expr.c
external/gpl3/gcc/dist/gcc/final.c
external/gpl3/gcc/dist/gcc/fold-const.c
external/gpl3/gcc/dist/gcc/function.c
external/gpl3/gcc/dist/gcc/gcse.c
external/gpl3/gcc/dist/gcc/gengtype-lex.c
external/gpl3/gcc/dist/gcc/ggc-page.c
external/gpl3/gcc/dist/gcc/gimple-fold.c
external/gpl3/gcc/dist/gcc/gimple-pretty-print.c
external/gpl3/gcc/dist/gcc/gimple-ssa-sprintf.c
external/gpl3/gcc/dist/gcc/gimple-ssa-strength-reduction.c
external/gpl3/gcc/dist/gcc/gimple.c
external/gpl3/gcc/dist/gcc/gimple.h
external/gpl3/gcc/dist/gcc/gimplify.c
external/gpl3/gcc/dist/gcc/graphite-scop-detection.c
external/gpl3/gcc/dist/gcc/input.c
external/gpl3/gcc/dist/gcc/internal-fn.c
external/gpl3/gcc/dist/gcc/internal-fn.h
external/gpl3/gcc/dist/gcc/ipa-cp.c
external/gpl3/gcc/dist/gcc/ipa-icf-gimple.c
external/gpl3/gcc/dist/gcc/ipa-inline.c
external/gpl3/gcc/dist/gcc/ipa-prop.c
external/gpl3/gcc/dist/gcc/ipa-pure-const.c
external/gpl3/gcc/dist/gcc/ipa-reference.c
external/gpl3/gcc/dist/gcc/ipa-utils.c
external/gpl3/gcc/dist/gcc/ipa-utils.h
external/gpl3/gcc/dist/gcc/ira.c
external/gpl3/gcc/dist/gcc/loop-unroll.c
external/gpl3/gcc/dist/gcc/lra-constraints.c
external/gpl3/gcc/dist/gcc/lra.c
external/gpl3/gcc/dist/gcc/lto-streamer-in.c
external/gpl3/gcc/dist/gcc/lto-streamer-out.c
external/gpl3/gcc/dist/gcc/lto-streamer.h
external/gpl3/gcc/dist/gcc/lto-wrapper.c
external/gpl3/gcc/dist/gcc/match.pd
external/gpl3/gcc/dist/gcc/omp-expand.c
external/gpl3/gcc/dist/gcc/omp-low.c
external/gpl3/gcc/dist/gcc/omp-simd-clone.c
external/gpl3/gcc/dist/gcc/optabs.c
external/gpl3/gcc/dist/gcc/optc-save-gen.awk
external/gpl3/gcc/dist/gcc/opth-gen.awk
external/gpl3/gcc/dist/gcc/opts-common.c
external/gpl3/gcc/dist/gcc/opts-global.c
external/gpl3/gcc/dist/gcc/opts.c
external/gpl3/gcc/dist/gcc/resource.c
external/gpl3/gcc/dist/gcc/rtl.h
external/gpl3/gcc/dist/gcc/rtlanal.c
external/gpl3/gcc/dist/gcc/store-motion.c
external/gpl3/gcc/dist/gcc/symtab.c
external/gpl3/gcc/dist/gcc/toplev.c
external/gpl3/gcc/dist/gcc/tree-cfg.c
external/gpl3/gcc/dist/gcc/tree-complex.c
external/gpl3/gcc/dist/gcc/tree-core.h
external/gpl3/gcc/dist/gcc/tree-data-ref.c
external/gpl3/gcc/dist/gcc/tree-data-ref.h
external/gpl3/gcc/dist/gcc/tree-inline.c
external/gpl3/gcc/dist/gcc/tree-inline.h
external/gpl3/gcc/dist/gcc/tree-loop-distribution.c
external/gpl3/gcc/dist/gcc/tree-outof-ssa.c
external/gpl3/gcc/dist/gcc/tree-scalar-evolution.c
external/gpl3/gcc/dist/gcc/tree-sra.c
external/gpl3/gcc/dist/gcc/tree-ssa-copy.c
external/gpl3/gcc/dist/gcc/tree-ssa-dom.c
external/gpl3/gcc/dist/gcc/tree-ssa-forwprop.c
external/gpl3/gcc/dist/gcc/tree-ssa-loop-ch.c
external/gpl3/gcc/dist/gcc/tree-ssa-loop-ivcanon.c
external/gpl3/gcc/dist/gcc/tree-ssa-loop-ivopts.c
external/gpl3/gcc/dist/gcc/tree-ssa-loop-split.c
external/gpl3/gcc/dist/gcc/tree-ssa-math-opts.c
external/gpl3/gcc/dist/gcc/tree-ssa-phiopt.c
external/gpl3/gcc/dist/gcc/tree-ssa-phiprop.c
external/gpl3/gcc/dist/gcc/tree-ssa-pre.c
external/gpl3/gcc/dist/gcc/tree-ssa-reassoc.c
external/gpl3/gcc/dist/gcc/tree-ssa-sccvn.c
external/gpl3/gcc/dist/gcc/tree-ssa-sccvn.h
external/gpl3/gcc/dist/gcc/tree-ssa-sink.c
external/gpl3/gcc/dist/gcc/tree-ssa-strlen.c
external/gpl3/gcc/dist/gcc/tree-ssa-structalias.c
external/gpl3/gcc/dist/gcc/tree-ssanames.c
external/gpl3/gcc/dist/gcc/tree-streamer-in.c
external/gpl3/gcc/dist/gcc/tree-streamer-out.c
external/gpl3/gcc/dist/gcc/tree-vect-data-refs.c
external/gpl3/gcc/dist/gcc/tree-vect-slp.c
external/gpl3/gcc/dist/gcc/tree-vect-stmts.c
external/gpl3/gcc/dist/gcc/tree-vrp.c
external/gpl3/gcc/dist/gcc/tree.c
external/gpl3/gcc/dist/gcc/tree.h
external/gpl3/gcc/dist/gcc/valtrack.c
external/gpl3/gcc/dist/gcc/varasm.c
external/gpl3/gcc/dist/gcc/xcoffout.c
external/gpl3/gcc/dist/gcc/xcoffout.h
external/gpl3/gcc/dist/gcc/brig/ChangeLog
external/gpl3/gcc/dist/gcc/c/ChangeLog
external/gpl3/gcc/dist/gcc/c/c-decl.c
external/gpl3/gcc/dist/gcc/c/c-parser.c
external/gpl3/gcc/dist/gcc/c/c-tree.h
external/gpl3/gcc/dist/gcc/c/c-typeck.c
external/gpl3/gcc/dist/gcc/c-family/ChangeLog
external/gpl3/gcc/dist/gcc/c-family/c-ada-spec.c
external/gpl3/gcc/dist/gcc/c-family/c-common.c
external/gpl3/gcc/dist/gcc/c-family/c-lex.c
external/gpl3/gcc/dist/gcc/c-family/c-omp.c
external/gpl3/gcc/dist/gcc/config/darwin-c.c
external/gpl3/gcc/dist/gcc/config/darwin-driver.c
external/gpl3/gcc/dist/gcc/config/darwin-protos.h
external/gpl3/gcc/dist/gcc/config/darwin.c
external/gpl3/gcc/dist/gcc/config/darwin.h
external/gpl3/gcc/dist/gcc/config/darwin.opt
external/gpl3/gcc/dist/gcc/config/darwin10.h
external/gpl3/gcc/dist/gcc/config/darwin9.h
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64-c.c
external/gpl3/gcc/dist/gcc/config/aarch64/aarch64.md
external/gpl3/gcc/dist/gcc/config/aarch64/cortex-a57-fma-steering.c
external/gpl3/gcc/dist/gcc/config/aarch64/iterators.md
external/gpl3/gcc/dist/gcc/config/alpha/alpha.c
external/gpl3/gcc/dist/gcc/config/arm/arm.c
external/gpl3/gcc/dist/gcc/config/arm/arm.h
external/gpl3/gcc/dist/gcc/config/arm/arm.md
external/gpl3/gcc/dist/gcc/config/arm/constraints.md
external/gpl3/gcc/dist/gcc/config/arm/neon.md
external/gpl3/gcc/dist/gcc/config/arm/t-rtems
external/gpl3/gcc/dist/gcc/config/avr/avr.c
external/gpl3/gcc/dist/gcc/config/i386/avx2intrin.h
external/gpl3/gcc/dist/gcc/config/i386/avxintrin.h
external/gpl3/gcc/dist/gcc/config/i386/cpuid.h
external/gpl3/gcc/dist/gcc/config/i386/darwin.h
external/gpl3/gcc/dist/gcc/config/i386/darwin32-biarch.h
external/gpl3/gcc/dist/gcc/config/i386/darwin64-biarch.h
external/gpl3/gcc/dist/gcc/config/i386/darwin64.h
external/gpl3/gcc/dist/gcc/config/i386/emmintrin.h
external/gpl3/gcc/dist/gcc/config/i386/i386-builtin.def
external/gpl3/gcc/dist/gcc/config/i386/i386.c
external/gpl3/gcc/dist/gcc/config/i386/i386.h
external/gpl3/gcc/dist/gcc/config/i386/i386.md
external/gpl3/gcc/dist/gcc/config/i386/sse.md
external/gpl3/gcc/dist/gcc/config/i386/t-darwin
external/gpl3/gcc/dist/gcc/config/i386/t-darwin32-biarch
external/gpl3/gcc/dist/gcc/config/i386/t-darwin64
external/gpl3/gcc/dist/gcc/config/i386/t-darwin64-biarch
external/gpl3/gcc/dist/gcc/config/nvptx/nvptx.c
external/gpl3/gcc/dist/gcc/config/pa/pa.c
external/gpl3/gcc/dist/gcc/config/pa/pa.md
external/gpl3/gcc/dist/gcc/config/rs6000/altivec.h
external/gpl3/gcc/dist/gcc/config/rs6000/altivec.md
external/gpl3/gcc/dist/gcc/config/rs6000/crypto.md
external/gpl3/gcc/dist/gcc/config/rs6000/darwin.h
external/gpl3/gcc/dist/gcc/config/rs6000/darwin.md
external/gpl3/gcc/dist/gcc/config/rs6000/darwin32-biarch.h
external/gpl3/gcc/dist/gcc/config/rs6000/darwin64-biarch.h
external/gpl3/gcc/dist/gcc/config/rs6000/darwin64.h
external/gpl3/gcc/dist/gcc/config/rs6000/darwin7.h
external/gpl3/gcc/dist/gcc/config/rs6000/rs6000-builtin.def
external/gpl3/gcc/dist/gcc/config/rs6000/rs6000-c.c
external/gpl3/gcc/dist/gcc/config/rs6000/rs6000.c
external/gpl3/gcc/dist/gcc/config/rs6000/rs6000.md
external/gpl3/gcc/dist/gcc/config/rs6000/t-darwin32-biarch
external/gpl3/gcc/dist/gcc/config/rs6000/t-darwin64
external/gpl3/gcc/dist/gcc/config/rs6000/t-darwin64-biarch
external/gpl3/gcc/dist/gcc/config/rs6000/t-darwin8
external/gpl3/gcc/dist/gcc/config/rs6000/t-linux
external/gpl3/gcc/dist/gcc/config/rs6000/vsx.md
external/gpl3/gcc/dist/gcc/config/s390/s390-builtins.def
external/gpl3/gcc/dist/gcc/config/s390/s390.c
external/gpl3/gcc/dist/gcc/config/s390/s390.md
external/gpl3/gcc/dist/gcc/config/s390/vector.md
external/gpl3/gcc/dist/gcc/config/s390/vx-builtins.md
external/gpl3/gcc/dist/gcc/config/sh/sh.c
external/gpl3/gcc/dist/gcc/config/sh/sh.h
external/gpl3/gcc/dist/gcc/config/sh/sh.md
external/gpl3/gcc/dist/gcc/config/sparc/sparc.c
external/gpl3/gcc/dist/gcc/config/sparc/sparc.md
external/gpl3/gcc/dist/gcc/config/xtensa/xtensa.c
external/gpl3/gcc/dist/gcc/cp/ChangeLog
external/gpl3/gcc/dist/gcc/cp/call.c
external/gpl3/gcc/dist/gcc/cp/class.c
external/gpl3/gcc/dist/gcc/cp/config-lang.in
external/gpl3/gcc/dist/gcc/cp/constexpr.c
external/gpl3/gcc/dist/gcc/cp/cp-tree.h
external/gpl3/gcc/dist/gcc/cp/decl.c
external/gpl3/gcc/dist/gcc/cp/decl2.c
external/gpl3/gcc/dist/gcc/cp/init.c
external/gpl3/gcc/dist/gcc/cp/lambda.c
external/gpl3/gcc/dist/gcc/cp/optimize.c
external/gpl3/gcc/dist/gcc/cp/parser.c
external/gpl3/gcc/dist/gcc/cp/pt.c
external/gpl3/gcc/dist/gcc/cp/semantics.c
external/gpl3/gcc/dist/gcc/cp/typeck.c
external/gpl3/gcc/dist/gcc/cp/vtable-class-hierarchy.c
external/gpl3/gcc/dist/gcc/doc/cpp.1
external/gpl3/gcc/dist/gcc/doc/cpp.info
external/gpl3/gcc/dist/gcc/doc/cppinternals.info
external/gpl3/gcc/dist/gcc/doc/extend.texi
external/gpl3/gcc/dist/gcc/doc/fsf-funding.7
external/gpl3/gcc/dist/gcc/doc/g++.1
external/gpl3/gcc/dist/gcc/doc/gcc.1
external/gpl3/gcc/dist/gcc/doc/gcc.info
external/gpl3/gcc/dist/gcc/doc/gccinstall.info
external/gpl3/gcc/dist/gcc/doc/gccint.info
external/gpl3/gcc/dist/gcc/doc/gcov-dump.1
external/gpl3/gcc/dist/gcc/doc/gcov-tool.1
external/gpl3/gcc/dist/gcc/doc/gcov.1
external/gpl3/gcc/dist/gcc/doc/gfdl.7
external/gpl3/gcc/dist/gcc/doc/gfortran.1
external/gpl3/gcc/dist/gcc/doc/gpl.7
external/gpl3/gcc/dist/gcc/doc/invoke.texi
external/gpl3/gcc/dist/gcc/doc/sourcebuild.texi
external/gpl3/gcc/dist/gcc/jit/ChangeLog
external/gpl3/gcc/dist/gcc/lto/ChangeLog
external/gpl3/gcc/dist/gcc/objc/ChangeLog
external/gpl3/gcc/dist/gcc/objc/objc-act.c
external/gpl3/gcc/dist/gcc/objc/objc-act.h
external/gpl3/gcc/dist/gcc/objcp/ChangeLog
external/gpl3/gcc/dist/gcc/objcp/config-lang.in
external/gpl3/gcc/dist/include/ChangeLog
external/gpl3/gcc/dist/intl/ChangeLog
external/gpl3/gcc/dist/libbacktrace/ChangeLog
external/gpl3/gcc/dist/libcc1/ChangeLog
external/gpl3/gcc/dist/libcpp/ChangeLog
external/gpl3/gcc/dist/libcpp/line-map.c
external/gpl3/gcc/dist/libdecnumber/ChangeLog
external/gpl3/gcc/dist/libgcc/ChangeLog
external/gpl3/gcc/dist/libgcc/config.host
external/gpl3/gcc/dist/libgcc/config/t-darwin
external/gpl3/gcc/dist/libgcc/config/libbid/ChangeLog
external/gpl3/gcc/dist/libgcc/config/rs6000/darwin-vecsave.S
external/gpl3/gcc/dist/libgcc/config/rs6000/t-darwin
external/gpl3/gcc/dist/libgcc/config/rs6000/t-darwin64
external/gpl3/gcc/dist/libgomp/ChangeLog
external/gpl3/gcc/dist/libgomp/plugin/plugin-hsa.c
external/gpl3/gcc/dist/libhsail-rt/ChangeLog
external/gpl3/gcc/dist/libiberty/ChangeLog
external/gpl3/gcc/dist/libiberty/simple-object-elf.c
external/gpl3/gcc/dist/libobjc/ChangeLog
external/gpl3/gcc/dist/libsanitizer/ChangeLog
external/gpl3/gcc/dist/libssp/ChangeLog
external/gpl3/gcc/dist/libstdc++-v3/ChangeLog
external/gpl3/gcc/dist/libstdc++-v3/Makefile.in
external/gpl3/gcc/dist/libstdc++-v3/acinclude.m4
external/gpl3/gcc/dist/libstdc++-v3/configure
external/gpl3/gcc/dist/libstdc++-v3/configure.ac
external/gpl3/gcc/dist/libstdc++-v3/configure.host
external/gpl3/gcc/dist/libstdc++-v3/doc/Makefile.am
external/gpl3/gcc/dist/libstdc++-v3/doc/Makefile.in
external/gpl3/gcc/dist/libstdc++-v3/doc/html/manual/documentation_hacking.html
external/gpl3/gcc/dist/libstdc++-v3/doc/html/manual/memory.html
external/gpl3/gcc/dist/libstdc++-v3/doc/html/manual/status.html
external/gpl3/gcc/dist/libstdc++-v3/doc/xml/manual/allocator.xml
external/gpl3/gcc/dist/libstdc++-v3/doc/xml/manual/documentation_hacking.xml
external/gpl3/gcc/dist/libstdc++-v3/doc/xml/manual/shared_ptr.xml
external/gpl3/gcc/dist/libstdc++-v3/doc/xml/manual/status_cxx2017.xml
external/gpl3/gcc/dist/libstdc++-v3/include/Makefile.in
external/gpl3/gcc/dist/libstdc++-v3/include/bits/char_traits.h
external/gpl3/gcc/dist/libstdc++-v3/include/bits/forward_list.tcc
external/gpl3/gcc/dist/libstdc++-v3/include/bits/random.h
external/gpl3/gcc/dist/libstdc++-v3/include/bits/stl_uninitialized.h
external/gpl3/gcc/dist/libstdc++-v3/include/bits/unique_ptr.h
external/gpl3/gcc/dist/libstdc++-v3/include/experimental/any
external/gpl3/gcc/dist/libstdc++-v3/include/experimental/type_traits
external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/fs_path.h
external/gpl3/gcc/dist/libstdc++-v3/include/std/any
external/gpl3/gcc/dist/libstdc++-v3/include/std/optional
external/gpl3/gcc/dist/libstdc++-v3/include/std/variant
external/gpl3/gcc/dist/libstdc++-v3/libsupc++/Makefile.in
external/gpl3/gcc/dist/libstdc++-v3/libsupc++/cxxabi.h
external/gpl3/gcc/dist/libstdc++-v3/libsupc++/guard_error.cc
external/gpl3/gcc/dist/libstdc++-v3/libsupc++/hash_bytes.cc
external/gpl3/gcc/dist/libstdc++-v3/libsupc++/new_opa.cc
external/gpl3/gcc/dist/libstdc++-v3/python/Makefile.in
external/gpl3/gcc/dist/libstdc++-v3/python/libstdcxx/v6/xmethods.py
external/gpl3/gcc/dist/libstdc++-v3/scripts/make_exports.pl
external/gpl3/gcc/dist/libstdc++-v3/src/Makefile.am
external/gpl3/gcc/dist/libstdc++-v3/src/Makefile.in
external/gpl3/gcc/dist/libstdc++-v3/src/c++11/Makefile.in
external/gpl3/gcc/dist/libstdc++-v3/src/c++17/Makefile.in
external/gpl3/gcc/dist/libstdc++-v3/src/c++98/Makefile.in
external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/Makefile.in
external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/path.cc
external/gpl3/gcc/dist/lto-plugin/ChangeLog
external/gpl3/gcc/dist/maintainer-scripts/ChangeLog
external/gpl3/gcc/lib/libgcc/arch/powerpc64/auto-target.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/aarch64/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/alpha/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/armeb/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earm/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earmeb/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earmhf/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earmhfeb/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv4/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv4eb/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv6/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv6eb/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv6hf/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv6hfeb/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv7/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv7eb/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv7hf/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv7hfeb/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/hppa/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/i386/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/ia64/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/m68000/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/m68k/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/mips64eb/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/mips64el/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/mipseb/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/mipsel/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/powerpc/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/powerpc64/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/riscv32/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/riscv64/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/sh3eb/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/sh3el/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/sparc/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/sparc64/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/vax/gcov-iov.h
external/gpl3/gcc/lib/libgcc/libgcov/arch/x86_64/gcov-iov.h
external/gpl3/gcc/lib/libstdc++-v3/arch/aarch64/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/aarch64/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/alpha/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/alpha/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/arm/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/arm/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earm/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earm/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmeb/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmeb/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmhf/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmhf/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmhfeb/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmhfeb/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4eb/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4eb/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6eb/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6eb/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hf/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hf/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hfeb/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hfeb/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7eb/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7eb/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hf/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hf/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hfeb/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7hfeb/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/hppa/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/hppa/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/i386/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/i386/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/ia64/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/ia64/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/m68000/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/m68000/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/m68k/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/m68k/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/mips64eb/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/mips64eb/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/mips64el/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/mips64el/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/mipseb/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/mipseb/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/mipsel/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/mipsel/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc64/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc64/defs.mk
external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc64/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/riscv32/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/riscv32/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/riscv64/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/riscv64/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/sh3eb/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/sh3eb/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/sh3el/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/sh3el/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/sparc64/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/sparc64/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/vax/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/vax/gstdint.h
external/gpl3/gcc/lib/libstdc++-v3/arch/x86_64/c++config.h
external/gpl3/gcc/lib/libstdc++-v3/arch/x86_64/gstdint.h
external/gpl3/gcc/usr.bin/common/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/aarch64/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/aarch64/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/aarch64/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/aarch64/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/aarch64/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/alpha/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/alpha/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/alpha/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/alpha/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/alpha/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/arm/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/arm/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/arm/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/arm/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/arm/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/armeb/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/armeb/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/armeb/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/armeb/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/armeb/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earm/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earm/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earm/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earm/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earm/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earmeb/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earmeb/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earmeb/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earmeb/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earmeb/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earmhf/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earmhf/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earmhf/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earmhf/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earmhf/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earmhfeb/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earmhfeb/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earmhfeb/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earmhfeb/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earmhfeb/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv4/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv4/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv4/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earmv4/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earmv4/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv4eb/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv4eb/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv4eb/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earmv4eb/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earmv4eb/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv6/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv6/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv6/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earmv6/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earmv6/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv6eb/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv6eb/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv6eb/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earmv6eb/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earmv6eb/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv6hf/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv6hf/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv6hf/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earmv6hf/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earmv6hf/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv6hfeb/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv6hfeb/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv6hfeb/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earmv6hfeb/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earmv6hfeb/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv7/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv7/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv7/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earmv7/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earmv7/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv7eb/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv7eb/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv7eb/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earmv7eb/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earmv7eb/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv7hf/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv7hf/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv7hf/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earmv7hf/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earmv7hf/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv7hfeb/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv7hfeb/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/earmv7hfeb/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/earmv7hfeb/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/earmv7hfeb/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/hppa/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/hppa/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/hppa/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/hppa/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/hppa/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/i386/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/i386/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/i386/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/i386/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/i386/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/ia64/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/ia64/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/ia64/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/ia64/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/ia64/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/m68000/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/m68000/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/m68000/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/m68000/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/m68000/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/m68k/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/m68k/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/m68k/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/m68k/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/m68k/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/mips64eb/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/mips64eb/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/mips64eb/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/mips64eb/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/mips64eb/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/mips64el/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/mips64el/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/mips64el/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/mips64el/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/mips64el/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/mipseb/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/mipseb/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/mipseb/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/mipseb/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/mipseb/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/mipsel/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/mipsel/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/mipsel/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/mipsel/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/mipsel/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/powerpc/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/powerpc/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/powerpc/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/powerpc/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/powerpc/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/powerpc64/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/powerpc64/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/powerpc64/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/powerpc64/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/powerpc64/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/riscv32/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/riscv32/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/riscv32/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/riscv32/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/riscv32/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/riscv64/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/riscv64/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/riscv64/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/riscv64/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/riscv64/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/sh3eb/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/sh3eb/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/sh3eb/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/sh3eb/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/sh3eb/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/sh3el/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/sh3el/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/sh3el/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/sh3el/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/sh3el/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/sparc/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/sparc/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/sparc/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/sparc/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/sparc/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/sparc64/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/sparc64/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/sparc64/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/sparc64/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/sparc64/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/vax/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/vax/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/vax/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/vax/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/vax/plugin-version.h
external/gpl3/gcc/usr.bin/gcc/arch/x86_64/bversion.h
external/gpl3/gcc/usr.bin/gcc/arch/x86_64/configargs.h
external/gpl3/gcc/usr.bin/gcc/arch/x86_64/defs.mk
external/gpl3/gcc/usr.bin/gcc/arch/x86_64/gtyp-input.list
external/gpl3/gcc/usr.bin/gcc/arch/x86_64/plugin-version.h

Import GCC 7.5.0.
 1.1.1.2.4.1  08-Apr-2020  martin Merge changes from current as of 20200406
 1.1.1.1.8.2  19-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.1.1.1.8.1  01-Mar-2014  tls file t-darwin was added on branch tls-maxphys on 2014-08-19 23:54:23 +0000
 1.1.1.1.4.2  22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.1.1.1.4.1  01-Mar-2014  yamt file t-darwin was added on branch yamt-pagecache on 2014-05-22 16:36:24 +0000

RSS XML Feed