X-DataInitiative / tick

Module for statistical learning, with a particular emphasis on time-dependent modelling
https://x-datainitiative.github.io/tick/
BSD 3-Clause "New" or "Revised" License
480 stars 105 forks source link

Cpptest build fails #498

Open claudio-ICL opened 1 year ago

claudio-ICL commented 1 year ago

Hi @PhilipDeegan

I am trying to run the cpptest locally. I do python setup.py build_ext --inplace cpptest, but it seems that the test cannot be built. Attached is the printout. cpptest_error.txt

Could you please help me with the cpp tests? How is one supposed to run them locally?

PhilipDeegan commented 1 year ago

I think gtest is no longer just C++11

for the moment, you can try changing this to either

'-std=c++14',

or

'-std=c++17',

claudio-ICL commented 1 year ago

Hi @PhilipDeegan

I tried with c++14 and with c++17 but I get the same error as above. Any other suggestions?