[llvm-commits] [compiler-rt] r156907 - /compiler-rt/trunk/lib/tsan/rtl/Makefile.old

Kostya Serebryany kcc at google.com
Wed May 16 00:46:55 PDT 2012


Author: kcc
Date: Wed May 16 02:46:55 2012
New Revision: 156907

URL: http://llvm.org/viewvc/llvm-project?rev=156907&view=rev
Log:
[tsan] fix old-style makefile -- we still need them to run our tests

Modified:
    compiler-rt/trunk/lib/tsan/rtl/Makefile.old

Modified: compiler-rt/trunk/lib/tsan/rtl/Makefile.old
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/Makefile.old?rev=156907&r1=156906&r2=156907&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/Makefile.old (original)
+++ compiler-rt/trunk/lib/tsan/rtl/Makefile.old Wed May 16 02:46:55 2012
@@ -4,7 +4,7 @@
 endif
 
 # For interception. FIXME: move interception one level higher.
-INCLUDES= -I../../asan
+INCLUDES= -I../..
 EXTRA_CXXFLAGS=-fno-exceptions
 NO_SYSROOT=--sysroot=.
 CXXFLAGS+=$(EXTRA_CXXFLAGS)
@@ -81,7 +81,7 @@
 %.o: %.cc Makefile.old $(LIBTSAN_HEADERS)
 	$(CXX) $(CXXFLAGS) $(INCLUDES) $(NO_SYSROOT) -c $<
 
-%.o: ../../asan/interception/%.cc
+%.o: ../../interception/%.cc
 	$(CXX) $(CXXFLAGS) $(INCLUDES) -c $< -o $@ 
 
 libtsan.a: $(LIBTSAN_OBJ)





More information about the llvm-commits mailing list