gcc-exp.xml 827 B

12345678910111213141516171819
  1. <sect2>
  2. <title>Command explanations</title>
  3. <para><userinput>--enable-threads=posix:</userinput> This enables C++
  4. exception handling for multithreaded code.</para>
  5. <para><userinput>--enable-__cxa_atexit:</userinput> This option will result
  6. in C++ shared libraries and C++ programs that are interoperable with other
  7. linux distributions.</para>
  8. <para><userinput>--enable-clocale=gnu:</userinput> There is a risk that
  9. some people will build ABI incompatible C++ libraries if they didn't install
  10. all of the glibc localedata. Using --enable-clocale=gnu ensures that the
  11. "right thing" is done in all cases. If you don't wish to use this option,
  12. then at least build the <emphasis>de_DE</emphasis> locale. When GCC finds
  13. this specific locale, then the correct locale mode (<emphasis>gnu</emphasis>)
  14. is implemented.</para>
  15. </sect2>