<div dir="ltr">Brad,<div><br></div><div>How does COMPILE_FLAGS and COMPILE_OPTIONS work together? I.e. are their contents joined to produce a single compiler invocation?</div><div>Also, why there is no COMPILE_OPTIONS property for source files?</div>
<div><br></div><div>Looks like we really need to switch to newer CMake and make use of target_compile_options...</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Feb 13, 2014 at 6:08 PM, Brad King <span dir="ltr"><<a href="mailto:brad.king@kitware.com" target="_blank">brad.king@kitware.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="">On 2/12/2014 11:15 PM, Seth Cantrell wrote:<br>
> Well, I updated to cmake 2.8.12.2 but the result of changing that<br>
> COMPILE_FLAGS to COMPILE_OPTIONS is that quotes are applied incorrectly<br>
<br>
</div>That's because the set_target_compile_flags function in LLVM is<br>
creating the space-separated command-line string that the old<br>
COMPILE_FLAGS option wants:<br>
<div class=""><br>
>> function(set_target_compile_flags target)<br>
>>   foreach(arg ${ARGN})<br>
>>     set(argstring "${argstring} ${arg}")<br>
>>   endforeach()<br>
>>   set_property(TARGET ${target} PROPERTY COMPILE_FLAGS "${argstring}")<br>
>> endfunction()<br>
<br>
</div>Try changing the function to just:<br>
<br>
 function(set_target_compile_flags target)<br>
   set_property(TARGET ${target} PROPERTY COMPILE_OPTIONS "${ARGN}")<br>
 endfunction()<br>
<br>
Of course an upstream version of this change would be simpler<br>
if it just dropped set_target_compile_flags and set the property<br>
directly at the call sites.  One could even use the APPEND option<br>
of set_property to add options incrementally.<br>
<div class="HOEnZb"><div class="h5"><br>
-Brad<br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div>Alexey Samsonov, MSK</div>
</div>