UG4 / ugcore

The core functionality of UG4. Includes sources, build-scripts, and utility scripts.
https://github.com/UG4/ugcore
Other
36 stars 23 forks source link

Some builds are failing on Travis constantly #43

Closed stephanmg closed 3 years ago

stephanmg commented 3 years ago

I think this has to do something with C++11 support? Looks like compiler does not support C++11 on these builds. Maybe we need to take them out of the build matrix?

/Users/travis/build/UG4/ugcore/travis_root/ug4/ugcore/ugbase/common/stopwatch.h:53:10: fatal error: 'chrono' file not found
#include <chrono>
mlampe commented 3 years ago

Should be fixed by now. The problem was that VRL builds injected -mmacosx-version-min=10.8, which seems to imply -stdlib=libstdc++.

stephanmg commented 3 years ago

Thanks!