diff options
author | Fedja Beader <fedja@protonmail.ch> | 2023-12-09 20:00:13 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-03-08 14:22:50 +0000 |
commit | e1aa301c395afe399898d84c13297c4c2557ed52 (patch) | |
tree | 80f923ef6414ebb4c2ac16a9fb0c89dcaa6cfbe9 /deps | |
parent | 790c57e165648bcf11d01960d0f8e50ebf1c3074 (diff) | |
download | tmwa-e1aa301c395afe399898d84c13297c4c2557ed52.tar.gz tmwa-e1aa301c395afe399898d84c13297c4c2557ed52.tar.bz2 tmwa-e1aa301c395afe399898d84c13297c4c2557ed52.tar.xz tmwa-e1aa301c395afe399898d84c13297c4c2557ed52.zip |
Correct issue with GTEST_DIR not being passed properly.
Note how gcc uses /usr/include/gtest (default search path) as the -I for GTEST_DIR is not on the gcc command line:
System-wide gtest is 1.14 and requires C++14 while provided one is 1.8.1.
GTEST_DIR="$PWD/deps/googletest/googletest" ./configure --user
make[1]: Leaving directory '/data/users/tmwa/proj/tmw/classic/tmwa'
find: ‘doc-gen/’: No such file or directory
g++ -std=c++0x -I . -I ./include -DGENERATING_DEPENDENCIES -O2 -g
-fstack-protector -fno-strict-aliasing -fvisibility=hidden
-fvisibility=hidden -MG -MM \
-MT 'ast/item_test := ' \
-MF obj/ast/item_test.d src/ast/item_test.cpp
In file included from /usr/include/gtest/gtest-message.h:57,
from /usr/include/gtest/gtest-assertion-result.h:46,
from /usr/include/gtest/gtest.h:64,
from src/ast/item_test.cpp:21:
/usr/include/gtest/internal/gtest-port.h:270:2: error: #error C++
versions less than C++14 are not supported.
270 | #error C++ versions less than C++14 are not supported.
| ^~~~~
Makefile:331: obj/ast/item_test.d: No such file or directory
Diffstat (limited to 'deps')
0 files changed, 0 insertions, 0 deletions