You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.
gtest produces the following error during compilation on OSX 10.9
In file included from src/gtest-all.cc:39:
In file included from ./include/gtest/gtest.h:57:
In file included from ./include/gtest/internal/gtest-internal.h:40:
./include/gtest/internal/gtest-port.h:460:10: fatal error: 'tr1/tuple' file not found
#include <tr1/tuple> // NOLINT
to make it compile the follow flag should be set up.
CPPFLAGS = -DGTEST_HAS_TR1_TUPLE=0
The text was updated successfully, but these errors were encountered:
Long term we should really fix the way gtest is being provided on OS X. The recommendation is not to build it separately from your code you are testing, but rather have the gtest formulae provide the source files and have each project compile it in. For example, the Ubuntu package just installs a single source file.
gtest produces the following error during compilation on OSX 10.9
to make it compile the follow flag should be set up.
CPPFLAGS = -DGTEST_HAS_TR1_TUPLE=0
The text was updated successfully, but these errors were encountered: