Thanks, I known the reason why cmke can not found the crt functions:<br><br>When I set CFLAGS with double quotation marks:<br>SET CFLAGS=/nologo /W3 /EHsc /O2 /Oy- /Zi /D&quot;_WIN32_WINNT=0x0502&quot; /D&quot;WIN32_LEAN_AND_MEAN=1&quot;<br>

<br>Then cmake can issued invalid command lines like this:<br><br>CL.EXE   /nologo /nologo /W3 /EHsc /O2 /Oy- /Zi /D;_WIN32_WINNT=0x0502&quot; /D&quot;WIN32_LEAN_AND_MEAN=1&quot; /DWIN32 /D_WINDOWS /W3 /Zm1000  -DCHECK_FUNCTION_EXISTS=exp&quot; /D_DEBUG /MDd /Zi /Ob0 /Od /GZ  /FoCMakeFiles\cmTryCompileExec.dir\CheckFunctionExists.c.obj /FdC:\var\tmp\CMakeFiles\CMakeTmp\cmTryCompileExec.pdb -c C:\opt\CMake-2.8\share\cmake-2.8\Modules\CheckFunctionExists.c<br>

<br>This first double quotation mark was replaced by semicolon (&quot; =&gt; ;) !!!<br><br>But after I changed to with the following line, no errors:<br>SET CFLAGS=/nologo /W3 /EHsc /O2 /Oy- /Zi /D_WIN32_WINNT=0x0502   /DWIN32_LEAN_AND_MEAN=1<br>

<br>Then I test LDFLAGS:<br>SET LDFLAGS=/OPT:ICF,REF /MACHINE:X86 /SUBSYSTEM:CONSOLE /RELEASE<br><br>Cmake still issued invalid command lines like this:<br><br>CL.EXE  /nologo @CMakeFiles\cmTryCompileExec.dir\objects1.rsp    /DWIN32 /D_WINDOWS /W3 /Zm1000 /GX /GR   /D_DEBUG /MDd /Zi  /Ob0 /Od /GZ /FecmTryCompileExec.exe /FdC:\var\tmp\CMakeFiles\CMakeTmp\cmTryCompileExec.pdb -link /implib:cmTryCompileExec.lib /version:0.0   /STACK:10000000 /machine:X86;/OPT:ICF,REF /MACHINE:X86 /SUBSYSTEM:CONSOLE /RELEASE /debug /pdbtype:sept /INCREMENTAL:YES /subsystem:console  kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib<br>

<br>/machine:X86;/OPT:ICF,REF should be /machine:X86 /OPT:ICF,REF !!!<br><br>Regards,<br>Dongsheng<br><br><div class="gmail_quote">On Wed, Jan 26, 2011 at 02:19, Bill Hoffman <span dir="ltr">&lt;<a href="mailto:bill.hoffman@kitware.com">bill.hoffman@kitware.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div class="im">On 1/25/2011 9:14 AM, Dongsheng Song wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<br>
 From the page<br>
<a href="http://www.cmake.org/Wiki/CMake_FAQ#Is_there_an_option_to_produce_more_.27verbose.27_compiling.3F" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ#Is_there_an_option_to_produce_more_.27verbose.27_compiling.3F</a><br>


<br>
but when I set CMAKE_START_TEMP_FILE and CMAKE_END_TEMP_FILE to &quot;&quot; ,<br>
CMakeError.log still include such lines:<br>
<br>
E:\usr\vs2010\VC\bin\cl.exe  @C:\DOCUME~1\DONGSH~1\LOCALS~1\Temp\nm506.tmp<br>
<br>
</blockquote>
<br></div>
OK, so I just learned something about windows 7 today...  Welcome to VirtualStore.   When you try to edit a file in Program Files as non-admin, Windows silently creates another copy of the file for you to edit.<br>
<br>
For me it showed up here:<br>
./AppData/Local/VirtualStore/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Platform/Windows.cmake<br>
<br>
CMake for some reason does not pick up this alternate file, and still uses the original (unchanged) file in Program Files.  So, the FAQ is still good, but you need to edit the file as admin to actually change it.<br>
<br>
-Bill<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the CMake FAQ at: <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
</blockquote></div><br>