Hi! I've recently upgraded to XCode 14.3RC and am getting the warning
(arm64) could not find object file symbol for symbol
for virtually every symbol found in my C++ static library linked to my app.
For the C++ lib compilation and app build I haven't changed anything, this seems to be coming with the new XCode version. I've searched literally everything on the web regarding this issue, however nothing was useful:
- tried comparing the .o file paths in both versions of my built C++ lib (the one compiled with apple clang 14.0.0 and the one compiled with 14.0.3)
- Dumped the debug info with dwarfdump, the debug symbols seem to be there
- Tried pre-linking the object files
Nothing seemed to work so far, still trying to find the difference(s) between the two versions ... I target arm64 btw.
Did something change in Apple Clang with the new XCode regarding the compilation? Am I missing something?
Thanks!
Edit: I forgot to mention I upgraded from XCode 14.0.1 and was using Apple Clang 14.0.0 when compiling the static lib.