libostd/README.md

43 lines
1.6 KiB
Markdown
Raw Normal View History

2015-04-04 21:12:10 +02:00
# octastd
2015-04-06 00:10:44 +02:00
2016-01-29 23:00:00 +01:00
OctaSTD is a new "standard library" for C++14. It provides containers
(dynamic arrays etc) as well as other utilities.
2015-04-23 19:47:33 +02:00
2015-05-18 03:13:16 +02:00
Documentation for OctaSTD can be found at https://wiki.octaforge.org/docs/octastd.
2016-01-12 19:33:46 +01:00
Full C++14 support is required in your compiler.
2015-04-23 19:47:33 +02:00
## Supported compilers
Compiler | Version
-------- | -------
2016-01-12 19:33:46 +01:00
gcc/g++ | 5+
clang | 3.8+
2015-04-23 19:47:33 +02:00
2016-01-12 19:33:46 +01:00
Other C++14 compliant compilers might work as well. OctaSTD does not utilize
2015-04-23 19:47:33 +02:00
compiler specific extensions except certain builtin type traits - to implement
traits that are not normally possible to implement without compiler support.
OctaSTD does not provide fallbacks for those traits. The compiler is expected
2015-05-06 20:54:20 +02:00
to support these builtins. So far the 2 above-mentioned compilers support them
(MSVC++ supports most of these as well).
2016-01-12 19:33:46 +01:00
While Clang 3.6 does implement a sufficient level of C++14 support, it suffers
from a bug in its template variable implementation that prevents OctaSTD from
functioning. Therefore version 3.8 or higher is necessary (where this bug was
finally fixed).
MSVC++ is currently unsupported. It is likely that it will never be supported,
2016-01-12 19:33:46 +01:00
as MS recently introduced Clang frontend support in Visual Studio; however,
if their own frontend gains all the necessary features, support will be
considered.
2015-09-09 20:51:33 +02:00
## Supported operating systems
Currently supported OSes in OctaSTD are Linux, FreeBSD and OS X. Other
systems that implement POSIX API will also work (if they don't, bug reports
are welcome).
Windows is supported at least with the MinGW (gcc) and Clang compilers. MS
2016-02-07 22:17:15 +01:00
Visual Studio is currently unsupported.