[Lldb-commits] [PATCH] D11898: Also initialize ScriptInterpreterNone if Python is disabled

Phabricator via lldb-commits lldb-commits at lists.llvm.org
Sun Aug 23 02:06:36 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL245808: Also initialize ScriptInterpreterNone if Python is disabled (authored by kfischer).

Changed prior to commit:
  http://reviews.llvm.org/D11898?vs=31645&id=32922#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D11898

Files:
  lldb/trunk/source/API/SystemInitializerFull.cpp

Index: lldb/trunk/source/API/SystemInitializerFull.cpp
===================================================================
--- lldb/trunk/source/API/SystemInitializerFull.cpp
+++ lldb/trunk/source/API/SystemInitializerFull.cpp
@@ -231,14 +231,14 @@
 SystemInitializerFull::Initialize()
 {
     SystemInitializerCommon::Initialize();
+    ScriptInterpreterNone::Initialize();
 
 #if !defined(LLDB_DISABLE_PYTHON)
     InitializeSWIG();
 
     // ScriptInterpreterPython::Initialize() depends on things like HostInfo being initialized
     // so it can compute the python directory etc, so we need to do this after
     // SystemInitializerCommon::Initialize().
-    ScriptInterpreterNone::Initialize();
     ScriptInterpreterPython::Initialize();
 #endif
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D11898.32922.patch
Type: text/x-patch
Size: 756 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150823/567a48b7/attachment.bin>


More information about the lldb-commits mailing list