[Documentation] [TitleIndex] [WordIndex

Getting Help

Common Problems

Undefined Reference

It's probably trying to link to native libraries, not your cross-compiled libraries. This can happen if your CMAKE_FIND_ROOT_PATH is not set correctly to point to your toolchain header/lib root and as a result, it falls back to a search through the native header/lib directories, finds the native lib and then spits the dummy.

If you've created a custom cmake toolchain module, check that its finding the libraries. For more information, see UserDefinedToolchains.


2024-02-24 12:33