[Lldb-commits] [lldb] r181876 - Only include under arm and an Apple system. Otherwise, it will fail under a GNU/Linux under ARM
    Sylvestre Ledru 
    sylvestre at debian.org
       
    Wed May 15 02:32:35 PDT 2013
    
    
  
Author: sylvestre
Date: Wed May 15 04:32:35 2013
New Revision: 181876
URL: http://llvm.org/viewvc/llvm-project?rev=181876&view=rev
Log:
Only include under arm and an Apple system. Otherwise, it will fail under a GNU/Linux under ARM
Modified:
    lldb/trunk/source/Core/Error.cpp
Modified: lldb/trunk/source/Core/Error.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Error.cpp?rev=181876&r1=181875&r2=181876&view=diff
==============================================================================
--- lldb/trunk/source/Core/Error.cpp (original)
+++ lldb/trunk/source/Core/Error.cpp Wed May 15 04:32:35 2013
@@ -20,7 +20,7 @@
 #include <cstdlib>
 #include <cstring>
 
-#if defined (__arm__)
+#if defined (__arm__) && defined (__APPLE__)
 #include <SpringBoardServices/SpringBoardServer.h>
 #endif
 
    
    
More information about the lldb-commits
mailing list