This directory contains the GNU Compiler Collection (GCC). The GNU Compiler Collection is free software. See the files whose names start with COPYING for copying permission. The manuals, and some of the runtime libraries, are under different terms; see the individual source files for details. The directory INSTALL contains copies of the installation information as HTML and plain text. The source of this information is gcc/doc/install.texi. The installation information includes details of what is included in the GCC sources and what files GCC installs. See the file gcc/doc/gcc.texi (together with other files that it includes) for usage and porting information. An online readable version of the manual is in the files gcc/doc/gcc.info*. See http://gcc.gnu.org/bugs/ for how to report bugs usefully. Copyright years on GCC source files may be listed using range notation, e.g., 1987-2012, indicating that every year in the range, inclusive, is a copyrightable year that could otherwise be listed individually.
Matthew Malcomson
authored
According to the editorconfig file format description, a match against one of multiple different strings is described with those different strings separated by commas and within curly braces. E.g. [{x,y}.txt] https://editorconfig.org/ , under "Wildcard Patterns". The current libstdc++-v3/.editorconfig file has a few places where we match against similar globs by using strings separated by commas but without the curly braces. E.g. [*.h,*.cc] This doesn't take affect in neovim nor emacs (as far as I can tell), I haven't looked into other editors. I would expect that following the standard syntax described in the documentation would satisfy more editors. Hence this patch suggests following that standard by using something like: [*.{h,cc}] libstdc++-v3/ChangeLog: * .editorconfig: Adjust globbing style to standard syntax. Signed-off-by:Matthew Malcomson <mmalcomson@nvidia.com>