&gt; I&#39;ve been using QNX and cmake together for a few weeks, and I&#39;ve yet to<br>&gt; have the problem that you indicated. In my QNX toolchain file I use the<br>&gt; line:<br>&gt;<br>&gt; SET( CMAKE_AR<br>&gt; &quot;${QNX_HOST}/usr/bin/ntox86-ar${HOST_EXECUTABLE_SUFFIX}&quot; CACHE PATH &quot;QNX ar Program&quot; )<br>
&gt;<br>&gt; -kito<br><br><br>Thanks for the help, that has solved the problem. I guess I got side-tracked with the symptom that the placement of SET(CMAKE_AR &quot;ntox86-ar.exe&quot;) in the QNX.cmake file worked, but the same string in the toolchain file didn&#39;t. So what wasn&#39;t clear was that it needed to have an absolute path and couldn&#39;t search for this exe in the CMAKE_FIND_ROOT_PATH (like it seems to do for the default string &quot;ar.exe&quot;).<br>
<br>I have one last problem that you may be able to help me out with? When linking shared libraries the cmake generated make output &quot;cmake -E cmake_symlink_library&quot; fails with an Error but doesn&#39;t explain why. I&#39;ve done some searching but can&#39;t find what could be the problem! Just wondering if you build shared libraries with symlinks and have experienced something similar?<br>
<br><br>Thanks, Ross