<div dir="ltr">On Tue, Jul 3, 2018 at 3:06 PM dbegun via CMake <<a href="mailto:cmake@cmake.org">cmake@cmake.org</a>> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div>I am cross-compiling some code for ARM on an x86 host with cmake 3.5.1. The code has multiple dependencies, and I placed relevant cross-compiled libraries in /home/dev/arm_build. I was hoping that specifying CMAKE_SYSROOT=/home/dev/arm_build in my CMAKE_TOOLCHAIN_FILE would prefix it to the search path of the find_* commands, so I won't have to modify existing Find*.cmake files. However, when I do that, cmake is unable to locate the compiler's libc files (my compiler also resides in /home/dev/arm_build) and is unable to compile a test program, not finding crt1.o, crti.o etc. Without specifying CMAKE_SYSROOT things work, it's just that I have to edit the Find*.cmake files. I can live with that, but any suggestions?<br></div></blockquote><div><br></div><div>It sounds like what you'd want is: <a href="https://cmake.org/cmake/help/latest/variable/CMAKE_FIND_ROOT_PATH.html">https://cmake.org/cmake/help/latest/variable/CMAKE_FIND_ROOT_PATH.html</a><br></div><div><br></div><div>Nils<br></div></div></div>