Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

Using with GCC's __float128 datatype
PrevUpHomeNext

At present support for GCC's native __float128 datatype is extremely limited: the numeric constants will all work with that type, and that's about it. If you want to use the distributions or special functions then you will need to provide your own wrapper header that:

  • Provides std::numeric_limits<__float128> support.
  • Provides overloads of the standard library math function for type __float128and which forward to the libquadmath equivalents.

Ultimately these facilities should be provided by GCC and libstdc++.


PrevUpHomeNext