comparison gcc/doc/gcc.texi @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents f6334be47118
children 84e7813d76e9
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
38 @paragraphindent 1 38 @paragraphindent 1
39 39
40 @c %**end of header 40 @c %**end of header
41 41
42 @copying 42 @copying
43 Copyright @copyright{} 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 43 Copyright @copyright{} 1988-2017 Free Software Foundation, Inc.
44 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
45 2010 Free Software Foundation, Inc.
46 44
47 Permission is granted to copy, distribute and/or modify this document 45 Permission is granted to copy, distribute and/or modify this document
48 under the terms of the GNU Free Documentation License, Version 1.3 or 46 under the terms of the GNU Free Documentation License, Version 1.3 or
49 any later version published by the Free Software Foundation; with the 47 any later version published by the Free Software Foundation; with the
50 Invariant Sections being ``Funding Free Software'', the Front-Cover 48 Invariant Sections being ``Funding Free Software'', the Front-Cover
65 @ifnottex 63 @ifnottex
66 @dircategory Software development 64 @dircategory Software development
67 @direntry 65 @direntry
68 * gcc: (gcc). The GNU Compiler Collection. 66 * gcc: (gcc). The GNU Compiler Collection.
69 * g++: (gcc). The GNU C++ compiler. 67 * g++: (gcc). The GNU C++ compiler.
68 * gcov: (gcc) Gcov. @command{gcov}---a test coverage program.
69 * gcov-tool: (gcc) Gcov-tool. @command{gcov-tool}---an offline gcda profile processing program.
70 * gcov-dump: (gcc) Gcov-dump. @command{gcov-dump}---an offline gcda and gcno profile dump tool.
70 @end direntry 71 @end direntry
71 This file documents the use of the GNU compilers. 72 This file documents the use of the GNU compilers.
72 @sp 1 73 @sp 1
73 @insertcopying 74 @insertcopying
74 @sp 1 75 @sp 1
82 @page 83 @page
83 @vskip 0pt plus 1filll 84 @vskip 0pt plus 1filll
84 Published by: 85 Published by:
85 @multitable @columnfractions 0.5 0.5 86 @multitable @columnfractions 0.5 0.5
86 @item GNU Press 87 @item GNU Press
87 @tab Website: www.gnupress.org 88 @tab Website: @uref{http://www.gnupress.org}
88 @item a division of the 89 @item a division of the
89 @tab General: @tex press@@gnu.org @end tex 90 @tab General: @email{press@@gnu.org}
90 @item Free Software Foundation 91 @item Free Software Foundation
91 @tab Orders: @tex sales@@gnu.org @end tex 92 @tab Orders: @email{sales@@gnu.org}
92 @item 51 Franklin Street, Fifth Floor 93 @item 51 Franklin Street, Fifth Floor
93 @tab Tel 617-542-5942 94 @tab Tel 617-542-5942
94 @item Boston, MA 02110-1301 USA 95 @item Boston, MA 02110-1301 USA
95 @tab Fax 617-542-2652 96 @tab Fax 617-542-2652
96 @end multitable 97 @end multitable
110 @end titlepage 111 @end titlepage
111 @summarycontents 112 @summarycontents
112 @contents 113 @contents
113 @page 114 @page
114 115
115 @node Top, G++ and GCC,, (DIR) 116 @node Top, G++ and GCC
116 @top Introduction 117 @top Introduction
117 @cindex introduction 118 @cindex introduction
118 119
119 This manual documents how to use the GNU compilers, 120 This manual documents how to use the GNU compilers,
120 as well as their features and incompatibilities, and how to report 121 as well as their features and incompatibilities, and how to report
131 @menu 132 @menu
132 * G++ and GCC:: You can compile C or C++ programs. 133 * G++ and GCC:: You can compile C or C++ programs.
133 * Standards:: Language standards supported by GCC. 134 * Standards:: Language standards supported by GCC.
134 * Invoking GCC:: Command options supported by @samp{gcc}. 135 * Invoking GCC:: Command options supported by @samp{gcc}.
135 * C Implementation:: How GCC implements the ISO C specification. 136 * C Implementation:: How GCC implements the ISO C specification.
137 * C++ Implementation:: How GCC implements the ISO C++ specification.
136 * C Extensions:: GNU extensions to the C language family. 138 * C Extensions:: GNU extensions to the C language family.
137 * C++ Implementation:: How GCC implements the ISO C++ specification.
138 * C++ Extensions:: GNU extensions to the C++ language. 139 * C++ Extensions:: GNU extensions to the C++ language.
139 * Objective-C:: GNU Objective-C runtime features. 140 * Objective-C:: GNU Objective-C runtime features.
140 * Compatibility:: Binary Compatibility 141 * Compatibility:: Binary Compatibility
141 * Gcov:: @command{gcov}---a test coverage program. 142 * Gcov:: @command{gcov}---a test coverage program.
143 * Gcov-tool:: @command{gcov-tool}---an offline gcda profile processing program.
144 * Gcov-dump:: @command{gcov-dump}---an offline gcda and gcno profile dump tool.
142 * Trouble:: If you have trouble using GCC. 145 * Trouble:: If you have trouble using GCC.
143 * Bugs:: How, why and where to report bugs. 146 * Bugs:: How, why and where to report bugs.
144 * Service:: How to find suppliers of support for GCC. 147 * Service:: How To Get Help with GCC
145 * Contributing:: How to contribute to testing and developing GCC. 148 * Contributing:: How to contribute to testing and developing GCC.
146 149
147 * Funding:: How to help assure funding for free software. 150 * Funding:: How to help assure funding for free software.
148 * GNU Project:: The GNU Project and GNU/Linux. 151 * GNU Project:: The GNU Project and GNU/Linux.
149 152
163 @include implement-cxx.texi 166 @include implement-cxx.texi
164 @include extend.texi 167 @include extend.texi
165 @include objc.texi 168 @include objc.texi
166 @include compat.texi 169 @include compat.texi
167 @include gcov.texi 170 @include gcov.texi
171 @include gcov-tool.texi
172 @include gcov-dump.texi
168 @include trouble.texi 173 @include trouble.texi
169 @include bugreport.texi 174 @include bugreport.texi
170 @include service.texi 175 @include service.texi
171 @include contribute.texi 176 @include contribute.texi
172 177