Dinkumware Standard C++ Library

From RAD Studio
Jump to: navigation, search

Go Up to Third Party Software Add-Ins


The Dinkumware Standard C++ Library is the implementation of the C++ Standard Library that C++Builder uses for applications on the 32-bit Windows, 64-bit Windows and OS X target platforms.

The libraries include containers such as vectors, lists, sets, maps, and bitsets. Dinkumware also includes algorithms for common operations, such as sorting a container or searching inside a container. To implement the algorithms, STL includes iterators in five flavors for operating on a container: input, output, forward, backward, and bidirectional. Functors, or function objects, are also available for overloading operators.

Dinkumware version 6.50 is available specifically for C++ application development on target platforms that support the following Clang-enhanced compilers:

Separate STL Versions

The IDE automatically adds the correct Dinkumware version, based on the target platform and the C++ compiler you have set for your C++ applications. You should not explicitly add Dinkumware to the include path.

The location of the headers of this library also depends on the version.

Dinkumware Version Location
5.01

C:\Program Files (x86)\Embarcadero\Studio\19.0\include\dinkumware

6.50

C:\Program Files (x86)\Embarcadero\Studio\19.0\include\dinkumware64

Target Platform Compiler Dinkumware Version

32-bit Windows

BCC32

5.01

BCC32C

6.50

64-bit Windows

BCC64

6.50

OS X

BCCOSX

5.01

Note: C++Builder does not currently support the use of the Dinkumware Standard C++ Library on mobile platforms.

See Also