gcc-exp.xml 847 B

12345678910111213141516171819
  1. <sect2>
  2. <title>Command explanations</title>
  3. <para><userinput>--enable-__cxa_atexit:</userinput> This option will result
  4. in C++ shared libraries and C++ programs that are interoperable with other
  5. linux distributions.</para>
  6. <para><userinput>--enable-clocale=gnu:</userinput> There is a risk that
  7. some people will build ABI incompatible C++ libraries if they didn't install
  8. all the glibc localedata. Using --enable-clocale=gnu ensures that the "right
  9. thing" is done in all cases. If you don't want to use this option and don't
  10. want to build all the locales, then at least make sure you installed the
  11. <emphasis>de_DE</emphasis> locale with Glibc, since that's the specific locale
  12. GCC will check for to determine which locale mode to use (if de_DE is
  13. found, <emphasis>gnu</emphasis> mode is used, which is the corrent one to
  14. use).</para>
  15. </sect2>