That bug is regarding &quot;CMAKE_STATIC_LINKER_FLAGS<br><br>What about this bug report: <br><a href="http://www.cmake.org/Bug/view.php?id=12295">http://www.cmake.org/Bug/view.php?id=12295</a><br>which is related to STATIC_LIBRARY_FLAGS<br>

<br><br><div class="gmail_quote">On 1 December 2012 16:00, Timothy J. Arrington <span dir="ltr">&lt;<a href="mailto:sse3ml@gmail.com" target="_blank">sse3ml@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

The bug is already reported for quite a while:<br>
<a href="http://public.kitware.com/Bug/view.php?id=10094" target="_blank">http://public.kitware.com/Bug/view.php?id=10094</a>, but so far, hasn&#39;t<br>
been fixed.<br>
<br>
2012/11/28 Paul Harris &lt;<a href="mailto:harris.pc@gmail.com">harris.pc@gmail.com</a>&gt;:<br>
<div><div class="h5">&gt; Hi,<br>
&gt;<br>
&gt; I set this:<br>
&gt;<br>
&gt;    set (STATIC_LIBRARY_FLAGS_RELWITHDEBINFO<br>
&gt; &quot;${STATIC_LIBRARY_FLAGS_RELWITHDEBINFO} /LTCG&quot;)<br>
&gt;<br>
&gt; and it didn&#39;t seem to work.  MSVC still has no LTCG flag set for any of my<br>
&gt; static libraries.<br>
&gt;<br>
&gt; does this feature work?<br>
&gt; cheers,<br>
&gt; Paul<br>
&gt;<br>
&gt;<br>
&gt; On 23 June 2011 01:02, Ben Medina &lt;<a href="mailto:ben.medina@gmail.com">ben.medina@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; So that the answer stays on the list:<br>
&gt;&gt;<br>
&gt;&gt; One must use the STATIC_LIBRARY_FLAGS property, rather than<br>
&gt;&gt; LINK_FLAGS, for static libraries.<br>
&gt;&gt;<br>
&gt;&gt; On Tue, Jun 21, 2011 at 3:12 PM, Ben Medina &lt;<a href="mailto:ben.medina@gmail.com">ben.medina@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt; Since I got no feedback, I assume it&#39;s a bug. I&#39;ve filed it here:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; 0012295: LINK_FLAGS_RELEASE has no effect on static libraries for MSVC<br>
&gt;&gt; &gt; generators<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; <a href="http://www.cmake.org/Bug/view.php?id=12295" target="_blank">http://www.cmake.org/Bug/view.php?id=12295</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; On Mon, Jun 13, 2011 at 11:50 AM, Ben Medina &lt;<a href="mailto:ben.medina@gmail.com">ben.medina@gmail.com</a>&gt;<br>
&gt;&gt; &gt; wrote:<br>
&gt;&gt; &gt;&gt; Hello all,<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; I&#39;m using CMake 2.8.4 and am seeing an odd differenc between static<br>
&gt;&gt; &gt;&gt; and shared libraries in regard to the LINK_FLAGS property. In<br>
&gt;&gt; &gt;&gt; particular, I&#39;m enabling &quot;Whole program optimization&quot; in Visual Studio<br>
&gt;&gt; &gt;&gt; 2010, which is done by add /GL as a compiler flag and /LTCG as a<br>
&gt;&gt; &gt;&gt; linker flag for the release configuration. However, the link flag is<br>
&gt;&gt; &gt;&gt; not used for static libraries, leading to a build warning about<br>
&gt;&gt; &gt;&gt; compiling with /GL but linking without /LTCG.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Here&#39;s an example:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; cmake_minimum_required (VERSION 2.8)<br>
&gt;&gt; &gt;&gt; project (link_test)<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; set (CMAKE_CXX_FLAGS_RELEASE &quot;${CMAKE_CXX_FLAGS_RELEASE} /GL&quot;)<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; add_library (static_test STATIC a.cpp)<br>
&gt;&gt; &gt;&gt; set_target_properties (<br>
&gt;&gt; &gt;&gt;    static_test<br>
&gt;&gt; &gt;&gt;    PROPERTIES<br>
&gt;&gt; &gt;&gt;    LINK_FLAGS_RELEASE &quot;/LTCG&quot;<br>
&gt;&gt; &gt;&gt;    )<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; add_library (shared_test SHARED a.cpp)<br>
&gt;&gt; &gt;&gt; set_target_properties (<br>
&gt;&gt; &gt;&gt;    shared_test<br>
&gt;&gt; &gt;&gt;    PROPERTIES<br>
&gt;&gt; &gt;&gt;    LINK_FLAGS_RELEASE &quot;/LTCG&quot;<br>
&gt;&gt; &gt;&gt;    )<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Just add an empty file called a.cpp to the directory, then build the<br>
&gt;&gt; &gt;&gt; whole project in release configuration. You&#39;ll get a warning like this<br>
&gt;&gt; &gt;&gt; for the static_test library:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; 2&gt;  a.obj : MSIL .netmodule or module compiled with /GL found;<br>
&gt;&gt; &gt;&gt; restarting link with /LTCG; add /LTCG to the link command line to<br>
&gt;&gt; &gt;&gt; improve<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Why is CMake not applying LINK_FLAGS_RELEASE to the static library?<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Thanks,<br>
&gt;&gt; &gt;&gt; Ben<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt;<br>
&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt;<br>
&gt;&gt; Please keep messages on-topic and check the CMake FAQ at:<br>
&gt;&gt; <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
&gt;&gt;<br>
&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; <a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
</div></div>&gt; --<br>
<div class="HOEnZb"><div class="h5">&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>
</div></div></blockquote></div><br>