Hi all, I am trying to add gtest to my project for testing and I keep getting this error.
I am using brew clang instead of apple clang but for some reason gtest keeps giving me this error.
Undefined symbols for architecture arm64:
"std::__1::__hash_memory(void const*, unsigned long)", referenced from:
unsigned long std::__1::__do_string_hash[abi:ne210107]<char const*>(char const*, char const*) in libgtest.a2
ld: symbol(s) not found for architecture arm64
My cmake files to the test file I want to test are
CMakeLists.txt
src/order/CMakeLists.txt
src/order/test/CMakeLists.txt
Any advice on this would be greatly appreciated
Thanks!
