home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-1.iso / CDROM / FAQs / G++ / plain < prev    next >
Encoding:
Internet Message Format  |  1996-10-15  |  64.7 KB

  1. Path: informatik.tu-muenchen.de!fu-berlin.de!news.mathworks.com!newsfeed.internetmci.com!in1.uu.net!chronos.synopsys.com!news.synopsys.com!jbuck
  2. From: jbuck@synopsys.com (Joe Buck)
  3. Newsgroups: gnu.g++.help,comp.lang.c++,news.answers,comp.answers
  4. Subject: FAQ for g++ and libg++, plain text version [Revised 15 Sep 1996]
  5. Supersedes: <g++-FAQ_10_01_1996_texi@synopsys.com>
  6. Followup-To: poster
  7. Date: 15 Oct 1996 13:00:11 GMT
  8. Organization: Synopsys, Inc.
  9. Lines: 1538
  10. Approved: news-answers-request@MIT.edu
  11. Expires: 15 Nov 1996 00:00:00 GMT
  12. Message-ID: <g++-FAQ_10_15_1996_texi@synopsys.com>
  13. NNTP-Posting-Host: deerslayer.synopsys.com
  14. Originator: jbuck@deerslayer
  15. Xref: informatik.tu-muenchen.de gnu.g++.help:15390 comp.lang.c++:214935 news.answers:84138 comp.answers:21684
  16.  
  17. Archive-name: g++-FAQ/plain
  18. Last-modified: 15 Sep 1996
  19. Frequency: bimonthly
  20.  
  21. [ this is the plain text version, the parent is the texinfo version ]
  22.  
  23.  
  24. FAQ for g++ and libg++, by Joe Buck (jbuck@synopsys.com)
  25. ********************************************************
  26.  
  27.    This is a list of frequently asked questions (FAQ) for g++ users;
  28. thanks to all those who sent suggestions for improvements.  Thanks to
  29. Marcus Speh for doing the index.  A hypertext version is available on
  30. the World Wide Web at `http://www.cygnus.com/misc/g++FAQ_toc.html'.
  31.  
  32.    Please send updates and corrections to the FAQ to
  33. `jbuck@synopsys.com'.  Please do *not* use me as a resource to get your
  34. questions answered; that's what `gnu.g++.help' is for and I don't have
  35. the time to support the net's use of g++.
  36.  
  37.    Many FAQs, including this one, are available on the archive site
  38. "rtfm.mit.edu"; see
  39. `ftp://rtfm.mit.edu/pub/usenet/news.answers'.  This FAQ may be found in
  40. the subdirectory g++-FAQ.
  41.  
  42.    This FAQ is intended to supplement, not replace, Marshall Cline's
  43. excellent FAQ for the C++ language and for the newsgroup
  44. `comp.lang.c++'.  Especially if g++ is the first C++ compiler you've
  45. ever used, the question "How do I do <X> with g++?" is probably really
  46. "How do I do <X> in C++?".  You can find this FAQ at
  47. `ftp://rtfm.mit.edu/pub/usenet/comp.lang.c++', or in HTML form at
  48. `http://www.cerfnet.com/~mpcline/On-Line-C++-FAQs/'.
  49.  
  50. The latest poop - gcc-2.7.x
  51. ***************************
  52.  
  53.    This section is intended to describe more recent changes to g++,
  54. libg++, and such.  Some things in this section will eventually move
  55. elsewhere.
  56.  
  57.    *News:* as I write this (late February 1996) the gateway connecting
  58. the bug-g++ mailing list and the `gnu.g++.bug' newsgroup is broken.
  59. Please mail, do not post bug reports.
  60.  
  61. What's new in version 2.7.x of gcc/g++
  62. ======================================
  63.  
  64.    The current version of gcc/g++ is 2.7.2.1, released August 14, 1996.
  65. The current version of libg++ is 2.7.2, released July 4, 1996.
  66.  
  67.    Note that gcc 2.7.2.1 just consists of several small patches to
  68. gcc-2.7.2.  The release is mainly intended to fix platform-specific
  69. bugs and does not affect the C++ "front end" of the compiler (the part
  70. that parses your C++ code).
  71.  
  72.    The 2.7.x releases represent a great deal of work on the part of the
  73. g++ maintainers to fix outstanding bugs and move the compiler closer to
  74. the current ANSI/ISO standards committee's working paper, including
  75. supporting many of the new features that have been added to the
  76. language.  I recommend that everyone read the NEWS file contained in the
  77. distribution (and that system administrators make the file available to
  78. their users).  I've borrowed liberally from this file here.
  79.  
  80.    If any features seem unfamiliar, you will probably want to look at
  81. the recently-released public review copy of the C++ Working Paper:
  82.    * PostScript and PDF (Adobe Acrobat): see
  83.      `ftp://research.att.com/dist/c++std/WP'.
  84.  
  85.    * HTML and ASCII versions: see `ftp://ftp.cygnus.com/pub/g++'.
  86.  
  87.    * World Wide Web: see `http://www.cygnus.com/misc/wp/'.
  88.  
  89.    Here are the main points:
  90.  
  91.    * As described above, the scope of variables declared in the
  92.      initialization part of a for statement has been changed; such
  93.      variables are now visible only in the loop body.  Use
  94.      `-fno-for-scope' to get the old behavior.  You'll need this flag
  95.      to build groff version 1.09, Ptolemy, and many other free software
  96.      packages.
  97.  
  98.    * Code that does not use #pragma interface/implementation will most
  99.      likely shrink dramatically, as g++ now only emits the vtable for a
  100.      class in the translation unit where its first non-inline,
  101.      non-abstract virtual function is defined.
  102.  
  103.    * Support for automatic template instantiation has *not* been enabled
  104.      in the official distribution, due to a disagreement over design
  105.      philosophies.  But you can get a patch from Cygnus to turn it on;
  106.      retrieve the patch from
  107.      `ftp://ftp.cygnus.com/pub/g++/gcc-2.7.2-repo.gz' to patch
  108.      gcc-2.7.2 (there are also patches for earlier gcc versions).
  109.  
  110.    * *Note exceptions::
  111.  
  112.    * Support for Run-Time Type Identification has been added with
  113.      `-frtti'.  This support is still in alpha; one major restriction
  114.      is that any file compiled with `-frtti' must include `<typeinfo>'
  115.      (*not* `typeinfo.h' as the NEWS file says).  Also, all C++ code
  116.      you link with (including libg++) has to be built with `-frtti', so
  117.      it's still tricky to use.
  118.  
  119.    * Synthesis of compiler-generated constructors, destructors and
  120.      assignment operators is now deferred until the functions are used.
  121.  
  122.    * The parsing of expressions such as `a ? b : c = 1' has changed from
  123.      `(a ? b : c) = 1' to `a ? b : (c = 1)'.  This is a new C/C++
  124.      incompatibility brought to you by the ANSI/ISO standards committee.
  125.  
  126.    * The operator keywords and, and_eq, bitand, bitor, compl, not,
  127.      not_eq, or, or_eq, xor and xor_eq are now supported.  Use `-ansi'
  128.      or `-foperator-names' to enable them.
  129.  
  130.    * The `explicit' keyword is now supported.  `explicit' is used to
  131.      mark constructors and type conversion operators that should not be
  132.      used implicitly.
  133.  
  134.    * Handling of user-defined type conversion has been improved.
  135.  
  136.    * Explicit instantiation of template methods is now supported.  Also,
  137.      `inline template class foo<int>;' can be used to emit only the
  138.      vtable for a template class.
  139.  
  140.    * With -fcheck-new, g++ will check the return value of all calls to
  141.      operator new, and not attempt to modify a returned null pointer.
  142.  
  143.    * collect2 now demangles linker output, and c++filt has become part
  144.      of the gcc distribution.
  145.  
  146.    * Improvements to template instantiation: only members actually used
  147.      are instantiated.  (Actually this is not quite true: some inline
  148.      templates that are not successfully inlined may be expanded even
  149.      though they are not needed).
  150.  
  151. The GNU Standard C++ Library
  152. ============================
  153.  
  154.    The GNU Standard C++ Library (also called the "GNU ANSI C++ Library"
  155. in places in the code) is not libg++, though it is included in the
  156. libg++ distribution.  Rather, it contains classes and functions
  157. required by the ANSI/ISO standard.  The copyright conditions are the
  158. same as those for for the iostreams classes; the LGPL is not used
  159. (*Note legalities::).
  160.  
  161.    This library, libstdc++, is in the libg++ distribution in versions
  162. 2.6.2 and later.  It requires at least gcc 2.6.3 to build the
  163. libg++-2.6.2 version; use at least gcc 2.7.0 to build the libg++ 2.7.0
  164. version.  It contains a hacked-up version of HP's implementation of the
  165. Standard Template Library (see *Note Standard Template Library::).  I've
  166. successfully used this Standard Template Library version to build a
  167. number of the demos you'll see on various web pages.
  168.  
  169.    As of version 2.7.0, the streams classes are now in libstdc++
  170. instead of libg++, and libiostream is being phased out (don't use it).
  171. The g++ program searches this library.
  172.  
  173. Obtaining Source Code
  174. *********************
  175.  
  176. What is the latest version of gcc, g++, and libg++?
  177. ===================================================
  178.  
  179.    The latest "2.x" version of gcc/g++ is 2.7.2.1, released August 14,
  180. 1996.  The latest version of libg++ is 2.7.2, released July 4, 1996.
  181.  
  182.    Don't use 2.5.x, with x less than 5, for C++ code; there were some
  183. serious bugs that didn't have easy workarounds.  2.5.8 is the most
  184. solid 2.5.x release.  2.6.3 is the most solid 2.6.x release.
  185.  
  186.    For some non-Unix platforms, the latest port of gcc may be an earlier
  187. version (2.5.8, say).  You'll need to use a version of libg++ that has
  188. the same first two digits as the compiler version, e.g. use libg++
  189. 2.5.x (for the latest x you can find) with gcc version 2.5.8.
  190.  
  191.    The latest "1.x" version of gcc is 1.42, and the latest "1.x"
  192. version of g++ is 1.42.0.  While gcc 1.42 is quite usable for C
  193. programs, I recommend against using g++ 1.x except in special
  194. circumstances (and I can't think of any such circumstances).
  195.  
  196. How do I get a copy of g++ for Unix?
  197. ====================================
  198.  
  199.    First, you may already have it if you have gcc for your platform;
  200. g++ and gcc are combined now (as of gcc version 2.0).
  201.  
  202.    You can get g++ from a friend who has a copy, by anonymous FTP or
  203. UUCP, or by ordering a tape or CD-ROM from the Free Software Foundation.
  204.  
  205.    The Free Software Foundation is a nonprofit organization that
  206. distributes software and manuals to raise funds for more GNU
  207. development.  Getting your copy from the FSF contributes directly to
  208. paying staff to develop GNU software.  CD-ROMs cost $400 if an
  209. organization is buying, or $100 if an individual is buying.  Tapes cost
  210. around $200 depending on media type.  I recommend asking for version 2,
  211. not version 1, of g++.
  212.  
  213.    For more information about ordering from the FSF, contact
  214. gnu@prep.ai.mit.edu, phone (617) 542-5942 or anonymous ftp file
  215. `ftp://prep.ai.mit.edu/pub/gnu/GNUinfo/ORDERS' (you can also use one of
  216. the sites listed below if you can't get into "prep").
  217.  
  218.    Here is a list of anonymous FTP archive sites for GNU software.  If
  219. no directory is given, look in `/pub/gnu'.
  220.  
  221.      ASIA: ftp.cs.titech.ac.jp, tron.um.u-tokyo.ac.jp:/pub/GNU/prep
  222.      cair-archive.kaist.ac.kr, ftp.nectec.or.th:/pub/mirrors/gnu
  223.      
  224.      AUSTRALIA: archie.au:/gnu (archie.oz or archie.oz.au for ACSnet)
  225.      
  226.      AFRICA: ftp.sun.ac.za
  227.      
  228.      MIDDLE-EAST: ftp.technion.ac.il:/pub/unsupported/gnu
  229.      
  230.      EUROPE: irisa.irisa.fr, ftp.univ-lyon1.fr,
  231.      ftp.mcc.ac.uk, unix.hensa.ac.uk:/mirrors/uunet/systems/gnu,
  232.      src.doc.ic.ac.uk:/gnu, ftp.ieunet.ie, ftp.eunet.ch,
  233.      nic.switch.ch:/mirror/gnu, ftp.informatik.rwth-aachen.de,
  234.      ftp.informatik.tu-muenchen.de, ftp.win.tue.nl, ftp.nl.net,
  235.      ftp.etsimo.uniovi.es, ftp.funet.fi, ftp.denet.dk,
  236.      ftp.stacken.kth.se, isy.liu.se, ftp.luth.se:/pub/unix/gnu,
  237.      ftp.sunet.se, archive.eu.net
  238.      
  239.      SOUTH AMERICA: ftp.inf.utfsm.cl, ftp.unicamp.br
  240.      
  241.      WESTERN CANADA: ftp.cs.ubc.ca:/mirror2/gnu
  242.      
  243.      USA: wuarchive.wustl.edu:/systems/gnu, labrea.stanford.edu,
  244.      ftp.digex.net, ftp.kpc.com:/pub/mirror/gnu, f.ms.uky.edu:/pub3/gnu,
  245.      jaguar.utah.edu:/gnustuff, ftp.hawaii.edu:/mirrors/gnu,
  246.      uiarchive.cso.uiuc.edu, ftp.cs.columbia.edu:/archives/gnu/prep,
  247.      gatekeeper.dec.com:/pub/GNU, ftp.uu.net:/systems/gnu
  248.  
  249.    The "official site" is prep.ai.mit.edu, but your transfer will
  250. probably go faster if you use one of the above machines.
  251.  
  252.    Most GNU utilities are compressed with "gzip", the GNU compression
  253. utility.  All GNU archive sites should have a copy of this program,
  254. which you will need to uncompress the distributions.
  255.  
  256.    [ Warning: this information about UUCP access to UUNET and Ohio State
  257. is about five years old; I'm not sure if these services still exist. ]
  258.  
  259.    UUNET customers can get GNU sources from UUNET via UUCP.  UUCP-only
  260. sites can get GNU sources by "anonymous UUCP" from site "osu-cis" at
  261. Ohio State University.  You pay for the long-distance call to OSU; the
  262. price isn't too bad on weekends at 9600 bps.  Send mail to
  263. uucp@cis.ohio-state.edu or osu-cis!uucp for more information.
  264.  
  265.    OSU lines are often busy.  If you're in the USA, and are willing to
  266. spend more money, you can get sources via UUCP from UUNET using their
  267. 900 number: 1-900-GOT-SRCS (900 numbers don't work internationally).
  268. You will be billed $0.50/minute by your phone company.
  269.  
  270.    Don't forget to retrieve libg++ as well!
  271.  
  272. Getting gcc/g++ for the HP Precision Architecture
  273. =================================================
  274.  
  275.    If you use the HP Precision Architecture (HP-9000/7xx and
  276. HP-9000/8xx) and you want to use debugging, you'll need to use the GNU
  277. assembler, GAS (version 2.3 or later).  If you build from source, you
  278. must tell the configure program that you are using GAS or you won't get
  279. debugging support.  A non-standard debug format is used, since until
  280. recently HP considered their debug format a trade secret.  Thanks to
  281. the work of lots of good folks both inside and outside HP, the company
  282. has seen the error of its ways and has now released the required
  283. information.  The team at the University of Utah that did the gcc port
  284. now has code that understands the native HP format.
  285.  
  286.    There are binaries for GNU tools in `ftp://jaguar.cs.utah.edu/dist/',
  287. but these are older versions.
  288.  
  289.    Jeff Law has left the University of Utah, so the Utah prebuilt
  290. binaries may be discontinued.
  291.  
  292. Getting gcc/g++ binaries for Solaris 2.x
  293. ========================================
  294.  
  295.    "Sun took the C compiler out of Solaris 2.x.  Am I stuck?"
  296.  
  297.    You'll need to get prebuilt binaries from someone.
  298.  
  299.    It used to be that you could get GCC binaries from prep.ai.mit.edu;
  300. these are no longer there.
  301.  
  302.    The WWW site `http://smc.vnet.net/solaris_2.5.html' contains various
  303. GNU and freeware programs for Solaris2.5 running on the sparc. These are
  304. packaged to enable easy installation using the Solaris "pkgadd" utility.
  305. These include GNU emacs, gcc, gdb, perl, and others.  These versions
  306. are more recent than the binaries at "prep" (gcc 2.7.2 and libg++ 2.7.1
  307. are there).
  308.  
  309. How do I get a copy of g++ for (some other platform)?
  310. =====================================================
  311.  
  312.    As of gcc-2.7.x, there is Windows NT support in gcc.  Some special
  313. utilities are required.  See the INSTALL file from the distribution.
  314. If you're interested in GNU tools on Windows NT, see
  315. `http://www.cygnus.com/misc/gnu-win32/' on the WWW, or the anonymous
  316. FTP directory `ftp://ftp.cygnus.com/pub/gnu-win32/'.
  317.  
  318.    The standard gcc/g++ distribution includes VMS support.  Since the
  319. FSF people don't use VMS, it's likely to be somewhat less solid than
  320. the Unix version.  Precompiled copies of g++ and libg++ in
  321. VMS-installable form are available by FTP from
  322. `ftp://mango.rsmas.miami.edu/pub/VMS-gcc/'.
  323.  
  324.    There are two different versions of gcc/g++ for MS-DOS: EMX and
  325. DJGPP.  EMX also works for OS/2 and is described later.  DJGPP is DJ
  326. Delorie's port.  It can be found on many FTP archive sites; try
  327. `ftp://ftp.coast.net/SimTel/vendors/djgpp/' or, for a complete list, see
  328. `http://www.delorie.com/djgpp/getting.html'.
  329.  
  330.    The latest version of DJGPP is 2.00.  See
  331. `http://www.delorie.com/djgpp/v2/' for information on this version.
  332.  
  333.    FSF sells floppies with DJGPP on them; see above for ordering
  334. software from the FSF.
  335.  
  336.    DJGPP has its own newsgroup: `comp.os.msdos.djgpp'.
  337.  
  338.    For information on Amiga ports of gcc/g++, retrieve the file
  339. `ftp://prep.ai.mit.edu/pub/gnu/MicrosPorts/Amiga'
  340. or write to Markus M. Wild <wild@nessie.cs.id.ethz.ch>, who I hope
  341. won't be too upset that I mentioned his name here.
  342.  
  343.    A port of gcc to the Atari ST can be found at
  344. `ftp://atari.archive.umich.edu/atari/Gnustuff/Tos' along with many
  345. other GNU programs.  This version is usually the same as the latest FSF
  346. release.  See the "Software FAQ" for the Usenet group
  347. `comp.sys.atari.st' for more information.
  348.  
  349.    There are two different ports of gcc to OS/2, the so-called EMX port
  350. (which also runs on MS-DOS), and a port called "gcc/2".  The latter
  351. port is no longer supported, since the EMX port includes all of its
  352. functionality.  The EMX port's C library attempts to provide a
  353. Unix-like environment.  For more information ask around on
  354. `comp.os.os2.programmer.misc'.
  355.  
  356.    The EMX port is available by FTP from
  357.  
  358.      ftp://ftp.uni-stuttgart.de/pub/systems/os2/emx-0.9a
  359.      ftp://src.doc.ic.ac.uk/pub/packages/os2/unix/emx09a
  360.      ftp://ftp.informatik.tu-muenchen.de/pub/comp/os/os2/devtools/emx+gcc
  361.  
  362.    Eberhard Mattes did the EMX port.  His address is
  363. mattes@azu.informatik.uni-stuttgart.de.
  364.  
  365.    I'm looking for more information on gcc/g++ support on the Apple
  366. Macintosh.  Until recently, this FAQ did not provide such information,
  367. but FSF is no longer boycotting Apple as the League for Programming
  368. Freedom boycott has been dropped.
  369.  
  370.    Versions 1.37.1 and 2.3.3 of gcc were ported by Stan Shebs and are
  371. available at
  372. `ftp://ftp.cygnus.com/pub/mac'
  373.  
  374.    They are both interfaced to MPW.  Stan is working on a version using
  375. the current (post-2.7) sources, contact him directly (shebs@cygnus.com)
  376. for more information.
  377.  
  378. But I can only find g++-1.42!
  379. =============================
  380.  
  381.    "I keep hearing people talking about g++ 2.7.2 (or some other number
  382. starting with 2), but the latest version I can find is g++ 1.42.  Where
  383. is it?"
  384.  
  385.    As of gcc 2.0, C, C++, and Objective-C as well are all combined into
  386. a single distribution called gcc.  If you get gcc you already have g++.
  387. The standard installation procedure for any gcc version 2 compiler will
  388. install the C++ compiler as well.
  389.  
  390.    One could argue that we shouldn't even refer to "g++-2.x.y" but it's
  391. a convention.  It means "the C++ compiler included with gcc-2.x.y."
  392.  
  393. Installation Issues and Problems
  394. ********************************
  395.  
  396. I can't build g++ 1.x.y with gcc-2.x.y!
  397. =======================================
  398.  
  399.    "I obtained gcc-2.x.y and g++ 1.x.y and I'm trying to build it, but
  400. I'm having major problems.  What's going on?"
  401.  
  402.    If you wish to build g++-1.42, you must obtain gcc-1.42 first.  The
  403. installation instructions for g++ version 1 leave a lot to be desired,
  404. unfortunately, and I would recommend that, unless you have a special
  405. reason for needing the 1.x compiler, that C++ users use the latest
  406. g++-2.x version, as it is the version that is being actively maintained.
  407.  
  408.    There is no template support in g++-1.x, and it is generally much
  409. further away from the ANSI draft standard than g++-2.x is.
  410.  
  411. OK, I've obtained gcc; what else do I need?
  412. ===========================================
  413.  
  414.    First off, you'll want libg++ as you can do almost nothing without it
  415. (unless you replace it with some other class library).
  416.  
  417.    Second, depending on your platform, you may need "GAS", the GNU
  418. assembler, or the GNU linker (see next question).
  419.  
  420.    Finally, while it is not required, you'll almost certainly want the
  421. GNU debugger, gdb.  The latest version is 4.15.1, released November 4,
  422. 1995.  Other debuggers (like dbx, for example) will normally not be
  423. able to understand at least some of the debug information produced by
  424. g++.
  425.  
  426. Should I use the GNU linker, or should I use "collect"?
  427. =======================================================
  428.  
  429.    First off, for novices: special measures must be taken with C++ to
  430. arrange for the calling of constructors for global or static objects
  431. before the execution of your program, and for the calling of
  432. destructors at the end.  (Exception: System VR3 and System VR4 linkers,
  433. Linux/ELF, and some other systems support user-defined segments; g++ on
  434. these systems requires neither the GNU linker nor collect.  So if you
  435. have such a system, the answer is that you don't need either one,
  436. though using GNU ld does have some advantages over the native linker in
  437. some cases).
  438.  
  439.    If you have experience with AT&T's "cfront", this function is
  440. performed there by programs named "patch" or "munch".  With GNU C++, it
  441. is performed either by the GNU linker or by a program known as
  442. "collect".  The collect program is part of the gcc-2.x distribution;
  443. you can obtain the GNU linker separately as part of the "binutils"
  444. package.  The latest version of binutils is 2.7, released July 10,
  445. 1996; 2.6 is in common use and works well.
  446.  
  447.    (To be technical, it's "collect2"; there were originally several
  448. alternative versions of collect, and this is the one that survived).
  449.  
  450.    There are advantages and disadvantages to either choice.
  451.  
  452.    Advantages of the GNU linker:
  453.  
  454.    It's faster than using collect - collect basically runs the standard
  455. Unix linker on your program twice, inserting some extra code after the
  456. first pass to call the constructors.  This is a sizable time penalty
  457. for large programs.  The GNU linker does not require this extra pass.
  458.  
  459.    GNU ld reports undefined symbols using their true names, not the
  460. mangled names (but as of 2.7.0 so does collect).
  461.  
  462.    If there are undefined symbols, GNU ld reports which object file(s)
  463. refer to the undefined symbol(s).  On some OSes (e.g. SunOS, Solaris)
  464. the native linker does not do this, so you have to track down who's
  465. referring to the missing symbols yourself.
  466.  
  467.    As of binutils version 2.2, on systems that use the so-called "a.out"
  468. debug format (e.g. Suns running SunOS 4.x), the GNU linker compresses
  469. the debug symbol table considerably.  The 2.7 version adds some symbol
  470. table compression for ELF and Solaris targets.
  471.  
  472.    Advantages of collect:
  473.  
  474.    If your native linker supports shared libraries, you can use shared
  475. libraries with collect.  This used to be a strong reason *not* to use
  476. the GNU linker, but recent versions of GNU ld support linking with
  477. shared libraries on many platforms, and creating shared libraries on a
  478. few (such as Intel x86 systems that use ELF object format as well as
  479. SunOS and Solaris).
  480.  
  481.    *Note shared libraries::
  482.  
  483.    The GNU linker has not been ported to as many platforms as g++ has,
  484. so you may be forced to use collect.
  485.  
  486.    If you use collect, you don't need to get something extra and figure
  487. out how to install it; the standard gcc installation procedure will do
  488. it for you.
  489.  
  490.    I used to say at this point that I don't see a clear win for either
  491. linking alternative, but with all the improvements in the GNU linker I
  492. think that it is now the better choice.  Take your pick.
  493.  
  494.    If you run Linux, the only available linker is the GNU linker.
  495.  
  496. Should I use the GNU assembler, or my vendor's assembler?
  497. =========================================================
  498.  
  499.    This depends on your platform and your decision about the GNU
  500. linker.  For most platforms, you'll need to use GAS if you use the GNU
  501. linker.  For some platforms, you have no choice; check the gcc
  502. installation notes to see whether you must use GAS.  But you can
  503. usually use the vendor's assembler if you don't use the GNU linker.
  504.  
  505.    The GNU assembler assembles faster than many native assemblers;
  506. however, on many platforms it cannot support the local debugging format.
  507.  
  508.    It used to be that the GNU assembler couldn't handle
  509. position-independent code on SunOS.  This is no longer true if you have
  510. version 2.6 or newer.
  511.  
  512.    On HPUX or IRIX, you must use GAS (and configure gcc with the
  513. `--with-gnu-as' option) to debug your programs.  GAS is strongly
  514. recommended particularly on the HP platform because of limitations in
  515. the HP assembler.
  516.  
  517.    The GNU assembler has been merged with the binutils distribution, so
  518. the GNU assembler and linker are now together in this package (as of
  519. binutils version 2.5.1).
  520.  
  521.    On Linux the assembler is the GNU assembler.
  522.  
  523. How do I build shared libraries with g++?
  524. =========================================
  525.  
  526.    For gcc-2.7.0 and later, building C++ shared libraries should work
  527. fine on supported platforms (HPUX 9+, IRIX 5+, DEC UNIX (formerly
  528. OSF/1), SGI/IRIX, AIX, SunOS 4, Linux/ELF and all targets using
  529. SVR4-style ELF shared libraries).  There are two separate issues:
  530. building libg++ as a shared library, and making your own shared
  531. libraries.  For libg++ it is simply a matter of giving the
  532. `--enable-shared' option to the configure program.  When compiling your
  533. own code for shared libraries you generally must use the `-fPIC' flag
  534. to get position-independent code.
  535.  
  536.    Check the file `README.SHLIB' from the libg++ distribution for more
  537. about making and using shared libraries.
  538.  
  539.    A patch is needed to build shared versions of version 2.7.2 of libg++
  540. and libstdc++ on the HP-PA architecture.  You can find the patch at
  541. `ftp://ftp.cygnus.com/pub/g++/libg++-2.7.2-hppa-gcc-fix'.
  542.  
  543. How do I use the new repository code?
  544. =====================================
  545.  
  546.    Because there is some disagreement about the details of the template
  547. repository mechanism, you'll need to obtain a patch from Cygnus Support
  548. to enable the 2.7.2 repository code.  You can obtain the patch by
  549. anonymous FTP: `ftp://ftp.cygnus.com/pub/g++/gcc-2.7.2-repo.gz'.
  550.  
  551.    There are patches for 2.7.0 and 2.7.1 in the same directory, though
  552. if you're going to rebuild the compiler you should use the latest one.
  553.  
  554.    If you're running NetBSD or BSDI, the Cygnus repo patch is not quite
  555. correct.  Tim Liddelow has made an alternate version available at
  556. `ftp://ftp.cst.com.au/pub/gcc-2.7.2-repo-bsd.gz'.
  557.  
  558.    After you've applied the patch, the `-frepo' flag will enable the
  559. repository mechanism.  The flag works much like the existing
  560. `-fno-implicit-templates' flag, except that auxiliary files, with an
  561. `.rpo' extension, are built that specify what template expansions are
  562. needed.  At link time, the (patched) collect program detects missing
  563. templates and recompiles some of the object files so that the required
  564. templates are expanded.
  565.  
  566.    Note that the mechanism differs from that of cfront in that template
  567. definitions still must be visible at the point where they are to be
  568. expanded.  No assumption is made that `foo.C' contains template
  569. definitions corresponding to template declarations in `foo.h'.
  570.  
  571.    Jason Merrill writes: "To perform closure on a set of objects, just
  572. try to link them together.  It will fail, but as a side effect all
  573. needed instances will be generated in the objects."
  574.  
  575. Known bugs and problems with the repo patch
  576. ===========================================
  577.  
  578.    "The `-frepo' won't expand templated friend functions!"
  579.  
  580.    This is a known bug; currently you'll have to explicitly instantiate
  581. friend functions when using `-frepo' due to this bug (in 2.7.0 through
  582. 2.7.2 at least).
  583.  
  584.    With earlier versions of the repo patch, there was a bug that happens
  585. when you have given a quoted command line switch, something like
  586.  
  587.      -D'MESSAGE="hello there"'
  588.  
  589.    The repo code tries to recompile files using the same flags you
  590. originally specified, but doesn't quote arguments that need quoting,
  591. resulting in failures in some cases.  This is no longer a problem with
  592. the 2.7.2 patch.
  593.  
  594. Should I use the GNU C library?
  595. ===============================
  596.  
  597.    At this point in time, no.  The GNU C library is still very young,
  598. and libg++ still conflicts with it in some places.  Use your native C
  599. library unless you know a lot about the gory details of libg++ and
  600. gnu-libc.  This will probably change in the future.
  601.  
  602. Global constructors aren't being called
  603. =======================================
  604.  
  605.    "I've installed gcc and it almost works, but constructors and
  606. destructors for global objects and objects at file scope aren't being
  607. called.  What did I do wrong?"
  608.  
  609.    It appears that you are running on a platform that requires you to
  610. install either "collect2" or the GNU linker, and you have done neither.
  611. For more information, see the section discussing the GNU linker (*Note
  612. use GNU linker?::).
  613.  
  614.    On Solaris 2.x, you shouldn't need a collect program and GNU ld
  615. doesn't run.  If your global constructors aren't being called, you may
  616. need to install a patch, available from Sun, to fix your linker.  The
  617. number of the "jumbo patch" that applies is 101409-03.  Thanks to
  618. Russell Street (r.street@auckland.ac.nz) for this info.
  619.  
  620.    It appears that on IRIX, the collect2 program is not being installed
  621. by default during the installation process, though it is required; you
  622. can install it manually by executing
  623.  
  624.      make install-collect2
  625.  
  626.    from the gcc source directory after installing the compiler.  (I'm
  627. not certain for which versions of gcc this problem occurs, and whether
  628. it is still present).
  629.  
  630. Strange assembler errors when linking C++ programs
  631. ==================================================
  632.  
  633.    "I've installed gcc and it seemed to go OK, but when I attempt to
  634. link any C++ program, I'm getting strange errors from the assembler!
  635. How can that be?"
  636.  
  637.    The messages in question might look something like
  638.  
  639.      as: "/usr/tmp/cca14605.s", line 8: error: statement syntax
  640.      as: "/usr/tmp/cca14605.s", line 14: error: statement syntax
  641.  
  642.    (on a Sun, different on other platforms).  The important thing is
  643. that the errors come out at the link step, *not* when a C++ file is
  644. being compiled.
  645.  
  646.    Here's what's going on: the collect2 program uses the Unix "nm"
  647. program to obtain a list of symbols for the global constructors and
  648. destructors, and it builds a little assembly language module that will
  649. permit them all to be called.  If you're seeing this symptom, you have
  650. an old version of GNU nm somewhere on your path.  This old version
  651. prints out symbol names in a format that the collect2 program does not
  652. expect, so bad assembly code is generated.
  653.  
  654.    The solution is either to remove the old version of GNU nm from your
  655. path (and that of everyone else who uses g++), or to install a newer
  656. version (it is part of the GNU "binutils" package).  Recent versions of
  657. GNU nm do not have this problem.
  658.  
  659. Other problems building libg++
  660. ==============================
  661.  
  662.    "I am having trouble building libg++.  Help!"
  663.  
  664.    On some platforms (for example, Ultrix), you may see errors
  665. complaining about being unable to open dummy.o.  On other platforms
  666. (for example, SunOS), you may see problems having to do with the type
  667. of size_t.  The fix for these problems is to make libg++ by saying
  668. "make CC=gcc".  According to Per Bothner, it should no longer be
  669. necessary to specify "CC=gcc" for libg++-2.3.1 or later.
  670.  
  671.    "I built and installed libg++, but g++ can't find it.  Help!"
  672.  
  673.    The string given to `configure' that identifies your system must be
  674. the same when you install libg++ as it was when you installed gcc.
  675. Also, if you used the `--prefix' option to install gcc somewhere other
  676. than `/usr/local', you must use the same value for `--prefix' when
  677. installing libg++, or else g++ will not be able to find libg++.
  678.  
  679.    The toplevel Makefile in the libg++ 2.6.2 distribution is broken,
  680. which along with a bug in g++ 2.6.3 causes problems linking programs
  681. that use the libstdc++ complex classes.  A patch for this is available
  682. from `ftp://ftp.cygnus.com//pub/g++/libg++-2.6.2-fix.gz'.
  683.  
  684. But I'm *still* having problems with `size_t'!
  685. ==============================================
  686.  
  687.    "I did all that, and I'm *still* having problems with disagreeing
  688. definitions of size_t, SIZE_TYPE, and the type of functions like
  689. `strlen'."
  690.  
  691.    The problem may be that you have an old version of `_G_config.h'
  692. lying around.  As of libg++ version 2.4, `_G_config.h', since it is
  693. platform-specific, is inserted into a different directory; most include
  694. files are in `$prefix/lib/g++-include', but this file now lives in
  695. `$prefix/$arch/include'.  If, after upgrading your libg++, you find that
  696. there is an old copy of `_G_config.h' left around, remove it, otherwise
  697. g++ will find the old one first.
  698.  
  699. Do I need to rebuild libg++ to go with my new g++?
  700. ==================================================
  701.  
  702.    "After I upgraded g++ to the latest version, I'm seeing undefined
  703. symbols."
  704.  
  705.    or
  706.  
  707.    "If I upgrade to a new version of g++, do I need to reinstall
  708. libg++?"
  709.  
  710.    As a rule, the first two digits of your g++ and libg++ should be the
  711. same.  Normally when you do an upgrade in the "minor version number"
  712. (2.5.7 to 2.5.8, say) there isn't a need to rebuild libg++, but there
  713. have been a couple of exceptions in the past.
  714.  
  715. I want several versions of g++ and libg++ to co-exist.
  716. ======================================================
  717.  
  718.    I recommend against using the `-V' flag to make multiple versions of
  719. gcc/g++ co-exist, unless they are different minor releases that can use
  720. the same compiled version of libg++.  The reason is that all these
  721. versions will try to use the same libg++ version, which usually will
  722. not work.
  723.  
  724.    Instead, use the `--prefix' flag when configuring gcc.  Use a
  725. different value of `--prefix' for each gcc version.  Use the same value
  726. of `--prefix' when configuring libg++.  You can then have any number of
  727. co-existing gcc/libg++ pairs.  Symbolic links can be used so that users
  728. don't need to put all these different directories on their paths.
  729.  
  730.    One possible system to use is to set `--prefix' to
  731. `/usr/local/gcc-2.x.y' for version 2.x.y of gcc, and to link whichever
  732. version of gcc you wish to be the default into `/usr/local/bin/gcc' and
  733. `/usr/local/bin/g++'.
  734.  
  735. Trouble installing g++ and libg++ on Linux
  736. ==========================================
  737.  
  738.    "I've downloaded the latest g++ and libg++ and I'm trying to install
  739. them on Linux, and I'm having lots of problems."
  740.  
  741.    FSF releases of libg++ won't install on Linux unchanged, since Linux
  742. uses are part of the libio library from libg++ for its standard C
  743. library, only this is changed in a way that it clashes with libg++.
  744. This means that you'll need a patched version of libg++ for it to work.
  745.  
  746.    If you want to upgrade to a new gcc/libg++ combination, the easiest
  747. thing to do is to grab the prebuilt versions of gcc and libg++ for Linux
  748. from `ftp://tsx-11.mit.edu/pub/linux/packages/GCC'.  Follow the
  749. directions carefully.  If you want to build from source, you'll need a
  750. patch for libg++; the Linux developers have named the patched libg++
  751. version libg++-2.7.1.3 and there is a patch file in the above-named
  752. directory.
  753.  
  754.    See `ftp://www.mrc-apu.cam.ac.uk/pub/linux/GCC-FAQ.html', the Linux
  755. GCC FAQ (though it may be a bit out of date; the Linux community moves
  756. quickly).
  757.  
  758. Problems with g++ on Linux Slackware 3.0
  759. ========================================
  760.  
  761.    "When I try to compile the traditional Hello, world program on Linux,
  762. the compiler can't find `iostream.h'.  What's the deal?"
  763.  
  764.    You probably have the Slackware 3.0 release.  There's an error in the
  765. setup.  It's easy to fix, though; log in as root, and make a symbolic
  766. link:
  767.  
  768.      ln -s /usr/lib/g++-include /usr/include/g++
  769.  
  770. User Problems
  771. *************
  772.  
  773. Linker complains about missing virtual table
  774. ============================================
  775.  
  776.    "I'm getting a message complaining about an undefined virtual table.
  777. Is this a compiler bug?"
  778.  
  779.    (On platforms that run neither collect nor the GNU linker, like
  780. Solaris, you may see an odd undefined symbol like "_vt.3foo", where foo
  781. is a class name).
  782.  
  783.    This is probably because you are missing a definition for the first
  784. (non-inline) virtual function of the class.  Since gcc-2.7.0, g++ uses
  785. a trick borrowed from cfront: the .o file containing the definition for
  786. the first non-inline virtual function for the class will also contain
  787. the virtual function table.
  788.  
  789. gcc-2.7.0 breaks declarations in "for" statements!
  790. ==================================================
  791.  
  792.    gcc-2.7.0 implements the new ANSI/ISO rule on the scope of variables
  793. declared in for loops.
  794.  
  795.      for (int i = 1; i <= 10; i++) {
  796.              // do something here
  797.      }
  798.      foo(i);
  799.  
  800.    In the above example, most existing C++ compilers would pass the
  801. value 11 to the function `foo'.  In gcc 2.7 and in the ANSI/ISO working
  802. paper, the scope of `i' is only the for loop body, so this is an error.
  803. So that old code can be compiled, the new gcc has a flag
  804. `-fno-for-scope' that causes the old rule to be used.
  805.  
  806.    As of 2.7.1, the compiler attempts to issue warnings about code that
  807. has different meanings under the two sets of rules, but the code is not
  808. perfect: the intent was that code that has valid, but different,
  809. meanings under the ARM rules and the working paper rules would give
  810. warnings but have the new behavior, and this doesn't seem to happen.
  811.  
  812.    The `-ffor-scope' flag under 2.7.1 and 2.7.2 gives the 2.7.0
  813. behavior.
  814.  
  815. g++ seems to want a const constructor.  What's that?
  816. ====================================================
  817.  
  818.    gcc-2.7.1 introduced a bug that causes the compiler to ask for a
  819. const constructor (there's no such thing in C++) in certain situations
  820. where a const object appears in a template class.  Most cases have been
  821. fixed in gcc-2.7.2, but unfortunately not all.  Still, if you're running
  822. gcc-2.7.1 and have this problem, upgrade to 2.7.2; it is a vast
  823. improvement.
  824.  
  825.    The default constructor for the template `pair' in ObjectSpace's
  826. implementation of STL triggers the bug in one place, for gcc 2.7.2.  If
  827. you're using ObjectSpace<STL> and having this problem, simply change
  828. the default constructor from
  829.  
  830.      os_pair () : first (T1 ()), second (T2 ()) {}
  831.  
  832.    to just
  833.  
  834.      os_pair () {}
  835.  
  836.    Once this is done, ObjectSpace<STL> works fairly well.
  837.  
  838. How to silence "unused parameter" warnings
  839. ==========================================
  840.  
  841.    "When I use `-Wall' (or `-Wunused'), g++ warns about unused
  842. parameters.  But the parameters have to be there, for use in derived
  843. class functions.  How do I get g++ to stop complaining?"
  844.  
  845.    The answer is to simply omit the names of the unused parameters when
  846. defining the function.  This makes clear, both to g++ and to readers of
  847. your code, that the parameter is unused.  For example:
  848.  
  849.      int Foo::bar(int arg) { return 0; }
  850.  
  851.    will give a warning for the unused parameter `arg'.  To suppress the
  852. warning write
  853.  
  854.      int Foo::bar(int) { return 0; }
  855.  
  856. g++ objects to a declaration in a case statement
  857. ================================================
  858.  
  859.    "The compiler objects to my declaring a variable in one of the
  860. branches of a case statement.  Earlier versions used to accept this
  861. code.  Why?"
  862.  
  863.    The draft standard does not allow a goto or a jump to a case label to
  864. skip over an initialization of a variable or a class object.  For
  865. example:
  866.  
  867.      switch ( i ) {
  868.        case 1:
  869.          Object obj(0);
  870.              ...
  871.          break;
  872.        case 2:
  873.          ...
  874.          break;
  875.      }
  876.  
  877.    The reason is that `obj' is also in scope in the rest of the switch
  878. statement.
  879.  
  880.    As of version 2.7.0, the compiler will object that the jump to the
  881. second case level crosses the initialization of `obj'.  Older compiler
  882. versions would object only if class Object has a destructor.  In either
  883. case, the solution is to add a set of curly braces around the case
  884. branch:
  885.  
  886.        case 1:
  887.          {
  888.             Object obj(0);
  889.              ...
  890.             break;
  891.          }
  892.  
  893. Where can I find a demangler?
  894. =============================
  895.  
  896.    A g++-compatible demangler named `c++filt' can be found in the
  897. `binutils' distribution.  This distribution (which also contains the
  898. GNU linker) can be found at any GNU archive site.
  899.  
  900.    As of version 2.7.0, `c++filt' is included with gcc and is installed
  901. automatically.  Even better, it is used by the `collect' linker, so you
  902. don't see mangled symbols anymore (except on platforms that use neither
  903. collect nor the GNU linker, like Solaris).
  904.  
  905. Linker reports undefined symbols for static data members
  906. ========================================================
  907.  
  908.    "g++ reports undefined symbols for all my static data members when I
  909. link, even though the program works correctly for compiler XYZ.  What's
  910. going on?"
  911.  
  912.    The problem is almost certainly that you don't give definitions for
  913. your static data members.  If you have
  914.  
  915.      class Foo {
  916.          ...
  917.          void method();
  918.          static int bar;
  919.      };
  920.  
  921.    you have only declared that there is an int named Foo::bar and a
  922. member function named Foo::method that is defined somewhere.  You still
  923. need to define *both* method() and bar in some source file.  According
  924. to the draft ANSI standard, you must supply an initializer, such as
  925.  
  926.      int Foo::bar = 0;
  927.  
  928. in one (and only one) source file.
  929.  
  930. What does "Internal compiler error" mean?
  931. =========================================
  932.  
  933.    It means that the compiler has detected a bug in itself.
  934. Unfortunately, g++ still has many bugs, though it is a lot better than
  935. it used to be.  If you see this message, please send in a complete bug
  936. report (see next section).
  937.  
  938. I think I have found a bug in g++.
  939. ==================================
  940.  
  941.    "I think I have found a bug in g++, but I'm not sure.  How do I know,
  942. and who should I tell?"
  943.  
  944.    First, see the excellent section on bugs and bug reports in the gcc
  945. manual (which is included in the gcc distribution).  As a short summary
  946. of that section: if the compiler gets a fatal signal, for any input,
  947. it's a bug (newer versions of g++ will ask you to send in a bug report
  948. when they detect an error in themselves).  Same thing for producing
  949. invalid assembly code.
  950.  
  951.    When you report a bug, make sure to describe your platform (the type
  952. of computer, and the version of the operating system it is running) and
  953. the version of the compiler that you are running.  See the output of the
  954. command `g++ -v' if you aren't sure.  Also provide enough code so that
  955. the g++ maintainers can duplicate your bug.  Remember that the
  956. maintainers won't have your header files; one possibility is to send
  957. the output of the preprocessor (use `g++ -E' to get this).  This is
  958. what a "complete bug report" means.
  959.  
  960.    I will add some extra notes that are C++-specific, since the notes
  961. from the gcc documentation are generally C-specific.
  962.  
  963.    First, mail your bug report to "bug-g++@prep.ai.mit.edu".  You may
  964. also post to `gnu.g++.bug', but it's better to use mail, particularly
  965. if you have any doubt as to whether your news software generates
  966. correct reply addresses.  Don't mail C++ bugs to
  967. bug-gcc@prep.ai.mit.edu.
  968.  
  969.    *News:* as I write this (late February 1996) the gateway connecting
  970. the bug-g++ mailing list and the `gnu.g++.bug' newsgroup is
  971. (temporarily?) broken.  Please mail, do not post bug reports.
  972.  
  973.    If your bug involves libg++ rather than the compiler, mail to
  974. bug-lib-g++@prep.ai.mit.edu.  If you're not sure, choose one, and if you
  975. guessed wrong, the maintainers will forward it to the other list.
  976.  
  977.    Second, if your program does one thing, and you think it should do
  978. something else, it is best to consult a good reference if in doubt.
  979. The standard reference is the draft working paper from the ANSI/ISO C++
  980. standardization committee, which you can get on the net.  For
  981. PostScript and PDF (Adobe Acrobat) versions, see the archive at
  982. `ftp://research.att.com/dist/stdc++/WP'.  For HTML and ASCII versions,
  983. see `ftp://ftp.cygnus.com/pub/g++'.  On the World Wide Web, see
  984. `http://www.cygnus.com/misc/wp/'.
  985.  
  986.    An older standard reference is "The Annotated C++ Reference Manual",
  987. by Ellis and Stroustrup (copyright 1990, ISBN #0-201-51459-1).  This is
  988. what they're talking about on the net when they refer to "the ARM".
  989. But you should know that changes have been made to the language since
  990. then.
  991.  
  992.    The ANSI/ISO C++ standards committee have adopted some changes to the
  993. C++ language since the publication of the original ARM, and newer
  994. versions of g++ (2.5.x and later) support some of these changes, notably
  995. the mutable keyword (added in 2.5.0), the bool type (added in 2.6.0),
  996. and changes in the scope of variables defined in for statements (added
  997. in 2.7.0).  You can obtain an addendum to the ARM explaining many of
  998. these changes by FTP from
  999. `ftp://ftp.std.com/AW/stroustrup2e/new_iso.ps'.
  1000.  
  1001.    Note that the behavior of (any version of) AT&T's "cfront" compiler
  1002. is NOT the standard for the language.
  1003.  
  1004. Porting programs from other compilers to g++
  1005. ============================================
  1006.  
  1007.    "I have a program that runs on <some other C++ compiler>, and I want
  1008. to get it running under g++.  Is there anything I should watch out for?"
  1009.  
  1010.    Note that g++ supports many of the newer keywords that have recently
  1011. been added to the language.  Your other C++ compiler may not support
  1012. them, so you may need to rename variables and members that conflict
  1013. with these keywords.
  1014.  
  1015.    There are two other reasons why a program that worked under one
  1016. compiler might fail under another: your program may depend on the order
  1017. of evaluation of side effects in an expression, or it may depend on the
  1018. lifetime of a temporary (you may be assuming that a temporary object
  1019. "lives" longer than the standard guarantees).  As an example of the
  1020. first:
  1021.  
  1022.      void func(int,int);
  1023.      
  1024.      int i = 3;
  1025.      func(i++,i++);
  1026.  
  1027.    Novice programmers think that the increments will be evaluated in
  1028. strict left-to-right order.  Neither C nor C++ guarantees this; the
  1029. second increment might happen first, for example.  func might get 3,4,
  1030. or it might get 4,3.
  1031.  
  1032.    The second problem often happens with classes like the libg++ String
  1033. class.  Let's say I have
  1034.  
  1035.      String func1();
  1036.      void func2(const char*);
  1037.  
  1038.    and I say
  1039.  
  1040.      func2(func1());
  1041.  
  1042.    because I know that class String has an "operator const char*".  So
  1043. what really happens is
  1044.  
  1045.      func2(func1().convert());
  1046.  
  1047.    where I'm pretending I have a convert() method that is the same as
  1048. the cast.  This is unsafe in g++ versions before 2.6.0, because the
  1049. temporary String object may be deleted after its last use (the call to
  1050. the conversion function), leaving the pointer pointing to garbage, so by
  1051. the time func2 is called, it gets an invalid argument.
  1052.  
  1053.    Both the cfront and the old g++ behaviors are legal according to the
  1054. ARM, but the powers that be have decided that compiler writers were
  1055. given too much freedom here.
  1056.  
  1057.    The ANSI C++ committee has now come to a resolution of the lifetime
  1058. of temporaries problem: they specify that temporaries should be deleted
  1059. at end-of-statement (and at a couple of other points).  This means that
  1060. g++ versions before 2.6.0 now delete temporaries too early, and cfront
  1061. deletes temporaries too late.  As of version 2.6.0, g++ does things
  1062. according to the new standard.
  1063.  
  1064.    For now, the safe way to write such code is to give the temporary a
  1065. name, which forces it to live until the end of the scope of the name.
  1066. For example:
  1067.  
  1068.      String& tmp = func1();
  1069.      func2(tmp);
  1070.  
  1071.    Finally, like all compilers (but especially C++ compilers, it seems),
  1072. g++ has bugs, and you may have tweaked one.  If so, please file a bug
  1073. report (after checking the above issues).
  1074.  
  1075. Why does g++ mangle names differently from other C++ compilers?
  1076. ===============================================================
  1077.  
  1078.    See the answer to the next question.
  1079.  
  1080. Why can't g++ code link with code from other C++ compilers?
  1081. ===========================================================
  1082.  
  1083.    "Why can't I link g++-compiled programs against libraries compiled by
  1084. some other C++ compiler?"
  1085.  
  1086.    Some people think that, if only the FSF and Cygnus Support folks
  1087. would stop being stubborn and mangle names the same way that, say,
  1088. cfront does, then any g++-compiled program would link successfully
  1089. against any cfront-compiled library and vice versa.  Name mangling is
  1090. the least of the problems.  Compilers differ as to how objects are laid
  1091. out, how multiple inheritance is implemented, how virtual function
  1092. calls are handled, and so on, so if the name mangling were made the
  1093. same, your programs would link against libraries provided from other
  1094. compilers but then crash when run.  For this reason, the ARM
  1095. *encourages* compiler writers to make their name mangling different
  1096. from that of other compilers for the same platform.  Incompatible
  1097. libraries are then detected at link time, rather than at run time.
  1098.  
  1099. What documentation exists for g++ 2.x?
  1100. ======================================
  1101.  
  1102.    Relatively little.  While the gcc manual that comes with the
  1103. distribution has some coverage of the C++ part of the compiler, it
  1104. focuses mainly on the C compiler (though the information on the "back
  1105. end" pertains to C++ as well).  Still, there is useful information on
  1106. the command line options and the #pragma interface and #pragma
  1107. implementation directives in the manual, and there is a useful section
  1108. on template instantiation in the 2.6 version.  There is a Unix-style
  1109. manual entry, "g++.1", in the gcc-2.x distribution; the information
  1110. here is a subset of what is in the manual.
  1111.  
  1112.    You can buy a nicely printed and bound copy of this manual from the
  1113. FSF; see above for ordering information.
  1114.  
  1115.    A draft of a document describing the g++ internals appears in the gcc
  1116. distribution (called g++int.texi); it is incomplete but gives lots of
  1117. information.
  1118.  
  1119. Problems with the template implementation
  1120. =========================================
  1121.  
  1122.    g++ does not implement a separate pass to instantiate template
  1123. functions and classes at this point; for this reason, it will not work,
  1124. for the most part, to declare your template functions in one file and
  1125. define them in another.  The compiler will need to see the entire
  1126. definition of the function, and will generate a static copy of the
  1127. function in each file in which it is used.
  1128.  
  1129.    (The experimental template repository code (see *Note repository::)
  1130. that can be added to 2.7.0 or later does implement a separate pass, but
  1131. there is still no searching of files that the compiler never saw).
  1132.  
  1133.    For version 2.6.0, however, a new switch `-fno-implicit-templates'
  1134. was added; with this switch, templates are expanded only under user
  1135. control.  I recommend that all g++ users that use templates read the
  1136. section "Template Instantiation" in the gcc manual (version 2.6.x and
  1137. newer).  g++ now supports explicit template expansion using the syntax
  1138. from the latest C++ working paper:
  1139.  
  1140.      template class A<int>;
  1141.      template ostream& operator << (ostream&, const A<int>&);
  1142.  
  1143.    As of version 2.6.3, there are still a few limitations in the
  1144. template implementation besides the above (thanks to Jason Merrill for
  1145. this info): These are still present in version 2.7.2, but a new
  1146. implementation of templates planned for version 2.8 will eliminate them.
  1147.  
  1148.   1. Static data member templates are not supported.  You can work
  1149.      around this by explicitly declaring the static variable for each
  1150.      template specialization:
  1151.  
  1152.           template <class T> struct A {
  1153.             static T t;
  1154.           };
  1155.           
  1156.           template <class T> T A<T>::t = 0; // gets bogus error
  1157.           int A<int>::t = 0;                // OK (workaround)
  1158.  
  1159.      (still a limitation in 2.7.2)
  1160.  
  1161.   2. Template member names are not available when defining member
  1162.      function templates.
  1163.  
  1164.           template <class T> struct A {
  1165.             typedef T foo;
  1166.             void f (foo);
  1167.             void g (foo arg) { ... }; // this works
  1168.           };
  1169.           
  1170.           template <class T> void A<T>::f (foo) { } // gets bogus error
  1171.  
  1172.   3. Templates are instantiated using the parser.  This results in two
  1173.      problems:
  1174.  
  1175.      a) Class templates are instantiated in some situations where such
  1176.      instantiation should not occur.
  1177.  
  1178.           template <class T> class A { };
  1179.           A<int> *aip = 0; // should not instantiate A<int> (but does)
  1180.  
  1181.      b) Function templates cannot be inlined at the site of their
  1182.      instantiation.
  1183.  
  1184.           template <class T> inline T min (T a, T b) { return a < b ? a : b; }
  1185.           
  1186.           void f () {
  1187.             int i = min (1, 0);           // not inlined
  1188.           }
  1189.           
  1190.           void g () {
  1191.             int j = min (1, 0);           // inlined
  1192.           }
  1193.  
  1194.      A workaround that works in version 2.6.1 and later is to specify
  1195.  
  1196.           extern template int min (int, int);
  1197.  
  1198.      before `f()'; this will force it to be instantiated (though not
  1199.      emitted).
  1200.  
  1201.   4. Member function templates are always instantiated when their
  1202.      containing class is.  This is wrong.
  1203.  
  1204. I get undefined symbols when using templates
  1205. ============================================
  1206.  
  1207.    (Thanks to Jason Merrill for this section).
  1208.  
  1209.    g++ does not automatically instantiate templates defined in other
  1210. files.  Because of this, code written for cfront will often produce
  1211. undefined symbol errors when compiled with g++.  You need to tell g++
  1212. which template instances you want, by explicitly instantiating them in
  1213. the file where they are defined.  For instance, given the files
  1214.  
  1215.    `templates.h':
  1216.      template <class T>
  1217.      class A {
  1218.      public:
  1219.        void f ();
  1220.        T t;
  1221.      };
  1222.      
  1223.      template <class T> void g (T a);
  1224.  
  1225.    `templates.cc':
  1226.      #include "templates.h"
  1227.      
  1228.      template <class T>
  1229.      void A<T>::f () { }
  1230.      
  1231.      template <class T>
  1232.      void g (T a) { }
  1233.  
  1234.    main.cc:
  1235.      #include "templates.h"
  1236.      
  1237.      main ()
  1238.      {
  1239.        A<int> a;
  1240.        a.f ();
  1241.        g (a);
  1242.      }
  1243.  
  1244.    compiling everything with `g++ main.cc templates.cc' will result in
  1245. undefined symbol errors for `A<int>::f ()' and `g (A<int>)'.  To fix
  1246. these errors, add the lines
  1247.  
  1248.      template class A<int>;
  1249.      template void g (A<int>);
  1250.  
  1251.    to the bottom of `templates.cc' and recompile.
  1252.  
  1253. I get multiply defined symbols using templates
  1254. ==============================================
  1255.  
  1256.    You may be running into a bug that was introduced in version 2.6.1
  1257. (and is still present in 2.6.3) that generated external linkage for
  1258. templates even when neither `-fexternal-templates' nor
  1259. `-fno-implicit-templates' is specified.  There is a patch for this
  1260. problem at
  1261. `ftp://ftp.cygnus.com/pub/g++/gcc-2.6.3-template-fix'.
  1262.  
  1263.    I recommend either applying the patch or using
  1264. `-fno-implicit-templates' together with explicit template instantiation
  1265. as described in previous sections.
  1266.  
  1267.    This bug is fixed in 2.7.0.
  1268.  
  1269. Does g++ support the Standard Template Library?
  1270. ===============================================
  1271.  
  1272.    From Per Bothner:
  1273.  
  1274.    The Standard Template Library (STL) uses many of the extensions that
  1275. the ANSI/ISO committee has made to templates, and g++ doesn't support
  1276. some of these yet.  So if you grab HP's free implementation of STL it
  1277. isn't going to work.  However, starting with libg++-2.6.2 libg++
  1278. contains a hacked version of STL, based on work by Carsten Bormann,
  1279. which permits g++ to compile at least the containers.  A full
  1280. implementation is going to need improved template support, which will
  1281. take a while yet (2.8.0 will compile the HP version successfully,
  1282. except for a couple of easily fixed places where the HP code violates
  1283. the draft standard).
  1284.  
  1285.    Actually, the hacked STL and gcc-2.7.2 work quite well; I've
  1286. succeeded in making significant use of it.  Almost all of the
  1287. ObjectSpace examples (a set of over 200 simple examples of STL usage)
  1288. now work.
  1289.  
  1290.    There are several commercial suppliers of STL implementations;
  1291. ObjectSpace's version supports gcc-2.7.x.
  1292.  
  1293.    Mumit Khan has produced an "STL newbie guide" with lots of
  1294. information on using STL with gcc.  See
  1295.  
  1296.    `http://www.xraylith.wisc.edu/~khan/software/stl/STL.newbie.html'
  1297.  
  1298. Problems and limitations with exceptions
  1299. ========================================
  1300.  
  1301.    Recent g++ versions provide limited support for exceptions.  You must
  1302. provide the `-fhandle-exceptions' flag to enable exception handling.
  1303. As of version 2.7.2, exceptions may not work properly (and you may get
  1304. odd error messages when compiling) if you turn on optimization (the
  1305. `-O' flag).
  1306.  
  1307.    You must give the `-frtti' switch to enable catching of derived
  1308. exception objects with handlers for the base exception class; if
  1309. `-frtti' is not given, only exact type matching works.
  1310.  
  1311.    For exception handling to work with 2.7.0 your CPU must be a SPARC,
  1312. RS6000/PowerPC, 386/486/Pentium, or ARM.  Release 2.7.1 added support
  1313. for the Alpha, and "m68k is rumored to work on some platforms" and "VAX
  1314. may also work" (according to Mike Stump).  *It still doesn't work on
  1315. HP-PA or MIPS platforms.*
  1316.  
  1317. Does g++ support namespaces?
  1318. ============================
  1319.  
  1320.    As of version 2.7.2, g++ recognizes the keywords `namespace' and
  1321. `using', and there is some rudimentary code present, but almost nothing
  1322. connected with namespaces works yet.  It appears that this will still
  1323. be true when 2.8.0 is released.
  1324.  
  1325. What are the differences between g++ and the ARM specification of C++?
  1326. ======================================================================
  1327.  
  1328.    As of version 2.7.0, g++ has exception support on most but not all
  1329. platforms (no support on MIPS-based platforms yet), but it doesn't work
  1330. right if optimizaton is enabled, which means the exception
  1331. implementation is still not really ready for production use.
  1332.  
  1333.    Some features that the ANSI/ISO standardization committee has voted
  1334. in that don't appear in the ARM are supported, notably the `mutable'
  1335. keyword, in version 2.5.x.  2.6.x adds support for the built-in boolean
  1336. type `bool', with constants `true' and `false'.  The beginnings of
  1337. run-time type identification are present, so there are more reserved
  1338. words: `typeid', `static_cast', `reinterpret_cast', `const_cast', and
  1339. `dynamic_cast'.
  1340.  
  1341.    As with any beta-test compiler, there are bugs.  You can help improve
  1342. the compiler by submitting detailed bug reports.
  1343.  
  1344.    One of the weakest areas of g++ other than templates is the
  1345. resolution of overloaded functions and operators in complex cases.  The
  1346. usual symptom is that in a case where the ARM says that it is ambiguous
  1347. which function should be chosen, g++ chooses one (often the first one
  1348. declared).  This is usually not a problem when porting C++ code from
  1349. other compilers to g++, but shows up as errors when code developed under
  1350. g++ is ported to other compilers.  (I believe this is no longer a
  1351. significant problem in 2.7.0).
  1352.  
  1353.    [A full bug list would be very long indeed, so I won't put one here.
  1354. I may add a list of frequently-reported bugs and "non-bugs" like the
  1355. static class members issue mentioned above].
  1356.  
  1357. Will g++ compile InterViews?  The NIH class library?  Rogue Wave?
  1358. =================================================================
  1359.  
  1360.    The NIH class library uses a non-portable, compiler-dependent hack
  1361. to initialize itself, which makes life difficult for g++ users.  It
  1362. will not work without modification, and I don't know what modifications
  1363. are required or whether anyone has done them successfully.
  1364.  
  1365.    In short, it's not going to happen any time soon (previous FAQs
  1366. referred to patches that a new NIHCL release would hopefully contain,
  1367. but this hasn't happened).
  1368.  
  1369.    *Note:* I thought I saw an item indicating that someone *had*
  1370. patched NIHCL to work with g++.  Any pointers?
  1371.  
  1372.    I think that as of version 2.5.6, the standard g++ will compile the
  1373. standard 3.1 InterViews completely successfully.  Note that you'll need
  1374. the `-fno-for-scope' flag if you use gcc-2.7.0; with 2.7.2 you may be
  1375. able to omit this flag but you'll get warnings.
  1376.  
  1377.    According to Jason Merrill, gcc-2.7.0 and newer works with Rogue
  1378. Wave's `tools.h++' class library, but you may want to grab
  1379. `ftp://ftp.cygnus.com/pub/g++/Tools.h++-6.1-patch'.  Again, you'll need
  1380. the `-fno-for-scope' flag since Rogue Wave hasn't fixed their code to
  1381. comply with the new standard yet.
  1382.  
  1383. Debugging on SVR4 systems
  1384. =========================
  1385.  
  1386.    "How do I get debugging to work on my System V Release 4 system?"
  1387.  
  1388.    Most systems based on System V Release 4 (except Solaris) encode
  1389. symbolic debugging information in a format known as `DWARF'.
  1390.  
  1391.    Although the GNU C compiler already knows how to write out symbolic
  1392. debugging information in the DWARF format, the GNU C++ compiler does
  1393. not yet have this feature, nor is it likely to in the immediate future.
  1394.  
  1395.    Ron Guilmette has done a great deal of work to try to get the GNU
  1396. C++ compiler to produce DWARF format symbolic debugging information
  1397. (for C++ code) but he gave up on the project because of a lack of
  1398. funding and/or interest from the g++ user community.  If you have a
  1399. strong desire to see this project completed, contact Ron at
  1400. <rfg@netcom.com>.
  1401.  
  1402.    In the meantime, you *can* get g++ debugging under SVR4 systems by
  1403. configuring gcc with the `--with-stabs' option.  This causes gcc to use
  1404. an alternate debugging format, one more like that used under SunOS4.
  1405. You won't need to do anything special to GDB; it will always understand
  1406. the "stabs" format.
  1407.  
  1408. debugging problems on Solaris
  1409. =============================
  1410.  
  1411.    "I'm on Solaris, and gdb says it doesn't know about some of my local
  1412. symbols.  Help!"
  1413.  
  1414.    This problem was introduced in gcc 2.7.2; debug symbols for locals
  1415. that aren't declared at the beginning of a block come out in the wrong
  1416. order, and gdb can't find such symbols.
  1417.  
  1418.    This problem is fixed in gcc-2.7.2.1.
  1419.  
  1420. X11 conflicts with libg++ in definition of String
  1421. =================================================
  1422.  
  1423.    "X11 and Motif define String, and this conflicts with the String
  1424. class in libg++.  How can I use both together?"
  1425.  
  1426.    One possible method is the following:
  1427.  
  1428.      #define String XString
  1429.      #include <X11/Intrinsic.h>
  1430.      /* include other X11 and Motif headers */
  1431.      #undef String
  1432.  
  1433.    and remember to use the correct `String' or `XString' when you
  1434. declare things later.
  1435.  
  1436. Why can't I assign one stream to another?
  1437. =========================================
  1438.  
  1439.    [ Thanks to Per Bothner and Jerry Schwarz for this section. ]
  1440.  
  1441.    Assigning one stream to another seems like a reasonable thing to do,
  1442. but it's a bad idea.  Usually, this comes up because people want to
  1443. assign to `cout'.  This is poor style, especially for libraries, and is
  1444. contrary to good object-oriented design.  (Libraries that write directly
  1445. to `cout' are less flexible, modular, and object-oriented).
  1446.  
  1447.    The iostream classes do not allow assigning to arbitrary streams,
  1448. because this can violate typing:
  1449.  
  1450.      ifstream foo ("foo");
  1451.      istrstream str(...);
  1452.      foo = str;
  1453.      foo->close ();  /* Oops! Not defined for istrstream! */
  1454.  
  1455.    The original cfront implementation of iostreams by Jerry Schwarz
  1456. allows you to assign to `cin', `cout', `cerr', and `clog', but this is
  1457. not part of the draft standard for iostreams and generally isn't
  1458. considered a good idea, so standard-conforming code shouldn't use this
  1459. technique.
  1460.  
  1461.    The GNU implementation of iostream did not support assigning to
  1462. `cin', `cout', `cerr', and `clog' for quite a while, but it now does,
  1463. for backward compatibility with cfront iostream (versions 2.6.1 and
  1464. later of libg++).
  1465.  
  1466.    The ANSI/ISO C++ Working Paper does provide ways of changing the
  1467. streambuf associated with a stream.  Assignment isn't allowed; there is
  1468. an explicit named member that must be used.
  1469.  
  1470.    However, it is not wise to do this, and the results are confusing.
  1471. For example: `fstream::rdbuf' is supposed to return the *original*
  1472. filebuf, not the one you assigned. (This is not yet implemented in GNU
  1473. iostream.)  This must be so because `fstream::rdbuf' is defined to
  1474. return a `filebuf *'.
  1475.  
  1476. What are the rules for shipping code built with g++ and libg++?
  1477. ***************************************************************
  1478.  
  1479.    "Is it is possible to distribute programs for profit that are created
  1480. with g++ and use the g++ libraries?"
  1481.  
  1482.    I am not a lawyer, and this is not legal advice.  In any case, I have
  1483. little interest in telling people how to violate the spirit of the GNU
  1484. licenses without violating the letter.  This section tells you how to
  1485. comply with the intention of the GNU licenses as best I understand them.
  1486.  
  1487.    The FSF has no objection to your making money.  Its only interest is
  1488. that source code to their programs, and libraries, and to modified
  1489. versions of their programs and libraries, is always available.
  1490.  
  1491.    The short answer is that you do not need to release the source to
  1492. your program, but you can't just ship a stripped executable either,
  1493. unless you use only the subset of libg++ that includes the iostreams
  1494. classes (see discussion below) or the new libstdc++ library (available
  1495. in libg++ 2.6.2 and later).
  1496.  
  1497.    Compiling your code with a GNU compiler does not affect its
  1498. copyright; it is still yours.  However, in order to ship code that
  1499. links in a GNU library such as libg++ there are certain rules you must
  1500. follow.  The rules are described in the file COPYING.LIB that
  1501. accompanies gcc distributions; it is also included in the libg++
  1502. distribution.  See that file for the exact rules.  The agreement is
  1503. called the Library GNU Public License or LGPL.  It is much "looser"
  1504. than the GNU Public License, or GPL, that covers must GNU programs.
  1505.  
  1506.    Here's the deal: let's say that you use some version of libg++,
  1507. completely unchanged, in your software, and you want to ship only a
  1508. binary form of your code.  You can do this, but there are several
  1509. special requirements.  If you want to use libg++ but ship only object
  1510. code for your code, you have to ship source for libg++ (or ensure
  1511. somehow that your customer already has the source for the exact version
  1512. you are using), and ship your application in linkable form.  You cannot
  1513. forbid your customer from reverse-engineering or extending your program
  1514. by exploiting its linkable form.
  1515.  
  1516.    Furthermore, if you modify libg++ itself, you must provide source
  1517. for your modifications (making a derived class does not count as
  1518. modifying the library - that is "a work that uses the library").
  1519.  
  1520.    For certain portions of libg++ that implement required parts of the
  1521. C++ language (such as iostreams and other standard classes), the FSF has
  1522. loosened the copyright requirement still more by adding the "special
  1523. exception" clause, which reads as follows:
  1524.  
  1525.      As a special exception, if you link this library with files
  1526.      compiled with GCC to produce an executable, this does not cause
  1527.      the resulting executable to be covered by the GNU General Public
  1528.      License.  This exception does not however invalidate any other
  1529.      reasons why the executable file might be covered by the GNU
  1530.      General Public License.
  1531.  
  1532.    If your only use of libg++ uses code with this exception, you may
  1533. ship stripped executables or license your executables under different
  1534. conditions without fear of violating an FSF copyright.  It is the intent
  1535. of FSF and Cygnus that, as the other classes required by the ANSI/ISO
  1536. draft standard are developed, these will also be placed under this
  1537. "special exception" license.  The code in the new libstdc++ library,
  1538. intended to implement standard classes as defined by ANSI/ISO, is also
  1539. licensed this way.
  1540.  
  1541.    To avoid coming under the influence of the LGPL, you can link with
  1542. `-liostream' rather than `-lg++' (for version 2.6.x and earlier), or
  1543. `-lstdc++' now that it is available.  In version 2.7.0 all the standard
  1544. classes are in `-lstdc++'; you can do the link step with `c++' instead
  1545. of `g++' to search only the `-lstdc++' library and avoid the LGPL'ed
  1546. code in `-lg++'.
  1547.  
  1548.    If you wish to discuss legal issues connected with GNU software on
  1549. the net, please use `gnu.misc.discuss', not the technical newsgroups.
  1550.  
  1551. -- 
  1552. -- Joe Buck    http://www.synopsys.com/pubs/research/people/jbuck.html
  1553.  
  1554. Help stamp out Internet spam: see http://www.vix.com/spam/
  1555.