[Lldb-commits] [PATCH] D24749: [CMake] Initial support for LLDB.framework
Zachary Turner via lldb-commits
lldb-commits at lists.llvm.org
Mon Sep 19 17:24:45 PDT 2016
zturner added inline comments.
================
Comment at: scripts/Python/finishSwigPythonLLDB.py:397
@@ -396,3 +396,3 @@
strBuildDir = os.path.join("..", "..", "..", "..")
- strSrc = os.path.normcase(os.path.join(strBuildDir, vstrSrcFile))
+ strSrc = os.path.normcase(os.path.join(strBuildDir, vstrSrcFile))
----------------
Was this line intentional?
================
Comment at: source/API/CMakeLists.txt:9
@@ -8,1 +8,3 @@
+option(LLDB_BUILD_FRAMEWORK "Build the Darwin LLDB.framework" Off)
+
----------------
Is there any reason to have this off when building on OSX? Is there any value in having it not be an option at all, but just if you're on Darwin, you just always get a Framework?
https://reviews.llvm.org/D24749
More information about the lldb-commits
mailing list