================
Comment at: lib/Driver/ToolChains.cpp:385
@@ -383,1 +384,3 @@
+      if (Sanitize.sanitizesVptr())
+        CmdArgs.push_back("-lc++abi");
     }
----------------
Nothing should be linking directly with libc++abi.dylib.  C++ code should link 
with libc++.dylib or libstdc++.dylib.  I think there is some other setting in 
the clang driver that controls which to link with.  But just linking with -lc++ 
will be right most of the time.

http://reviews.llvm.org/D6960

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/



_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to