[Lldb-commits] [lldb] r174520 - Fix to build tests with GCC: update makefiles in two watchpoint testcases
Daniel Malea
daniel.malea at intel.com
Wed Feb 6 08:51:24 PST 2013
Author: dmalea
Date: Wed Feb 6 10:51:24 2013
New Revision: 174520
URL: http://llvm.org/viewvc/llvm-project?rev=174520&view=rev
Log:
Fix to build tests with GCC: update makefiles in two watchpoint testcases
Modified:
lldb/trunk/test/functionalities/watchpoint/hello_watchlocation/Makefile
lldb/trunk/test/functionalities/watchpoint/multiple_threads/Makefile
Modified: lldb/trunk/test/functionalities/watchpoint/hello_watchlocation/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/watchpoint/hello_watchlocation/Makefile?rev=174520&r1=174519&r2=174520&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/watchpoint/hello_watchlocation/Makefile (original)
+++ lldb/trunk/test/functionalities/watchpoint/hello_watchlocation/Makefile Wed Feb 6 10:51:24 2013
@@ -1,6 +1,6 @@
LEVEL = ../../../make
-LDFLAGS := -lpthread
+LD_EXTRAS := -lpthread
CXX_SOURCES := main.cpp
include $(LEVEL)/Makefile.rules
Modified: lldb/trunk/test/functionalities/watchpoint/multiple_threads/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/watchpoint/multiple_threads/Makefile?rev=174520&r1=174519&r2=174520&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/watchpoint/multiple_threads/Makefile (original)
+++ lldb/trunk/test/functionalities/watchpoint/multiple_threads/Makefile Wed Feb 6 10:51:24 2013
@@ -1,6 +1,6 @@
LEVEL = ../../../make
-LDFLAGS := -lpthread
+LD_EXTRAS := -lpthread
CXX_SOURCES := main.cpp
include $(LEVEL)/Makefile.rules
More information about the lldb-commits
mailing list