[llvm-commits] [compiler-rt] r151157 - /compiler-rt/trunk/lib/asan/Makefile.old
Alexey Samsonov
samsonov at google.com
Wed Feb 22 03:59:44 PST 2012
Author: samsonov
Date: Wed Feb 22 05:59:44 2012
New Revision: 151157
URL: http://llvm.org/viewvc/llvm-project?rev=151157&view=rev
Log:
AddressSanitizer: fix Makefile.old - gtest should depend on libasan
Modified:
compiler-rt/trunk/lib/asan/Makefile.old
Modified: compiler-rt/trunk/lib/asan/Makefile.old
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/Makefile.old?rev=151157&r1=151156&r2=151157&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/Makefile.old (original)
+++ compiler-rt/trunk/lib/asan/Makefile.old Wed Feb 22 05:59:44 2012
@@ -320,7 +320,7 @@
asan_benchmarks: $(BIN)/asan_benchmarks$(SUFF)
# for now, build gtest with clang/asan even if we use a different compiler.
-$(GTEST_LIB):
+$(GTEST_LIB): $(LIBASAN_A)
mkdir -p $(GTEST_MAKE_DIR) && \
cd $(GTEST_MAKE_DIR) && \
$(MAKE) -f ../make/Makefile CXXFLAGS="$(PIE) $(CFLAGS) -g -w" \
More information about the llvm-commits
mailing list