[Lldb-commits] [lldb] r214207 - Use the most up to date dsymutil on Darwin, not the one in /usr/bin/dsymutil.

Greg Clayton gclayton at apple.com
Tue Jul 29 13:10:59 PDT 2014


Author: gclayton
Date: Tue Jul 29 15:10:59 2014
New Revision: 214207

URL: http://llvm.org/viewvc/llvm-project?rev=214207&view=rev
Log:
Use the most up to date dsymutil on Darwin, not the one in /usr/bin/dsymutil.


Modified:
    lldb/trunk/test/make/Makefile.rules

Modified: lldb/trunk/test/make/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/make/Makefile.rules?rev=214207&r1=214206&r2=214207&view=diff
==============================================================================
--- lldb/trunk/test/make/Makefile.rules (original)
+++ lldb/trunk/test/make/Makefile.rules Tue Jul 29 15:10:59 2014
@@ -64,7 +64,7 @@ ARCHFLAG ?= -arch
 # Change any build/tool options needed
 #----------------------------------------------------------------------
 ifeq "$(OS)" "Darwin"
-	DS := dsymutil
+	DS := $(shell xcrun -find -toolchain default dsymutil)
 	DSFLAGS =
 	DSYM = $(EXE).dSYM
 	AR := libtool





More information about the lldb-commits mailing list