NEWS 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. *** Changes in GCC 3.4:
  2. * Changes in GCC 3.4 are described in 'gcc-3.4/changes.html'
  3. *** Changes in GCC 3.3:
  4. * The "new X = 3" extension has been removed; you must now use "new X(3)".
  5. * G++ no longer allows in-class initializations of static data members
  6. that do not have arithmetic or enumeration type. For example:
  7. struct S {
  8. static const char* const p = "abc";
  9. };
  10. is no longer accepted.
  11. Use the standards-conformant form:
  12. struct S {
  13. static const char* const p;
  14. };
  15. const char* const S::p = "abc";
  16. instead.
  17. (ISO C++ is even stricter; it does not allow in-class
  18. initializations of floating-point types.)
  19. *** Changes in GCC 3.1:
  20. * -fhonor-std and -fno-honor-std have been removed. -fno-honor-std was
  21. a workaround to allow std compliant code to work with the non-std
  22. compliant libstdc++-v2. libstdc++-v3 is std compliant.
  23. * The C++ ABI has been fixed so that `void (A::*)() const' is mangled as
  24. "M1AKFvvE", rather than "MK1AFvvE" as before. This change only affects
  25. pointer to cv-qualified member function types.
  26. * The C++ ABI has been changed to correctly handle this code:
  27. struct A {
  28. void operator delete[] (void *, size_t);
  29. };
  30. struct B : public A {
  31. };
  32. new B[10];
  33. The amount of storage allocated for the array will be greater than
  34. it was in 3.0, in order to store the number of elements in the
  35. array, so that the correct size can be passed to `operator delete[]'
  36. when the array is deleted. Previously, the value passed to
  37. `operator delete[]' was unpredictable.
  38. This change will only affect code that declares a two-argument
  39. `operator delete[]' with a second parameter of type `size_t'
  40. in a base class, and does not override that definition in a
  41. derived class.
  42. * The C++ ABI has been changed so that:
  43. struct A {
  44. void operator delete[] (void *, size_t);
  45. void operator delete[] (void *);
  46. };
  47. does not cause unnecessary storage to be allocated when an array of
  48. `A' objects is allocated.
  49. This change will only affect code that declares both of these
  50. forms of `operator delete[]', and declared the two-argument form
  51. before the one-argument form.
  52. * The C++ ABI has been changed so that when a parameter is passed by value,
  53. any cleanup for that parameter is performed in the caller, as specified
  54. by the ia64 C++ ABI, rather than the called function as before. As a
  55. result, classes with a non-trivial destructor but a trivial copy
  56. constructor will be passed and returned by invisible reference, rather
  57. than by bitwise copy as before.
  58. * G++ now supports the "named return value optimization": for code like
  59. A f () {
  60. A a;
  61. ...
  62. return a;
  63. }
  64. G++ will allocate 'a' in the return value slot, so that the return
  65. becomes a no-op. For this to work, all return statements in the function
  66. must return the same variable.
  67. *** Changes in GCC 3.0:
  68. * Support for guiding declarations has been removed.
  69. * G++ now supports importing member functions from base classes with a
  70. using-declaration.
  71. * G++ now enforces access control for nested types.
  72. * In some obscure cases, functions with the same type could have the
  73. same mangled name. This bug caused compiler crashes, link-time clashes,
  74. and debugger crashes. Fixing this bug required breaking ABI
  75. compatibility for the functions involved. The functions in questions
  76. are those whose types involve non-type template arguments whose
  77. mangled representations require more than one digit.
  78. * Support for assignment to `this' has been removed. This idiom
  79. was used in the very early days of C++, before users were allowed
  80. to overload `operator new'; it is no longer allowed by the C++
  81. standard.
  82. * Support for signatures, a G++ extension, have been removed.
  83. * Certain invalid conversions that were previously accepted will now
  84. be rejected. For example, assigning function pointers of one type
  85. to function pointers of another type now requires a cast, whereas
  86. previously g++ would sometimes accept the code even without the
  87. cast.
  88. * G++ previously allowed `sizeof (X::Y)' where Y was a non-static
  89. member of X, even if the `sizeof' expression occurred outside
  90. of a non-static member function of X (or one of its derived classes,
  91. or a member-initializer for X or one of its derived classes.) This
  92. extension has been removed.
  93. * G++ no longer allows you to overload the conditional operator (i.e.,
  94. the `?:' operator.)
  95. * The "named return value" extension:
  96. int f () return r { r = 3; }
  97. has been deprecated, and will be removed in a future version of G++.
  98. *** Changes in GCC 2.95:
  99. * Messages about non-conformant code that we can still handle ("pedwarns")
  100. are now errors by default, rather than warnings. This can be reverted
  101. with -fpermissive, and is overridden by -pedantic or -pedantic-errors.
  102. * String constants are now of type `const char[n]', rather than `char[n]'.
  103. This can be reverted with -fno-const-strings.
  104. * References to functions are now supported.
  105. * Lookup of class members during class definition now works in all cases.
  106. * In overload resolution, type conversion operators are now properly
  107. treated as always coming from the most derived class.
  108. * C9x-style restricted pointers are supported, using the `__restrict'
  109. keyword.
  110. * You can now use -fno-implicit-inline-templates to suppress writing out
  111. implicit instantiations of inline templates. Normally we do write them
  112. out, even with -fno-implicit-templates, so that optimization doesn't
  113. affect which instantiations are needed.
  114. * -fstrict-prototype now also suppresses implicit declarations.
  115. * Many obsolete options have been removed: -fall-virtual, -fmemoize-lookups,
  116. -fsave-memoized, +e?, -fenum-int-equivalence, -fno-nonnull-objects.
  117. * Unused virtual functions can be discarded on some targets by specifying
  118. -ffunction-sections -fvtable-gc to the compiler and --gc-sections to the
  119. linker. Unfortunately, this only works on GNU/Linux if you're linking
  120. statically.
  121. * Lots of bugs stomped.
  122. *** Changes in EGCS 1.1:
  123. * Namespaces are fully supported. The library has not yet been converted
  124. to use namespace std, however, and the old std-faking code is still on by
  125. default. To turn it off, you can use -fhonor-std.
  126. * Massive template improvements:
  127. + member template classes are supported.
  128. + template friends are supported.
  129. + template template parameters are supported.
  130. + local classes in templates are supported.
  131. + lots of bugs fixed.
  132. * operator new now throws bad_alloc where appropriate.
  133. * Exception handling is now thread safe, and supports nested exceptions and
  134. placement delete. Exception handling overhead on x86 is much lower with
  135. GNU as 2.9.
  136. * protected virtual inheritance is now supported.
  137. * Loops are optimized better; we now move the test to the end in most
  138. cases, like the C frontend does.
  139. * For class D derived from B which has a member 'int i', &D::i is now of
  140. type 'int B::*' instead of 'int D::*'.
  141. * An _experimental_ new ABI for g++ can be turned on with -fnew-abi. The
  142. current features of this are more efficient allocation of base classes
  143. (including the empty base optimization), and more compact mangling of C++
  144. symbol names (which can be turned on separately with -fsquangle). This
  145. ABI is subject to change without notice, so don't use it for anything
  146. that you don't want to rebuild with every release of the compiler.
  147. As with all ABI-changing flags, this flag is for experts only, as all
  148. code (including the library code in libgcc and libstdc++) must be
  149. compiled with the same ABI.
  150. *** Changes in EGCS 1.0:
  151. * A public review copy of the December 1996 Draft of the ISO/ANSI C++
  152. standard is now available. See
  153. http://www.cygnus.com/misc/wp/
  154. for more information.
  155. * g++ now uses a new implementation of templates. The basic idea is that
  156. now templates are minimally parsed when seen and then expanded later.
  157. This allows conformant early name binding and instantiation controls,
  158. since instantiations no longer have to go through the parser.
  159. What you get:
  160. + Inlining of template functions works without any extra effort or
  161. modifications.
  162. + Instantiations of class templates and methods defined in the class
  163. body are deferred until they are actually needed (unless
  164. -fexternal-templates is specified).
  165. + Nested types in class templates work.
  166. + Static data member templates work.
  167. + Member function templates are now supported.
  168. + Partial specialization of class templates is now supported.
  169. + Explicit specification of template parameters to function templates
  170. is now supported.
  171. Things you may need to fix in your code:
  172. + Syntax errors in templates that are never instantiated will now be
  173. diagnosed.
  174. + Types and class templates used in templates must be declared
  175. first, or the compiler will assume they are not types, and fail.
  176. + Similarly, nested types of template type parameters must be tagged
  177. with the 'typename' keyword, except in base lists. In many cases,
  178. but not all, the compiler will tell you where you need to add
  179. 'typename'. For more information, see
  180. http://www.cygnus.com/misc/wp/dec96pub/template.html#temp.res
  181. + Guiding declarations are no longer supported. Function declarations,
  182. including friend declarations, do not refer to template instantiations.
  183. You can restore the old behavior with -fguiding-decls until you fix
  184. your code.
  185. Other features:
  186. + Default function arguments in templates will not be evaluated (or
  187. checked for semantic validity) unless they are needed. Default
  188. arguments in class bodies will not be parsed until the class
  189. definition is complete.
  190. + The -ftemplate-depth-NN flag can be used to increase the maximum
  191. recursive template instantiation depth, which defaults to 17. If you
  192. need to use this flag, the compiler will tell you.
  193. + Explicit instantiation of template constructors and destructors is
  194. now supported. For instance:
  195. template A<int>::A(const A&);
  196. Still not supported:
  197. + Member class templates.
  198. + Template friends.
  199. * Exception handling support has been significantly improved and is on by
  200. default. The compiler supports two mechanisms for walking back up the
  201. call stack; one relies on static information about how registers are
  202. saved, and causes no runtime overhead for code that does not throw
  203. exceptions. The other mechanism uses setjmp and longjmp equivalents, and
  204. can result in quite a bit of runtime overhead. You can determine which
  205. mechanism is the default for your target by compiling a testcase that
  206. uses exceptions and doing an 'nm' on the object file; if it uses __throw,
  207. it's using the first mechanism. If it uses __sjthrow, it's using the
  208. second.
  209. You can turn EH support off with -fno-exceptions.
  210. * RTTI support has been rewritten to work properly and is now on by default.
  211. This means code that uses virtual functions will have a modest space
  212. overhead. You can use the -fno-rtti flag to disable RTTI support.
  213. * On ELF systems, duplicate copies of symbols with 'initialized common'
  214. linkage (such as template instantiations, vtables, and extern inlines)
  215. will now be discarded by the GNU linker, so you don't need to use -frepo.
  216. This support requires GNU ld from binutils 2.8 or later.
  217. * The overload resolution code has been rewritten to conform to the latest
  218. C++ Working Paper. Built-in operators are now considered as candidates
  219. in operator overload resolution. Function template overloading chooses
  220. the more specialized template, and handles base classes in type deduction
  221. and guiding declarations properly. In this release the old code can
  222. still be selected with -fno-ansi-overloading, although this is not
  223. supported and will be removed in a future release.
  224. * Standard usage syntax for the std namespace is supported; std is treated
  225. as an alias for global scope. General namespaces are still not supported.
  226. * New flags:
  227. + New warning -Wno-pmf-conversion (don't warn about
  228. converting from a bound member function pointer to function
  229. pointer).
  230. + A flag -Weffc++ has been added for violations of some of the style
  231. guidelines in Scott Meyers' _Effective C++_ books.
  232. + -Woverloaded-virtual now warns if a virtual function in a base
  233. class is hidden in a derived class, rather than warning about
  234. virtual functions being overloaded (even if all of the inherited
  235. signatures are overridden) as it did before.
  236. + -Wall no longer implies -W. The new warning flag, -Wsign-compare,
  237. included in -Wall, warns about dangerous comparisons of signed and
  238. unsigned values. Only the flag is new; it was previously part of
  239. -W.
  240. + The new flag, -fno-weak, disables the use of weak symbols.
  241. * Synthesized methods are now emitted in any translation units that need
  242. an out-of-line copy. They are no longer affected by #pragma interface
  243. or #pragma implementation.
  244. * __FUNCTION__ and __PRETTY_FUNCTION__ are now treated as variables by the
  245. parser; previously they were treated as string constants. So code like
  246. `printf (__FUNCTION__ ": foo")' must be rewritten to
  247. `printf ("%s: foo", __FUNCTION__)'. This is necessary for templates.
  248. * local static variables in extern inline functions will be shared between
  249. translation units.
  250. * -fvtable-thunks is supported for all targets, and is the default for
  251. GNU/Linux with glibc 2.x (also called libc 6.x).
  252. * bool is now always the same size as another built-in type. Previously,
  253. a 64-bit RISC target using a 32-bit ABI would have 32-bit pointers and a
  254. 64-bit bool. This should only affect Irix 6, which was not supported in
  255. 2.7.2.
  256. * new (nothrow) is now supported.
  257. * Synthesized destructors are no longer made virtual just because the class
  258. already has virtual functions, only if they override a virtual destructor
  259. in a base class. The compiler will warn if this affects your code.
  260. * The g++ driver now only links against libstdc++, not libg++; it is
  261. functionally identical to the c++ driver.
  262. * (void *)0 is no longer considered a null pointer constant; NULL in
  263. <stddef.h> is now defined as __null, a magic constant of type (void *)
  264. normally, or (size_t) with -ansi.
  265. * The name of a class is now implicitly declared in its own scope; A::A
  266. refers to A.
  267. * Local classes are now supported.
  268. * __attribute__ can now be attached to types as well as declarations.
  269. * The compiler no longer emits a warning if an ellipsis is used as a
  270. function's argument list.
  271. * Definition of nested types outside of their containing class is now
  272. supported. For instance:
  273. struct A {
  274. struct B;
  275. B* bp;
  276. };
  277. struct A::B {
  278. int member;
  279. };
  280. * On the HPPA, some classes that do not define a copy constructor
  281. will be passed and returned in memory again so that functions
  282. returning those types can be inlined.
  283. *** The g++ team thanks everyone that contributed to this release,
  284. but especially:
  285. * Joe Buck <jbuck@synopsys.com>, the maintainer of the g++ FAQ.
  286. * Brendan Kehoe <brendan@cygnus.com>, who coordinates testing of g++.
  287. * Jason Merrill <jason@cygnus.com>, the g++ maintainer.
  288. * Mark Mitchell <mmitchell@usa.net>, who implemented member function
  289. templates and explicit qualification of function templates.
  290. * Mike Stump <mrs@wrs.com>, the previous g++ maintainer, who did most of
  291. the exception handling work.
  292. Copyright (C) 1997-2015 Free Software Foundation, Inc.
  293. Copying and distribution of this file, with or without modification,
  294. are permitted in any medium without royalty provided the copyright
  295. notice and this notice are preserved.