Oh, there is a &quot;CMAKE_CXX_LINK_EXECUTABLE&quot;. That variable I did not know. It is nice to see that one does not need to force the compiler. That would be a bit nasty. :-)<br><br>This feature seems to come along with the 2.8.11 release which is in the door. I will try to write a blog post about this once we have the new release. :)<br>
<br>Thank you for pointing this merge out.<br><br><div class="gmail_quote">On Tue, Mar 12, 2013 at 9:09 AM, Florian Reinhard <span dir="ltr">&lt;<a href="mailto:florian.reinhard@googlemail.com" target="_blank">florian.reinhard@googlemail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">1. drop the TI_DSP*.cmake you can find linked below in your<br>
cmake/Modules/Compiler folder, i assumed this was already released<br>
since Alexander Neundorf merged the changes back in november<br>
<br>
<a href="http://cmake.org/gitweb?p=cmake.git;a=tree;f=Modules/Compiler;h=34a0ad1a5694082dc8ffc62c2ebeaa446ea09274;hb=master" target="_blank">http://cmake.org/gitweb?p=cmake.git;a=tree;f=Modules/Compiler;h=34a0ad1a5694082dc8ffc62c2ebeaa446ea09274;hb=master</a><br>

<br>
<br>
2. set your compiler in the following way, just replace/set CGT_DIR.<br>
as you can see from the comment, the commands are sensible to the<br>
order:<br>
SET (CMAKE_C_COMPILER &quot;${CGT_DIR}/bin/cl6x.exe&quot;)<br>
SET (CMAKE_CXX_COMPILER ${CMAKE_C_COMPILER})<br>
SET (CMAKE_ASM_COMPILER ${CMAKE_C_COMPILER})<br>
SET (CMAKE_CXX_LINK_EXECUTABLE ${CMAKE_C_COMPILER})<br>
SET (CMAKE_STRIP &quot;${CGT_DIR}/bin/strip6x.exe&quot;)<br>
<br>
# We do want to compile assembler files as well<br>
ENABLE_LANGUAGE(ASM)<br>
<br>
# must be done after enabling ASM since it overwrites CMAKE_AR<br>
SET (CMAKE_AR &quot;${CGT_DIR}/bin/ar6x.exe&quot;)<br>
<br>
<br>
3. if you encounter problems while cmake does compiler tests add the following<br>
SET (CMAKE_C_COMPILER_WORKS   1)<br>
SET (CMAKE_CXX_COMPILER_WORKS 1)<br>
#skip ABI checks<br>
SET (CMAKE_DETERMINE_C_ABI_COMPILED   1)<br>
SET (CMAKE_DETERMINE_CXX_ABI_COMPILED 1)<br>
SET (CMAKE_DETERMINE_ASM_ABI_COMPILED 1)<br>
<br>
in my case on windows 7 with cl6x 6.2.*, cmake would just crash. i<br>
think this is what you encounter as well. maybe jom just hides that<br>
crash. unfortunately i have not the knowledge to investigate this on<br>
windows.<br>
<br>
4. if you compile libraries as well you might need the following:<br>
UNSET (CMAKE_C_ARCHIVE_FINISH)<br>
UNSET (CMAKE_CXX_ARCHIVE_FINISH)<br>
<br>
Kind Regards,<br>
<br>
Florian Reinhard<br>
<br>
2013/2/22 Laszlo Papp &lt;<a href="mailto:lpapp@kde.org">lpapp@kde.org</a>&gt;:<br>
<div class="HOEnZb"><div class="h5">&gt; Hi,<br>
&gt;<br>
&gt; I am now trying to put a toolchain file together for the aforementioned<br>
&gt; embedded environment on my Windows 7 workstation. You can see the file<br>
&gt; contents I have, and the errors I get below. When I just use the compiler<br>
&gt; against the one liner main.c, it works off hand. I also tried to force the<br>
&gt; C/C++ compilers, but even though the cmake ran fine, jom failed pretty much<br>
&gt; with the same error.<br>
&gt;<br>
&gt; Any help is much appreciated!<br>
&gt;<br>
&gt; Laszlo<br>
&gt;<br>
&gt; -----------------------------------------------------------------<br>
&gt;<br>
&gt; main.c<br>
&gt;<br>
&gt; int main() {return 0;}<br>
&gt;<br>
&gt; CMakeLists.txt<br>
&gt;<br>
&gt; add_executable(skeleton main.c)<br>
&gt;<br>
&gt; ToolchainFile-C6000<br>
&gt;<br>
&gt; # include(&quot;CMakeForceCompiler&quot;)<br>
&gt;<br>
&gt; set(CMAKE_SYSTEM_NAME &quot;Sysbios&quot;)<br>
&gt; set(CMAKE_SYSTEM_VERSION &quot;1.0&quot;)<br>
&gt; set(CMAKE_SYSTEM_PROCESSOR &quot;C6000&quot;)<br>
&gt;<br>
&gt; set(CMAKE_FIND_ROOT_PATH    &quot;${CMAKE_FIND_ROOT_PATH}&quot;<br>
&gt;                 &quot;C:/ti/C6000 Code Generation Tools 7.3.0B3/bin&quot;<br>
&gt;                 &quot;C:/ti/C6000 Code Generation Tools 7.3.0B3/include&quot;<br>
&gt;                 &quot;C:/ti/C6000 Code Generation Tools 7.3.0B3/lib&quot;)<br>
&gt;<br>
&gt; # CMAKE_FORCE_C_COMPILER(&quot;C:/ti/C6000 Code Generation Tools<br>
&gt; 7.3.0B3/bin/cl6x.exe&quot; &quot;TI&quot;)<br>
&gt; # CMAKE_FORCE_CXX_COMPILER(&quot;C:/ti/C6000 Code Generation Tools<br>
&gt; 7.3.0B3/bin/cl6x.exe&quot; &quot;TI&quot;)<br>
&gt;<br>
&gt; SET(CMAKE_C_COMPILER  &quot;C:/ti/C6000 Code Generation Tools<br>
&gt; 7.3.0B3/bin/cl6x.exe&quot;)<br>
&gt; SET(CMAKE_CXX_COMPILER  &quot;C:/ti/C6000 Code Generation Tools<br>
&gt; 7.3.0B3/bin/cl6x.exe&quot;)<br>
&gt;<br>
&gt; set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM    BOTH)<br>
&gt; set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE    BOTH)<br>
&gt; set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY    ONLY)<br>
&gt;<br>
&gt; ERROR<br>
&gt;<br>
&gt; cmake -G &quot;NMake Makefiles JOM&quot;<br>
&gt; -DCMAKE_TOOLCHAIN_FILE=../toolchain-cl6x.cmake ..<br>
&gt; -- The C compiler identification is TI_DSP 7.3.0<br>
&gt; -- The CXX compiler identification is TI_DSP 7.3.0<br>
&gt; -- Check for working C compiler: C:/ti/C6000 Code Generation Tools<br>
&gt; 7.3.0B3/bin/c<br>
&gt; l6x.exe<br>
&gt; -- Check for working C compiler: C:/ti/C6000 Code Generation Tools<br>
&gt; 7.3.0B3/bin/c<br>
&gt; l6x.exe -- broken<br>
&gt; CMake Error at C:/Program Files (x86)/CMake<br>
&gt; 2.8/share/cmake-2.8/Modules/CMakeTes<br>
&gt; tCCompiler.cmake:61 (message):<br>
&gt;   The C compiler &quot;C:/ti/C6000 Code Generation Tools 7.3.0B3/bin/cl6x.exe&quot; is<br>
&gt;   not able to compile a simple test program.<br>
&gt;<br>
&gt;   It fails with the following output:<br>
&gt;<br>
&gt;    Change Dir: C:/Projects/share/skeleton/build/CMakeFiles/CMakeTmp<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;   Run Build Command:jom &quot;cmTryCompileExec2474985119\fast&quot;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;   jom 1.0.13 - empower your cores<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;         &quot;C:\Program Files (x86)\jom\jom.exe&quot; -f<br>
&gt;   CMakeFiles\cmTryCompileExec2474985119.dir\build.make /nologo -<br>
&gt;   CMakeFiles\cmTryCompileExec2474985119.dir\build<br>
&gt;<br>
&gt;         &quot;C:\Program Files (x86)\CMake 2.8\bin\cmake.exe&quot; -E<br>
&gt; cmake_progress_repor<br>
&gt; t<br>
&gt;   C:\Projects\share\skeleton\build\CMakeFiles\CMakeTmp\CMakeFiles 1<br>
&gt;<br>
&gt;   Building C object<br>
&gt;   CMakeFiles/cmTryCompileExec2474985119.dir/testCCompiler.c.obj<br>
&gt;<br>
&gt;         C:\ti\C6000C~1.0B3\bin\cl6x.exe -o<br>
&gt;   CMakeFiles\cmTryCompileExec2474985119.dir\testCCompiler.c.obj -c<br>
&gt;   C:\Projects\share\skeleton\build\CMakeFiles\CMakeTmp\testCCompiler.c<br>
&gt;<br>
&gt;   [testCCompiler.c]<br>
&gt;<br>
&gt;   &gt;&gt; WARNING: object file specified, but linking not enabled<br>
&gt;<br>
&gt;   Linking C executable cmTryCompileExec2474985119<br>
&gt;<br>
&gt;         C:\ti\C6000C~1.0B3\bin\cl6x.exe<br>
&gt;   &quot;CMakeFiles\cmTryCompileExec2474985119.dir\testCCompiler.c.obj&quot; -o<br>
&gt;   cmTryCompileExec2474985119<br>
&gt;<br>
&gt;   [cmTryCompileExec2474985119.]<br>
&gt;<br>
&gt;   &gt;&gt; WARNING: object file specified, but linking not enabled<br>
&gt;<br>
&gt;   Fatal error: could not open source file &quot;cmTryCompileExec2474985119&quot;<br>
&gt;<br>
&gt;   1 fatal error detected in the compilation of &quot;cmTryCompileExec2474985119&quot;.<br>
&gt;<br>
&gt;   Compilation terminated.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;   jom:<br>
&gt;<br>
&gt; C:\Projects\share\skeleton\build\CMakeFiles\CMakeTmp\CMakeFiles\cmTryCompileEx<br>
&gt; ec2474985119.dir\build.make<br>
&gt;   [cmTryCompileExec2474985119] Error 1<br>
&gt;<br>
&gt;   &gt;&gt; Compilation failure<br>
&gt;<br>
&gt;   jom: C:\Projects\share\skeleton\build\CMakeFiles\CMakeTmp\Makefile<br>
&gt;   [cmTryCompileExec2474985119\fast] Error 2<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;   CMake will not be able to correctly generate this project.<br>
&gt; Call Stack (most recent call first):<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; -- Configuring incomplete, errors occurred!<br>
&gt;<br>
&gt; C:\Projects\share\skeleton\build&gt;<br>
&gt;<br>
&gt;<br>
</div></div><span class="HOEnZb"><font color="#888888">&gt; --<br>
&gt;<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the CMake FAQ at:<br>
&gt; <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
</font></span></blockquote></div><br>