[Lldb-commits] [PATCH] Add -lpthread to LLDB shared lib link line unconditionally

Keno Fischer kfischer at college.harvard.edu
Thu Jun 18 17:21:28 PDT 2015


REPOSITORY
  rL LLVM

================
Comment at: scripts/CMakeLists.txt:1
@@ -1,1 +1,2 @@
-set(LLVM_NO_RTTI 1)
+if (NOT LLDB_DISABLE_PYTHON)
+	set(LLVM_NO_RTTI 1)
----------------
labath wrote:
> What was the exact reason you needed to add this?
We disable threads and LLDB_DISABLE_PYTHON and all of this disables python stuff that isn't needed (and errors if you don't use python/don't have it installed). Originally I only had the Makefile change, but I was asked to check if cmake worked in this configuration, and this was the one thing I had to change to make it work. I'll happily make this a separate commit, it was just here for convenience.

http://reviews.llvm.org/D5431

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






More information about the lldb-commits mailing list