We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3cfdd5 commit 6e7a291Copy full SHA for 6e7a291
configure.ac
@@ -624,6 +624,11 @@ if test "x$with_cxx11" = "xyes"; then
624
;;
625
esac
626
627
+ # Force gtest to use it's own tuple implementation since 'tr1/tuple'
628
+ # might not exist (for example, if building with clang).
629
+ # TODO(dhamon): Upgrade gmock to 1.7 and pass GTEST_LANG_CXX11.
630
+ CXXFLAGS="-DGTEST_USE_OWN_TR1_TUPLE=1 $CXXFLAGS"
631
+
632
# Also pass the flags to 3rdparty libraries.
633
CONFIGURE_ARGS="$CONFIGURE_ARGS CXXFLAGS='$CXXFLAGS'"
634
fi
0 commit comments