Replies: 3 comments
-
Basic std classes like std::vector and std::array are needed (although I'm planning to make their use optional), inline x86 assembly (MSVC or GCC) is currently needed but I'm implementing fallback implementations which will make it optional too (for architecture independency). There are no other dependencies. Any recent (last few years) version of GCC on a x86 architecture, regardless of system, should compile just fine. |
Beta Was this translation helpful? Give feedback.
-
The library now works with at least C++11 support. Some features which depend on C++14 get turned on or off automatically during compilation. |
Beta Was this translation helpful? Give feedback.
-
Since we now use the auto keyword in return statements, the minimum required version is C++14. |
Beta Was this translation helpful? Give feedback.
-
What are the minimum features required for compilers in order to compile and use this library?
Beta Was this translation helpful? Give feedback.
All reactions