[llvm-commits] [compiler-rt] r159198 - /compiler-rt/trunk/lib/tsan/Makefile.old
Alexey Samsonov
samsonov at google.com
Tue Jun 26 04:33:51 PDT 2012
Author: samsonov
Date: Tue Jun 26 06:33:51 2012
New Revision: 159198
URL: http://llvm.org/viewvc/llvm-project?rev=159198&view=rev
Log:
[TSan] fix warnings suppression: internal-linkage-in-inline was renamed to static-in-inline
Modified:
compiler-rt/trunk/lib/tsan/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=159198&r1=159197&r2=159198&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/Makefile.old (original)
+++ compiler-rt/trunk/lib/tsan/Makefile.old Tue Jun 26 06:33:51 2012
@@ -3,7 +3,7 @@
CXXFLAGS = -fPIE -g -Wall -Werror -DTSAN_DEBUG=$(DEBUG)
# Silence warnings that Clang produces for gtest code.
# Use -Wno-attributes so that gcc doesn't complain about unknown warning types.
-CXXFLAGS += -Wno-unused-private-field -Wno-internal-linkage-in-inline -Wno-attributes
+CXXFLAGS += -Wno-unused-private-field -Wno-static-in-inline -Wno-attributes
ifeq ($(DEBUG), 0)
CXXFLAGS += -O3
endif
More information about the llvm-commits
mailing list