[Lldb-commits] [lldb] r176281 - Fixed an issue where the LDFLAGS were not correctly gettting modified to be additive.

Greg Clayton gclayton at apple.com
Thu Feb 28 10:45:39 PST 2013


Author: gclayton
Date: Thu Feb 28 12:45:39 2013
New Revision: 176281

URL: http://llvm.org/viewvc/llvm-project?rev=176281&view=rev
Log:
Fixed an issue where the LDFLAGS were not correctly gettting modified to be additive.


Modified:
    lldb/trunk/test/lang/objc/forward-decl/Makefile

Modified: lldb/trunk/test/lang/objc/forward-decl/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/forward-decl/Makefile?rev=176281&r1=176280&r2=176281&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/forward-decl/Makefile (original)
+++ lldb/trunk/test/lang/objc/forward-decl/Makefile Thu Feb 28 12:45:39 2013
@@ -4,6 +4,6 @@ DYLIB_NAME := libContainer
 DYLIB_OBJC_SOURCES := Container.m
 OBJC_SOURCES := main.m
 
-LDFLAGS = -framework Foundation
-
 include $(LEVEL)/Makefile.rules
+
+LDFLAGS += -framework Foundation





More information about the lldb-commits mailing list