[Lldb-commits] [PATCH] Don't compile scripts directory if LLDB_DISABLE_PYTHON is set

Zachary Turner zturner at google.com
Tue Apr 7 08:19:42 PDT 2015


Actually sorry, the new check doesn't make sense either, now windows will
never include it. Can you change it to just if NOT LLDB_DISABLE_PYTHON
On Tue, Apr 7, 2015 at 7:58 AM Pavel Labath <labath at google.com> wrote:

> REPOSITORY
>   rL LLVM
>
> http://reviews.llvm.org/D8855
>
> Files:
>   lldb/trunk/CMakeLists.txt
>
> Index: lldb/trunk/CMakeLists.txt
> ===================================================================
> --- lldb/trunk/CMakeLists.txt
> +++ lldb/trunk/CMakeLists.txt
> @@ -4,7 +4,7 @@
>
>  #add_subdirectory(include)
>  add_subdirectory(docs)
> -if (NOT CMAKE_SYSTEM_NAME MATCHES "Windows" OR NOT LLDB_DISABLE_PYTHON)
> +if (NOT CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT LLDB_DISABLE_PYTHON)
>    add_subdirectory(scripts)
>  endif ()
>  add_subdirectory(source)
>
> EMAIL PREFERENCES
>   http://reviews.llvm.org/settings/panel/emailpreferences/
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150407/13eb4525/attachment.html>


More information about the lldb-commits mailing list