[Lldb-commits] [lldb] r133660 - /lldb/trunk/source/Interpreter/Makefile

Peter Collingbourne peter at pcc.me.uk
Wed Jun 22 15:39:02 PDT 2011


Author: pcc
Date: Wed Jun 22 17:39:02 2011
New Revision: 133660

URL: http://llvm.org/viewvc/llvm-project?rev=133660&view=rev
Log:
Remove -MT options from SWIG invocation

SWIG on Darwin does not support -MT, and it only means that we lose
the .d target, which doesn't seem to be used or needed.

Pointed out by Charles Davis.

Modified:
    lldb/trunk/source/Interpreter/Makefile

Modified: lldb/trunk/source/Interpreter/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/Makefile?rev=133660&r1=133659&r2=133660&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/Makefile (original)
+++ lldb/trunk/source/Interpreter/Makefile Wed Jun 22 17:39:02 2011
@@ -32,8 +32,7 @@
 LLDB_SWIG_INCLUDE_DIRS += -I"/usr/local/include"
 LLDB_SWIG_INCLUDE_DIRS += -I"/usr/include"
 
-SWIG_DEPEND_OPTIONS = -MMD -MF "$(PROJ_OBJ_DIR)/$*.cpp.d.tmp" \
-                      -MT "$*.cpp" -MT "$(PROJ_OBJ_DIR)/$*.cpp.d"
+SWIG_DEPEND_OPTIONS = -MMD -MF "$(PROJ_OBJ_DIR)/$*.cpp.d.tmp"
 CPP_DEPEND_MOVEFILE = then $(MV) -f "$(PROJ_OBJ_DIR)/$*.cpp.d.tmp" "$(PROJ_OBJ_DIR)/$*.cpp.d"; \
                       else $(RM) "$(PROJ_OBJ_DIR)/$*.cpp.d.tmp"; exit 1; fi
 





More information about the lldb-commits mailing list