Thanks! <div><br></div><div>Question:</div><div>There seem to be no way to build 32- and 64-bit linux libraries with a single make command. </div><div>Am I right? </div><div>Do you plan to change this?</div><div><br></div>
<div>This change requires to fix the asan driver in tools/clang/lib/Driver/Tools.cpp, I'll prepare a patch unless you have it ready. </div><div><br></div><div>Evgeniy, could you please prepare a similar patch for linux/arm (take r146051 and r<span style="background-color: rgba(255, 255, 255, 0.917969); color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; ">145950 as an example)</span></div>
<div><br></div><div>--kcc </div><div><br></div><div><br><br><div class="gmail_quote">On Wed, Dec 7, 2011 at 11:35 AM, Daniel Dunbar <span dir="ltr"><<a href="mailto:daniel@zuster.org">daniel@zuster.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Author: ddunbar<br>
Date: Wed Dec  7 13:35:10 2011<br>
New Revision: 146051<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=146051&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=146051&view=rev</a><br>
Log:<br>
runtime/Linux: Include the profile and ASAN libs on x86.<br>
<br>
Modified:<br>
    cfe/trunk/runtime/compiler-rt/Makefile<br>
<br>
Modified: cfe/trunk/runtime/compiler-rt/Makefile<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/runtime/compiler-rt/Makefile?rev=146051&r1=146050&r2=146051&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/runtime/compiler-rt/Makefile?rev=146051&r1=146050&r2=146051&view=diff</a><br>

==============================================================================<br>
--- cfe/trunk/runtime/compiler-rt/Makefile (original)<br>
+++ cfe/trunk/runtime/compiler-rt/Makefile Wed Dec  7 13:35:10 2011<br>
@@ -93,10 +93,12 @@<br>
<br>
 # We currently only try to generate runtime libraries on x86.<br>
 ifeq ($(ARCH),x86)<br>
-RuntimeLibrary.linux.Configs += full-i386<br>
+RuntimeLibrary.linux.Configs += \<br>
+       full-i386 profile-i386 asan-i386<br>
 endif<br>
 ifeq ($(ARCH),x86_64)<br>
-RuntimeLibrary.linux.Configs += full-x86_64<br>
+RuntimeLibrary.linux.Configs += \<br>
+       full-x86_64 profile-x86_64 asan-x86_64<br>
 endif<br>
<br>
 endif<br>
<br>
<br>
_______________________________________________<br>
cfe-commits mailing list<br>
<a href="mailto:cfe-commits@cs.uiuc.edu">cfe-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits</a><br>
</blockquote></div><br></div>