[llvm-commits] [compiler-rt] r162832 - in /compiler-rt/trunk/lib/tsan: Makefile.old rtl/Makefile.old

Kostya Serebryany kcc at google.com
Wed Aug 29 01:21:09 PDT 2012


Author: kcc
Date: Wed Aug 29 03:21:09 2012
New Revision: 162832

URL: http://llvm.org/viewvc/llvm-project?rev=162832&view=rev
Log:
[tsan] fix tsan's Makefile.old -- our build bot still uses it (hopefully, will soon migrate to cmake completely)

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

Modified: compiler-rt/trunk/lib/tsan/Makefile.old
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/Makefile.old?rev=162832&r1=162831&r2=162832&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/Makefile.old (original)
+++ compiler-rt/trunk/lib/tsan/Makefile.old Wed Aug 29 03:21:09 2012
@@ -25,7 +25,7 @@
 UNIT_TEST_OBJ=$(patsubst %.cc,%.o,$(UNIT_TEST_SRC))
 UNIT_TEST_HDR=$(wildcard rtl/*.h) $(wildcard ../sanitizer_common/*.h)
 
-INCLUDES=-Irtl -I.. $(GTEST_INCLUDE)
+INCLUDES=-Irtl -I.. -I../../include $(GTEST_INCLUDE)
 
 all: libtsan test
 

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=162832&r1=162831&r2=162832&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/Makefile.old (original)
+++ compiler-rt/trunk/lib/tsan/rtl/Makefile.old Wed Aug 29 03:21:09 2012
@@ -6,7 +6,7 @@
 # For interception. FIXME: move interception one level higher.
 INTERCEPTION=../../interception
 COMMON=../../sanitizer_common
-INCLUDES= -I../..
+INCLUDES= -I../.. -I../../../include
 EXTRA_CXXFLAGS=-fno-exceptions
 NO_SYSROOT=--sysroot=.
 CXXFLAGS+=$(EXTRA_CXXFLAGS)





More information about the llvm-commits mailing list