Hi,
I would like to work with GoogleTest to perform unit test. GTest use tuples and type_traits as I see #include <tuple> and #include <type_traits> in some files. When I compile, I have file not found errors. It works fine when using MSVC toolchain. I see that there is no tuple nor type_traits file in the Keilv5 lib folder as there is in MSVC/ folder for example.
Can you confirm that tuple and type_traits are not available for this toolchain? ARMv5 is supposed to handle C++11 and tuple was introduced with C++11.
What would be the alternative?
Thank you for your help
Here is detail on which C++ 11 features are supported by armcc:
https://developer.arm.com/documentation/dui0472/m/C-and-C---Implementation-Details/C--11-supported-features
This is a very old compiler - is it possible to use armclang instead?
Hi, thank you for your answer. It would be possible to use armclang if the code generated is not bigger, but I see it is sometimes the case.