Disable MCJIT on non-Darwin platforms

Currently the runtime dynamic linker lacks object file support for anything
other than Mach-O.

llvm-svn: 132583
diff --git a/lldb/source/Expression/ClangExpressionParser.cpp b/lldb/source/Expression/ClangExpressionParser.cpp
index 255013e..2c411e4 100644
--- a/lldb/source/Expression/ClangExpressionParser.cpp
+++ b/lldb/source/Expression/ClangExpressionParser.cpp
@@ -52,7 +52,10 @@
 #include "llvm/ADT/StringRef.h"
 #include "llvm/ExecutionEngine/ExecutionEngine.h"
 
-//#define USE_STANDARD_JIT
+#if !defined(__APPLE__)
+#define USE_STANDARD_JIT
+#endif
+
 #if defined (USE_STANDARD_JIT)
 #include "llvm/ExecutionEngine/JIT.h"
 #else