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
eigen fails to build with gcc5. On FreeBSD 11-RELEASE, the problem can be fixed by adding -std=c++11 to the compile options or switch the compiler to system clang in lib/Makefile. It would be better not to hard code the compiler. I suggest using CXX and CXXFLAGS. Wtih clang -lstdc++ should be replaced with -lc++ in _oasis.
The text was updated successfully, but these errors were encountered:
Now that we are using dune this would be quite easy to fix: we could add a configurator step creating the right flags, or using ocaml syntax in the dune file
eigen fails to build with gcc5. On FreeBSD 11-RELEASE, the problem can be fixed by adding
-std=c++11
to the compile options or switch the compiler to system clang in lib/Makefile. It would be better not to hard code the compiler. I suggest using CXX and CXXFLAGS. Wtih clang-lstdc++
should be replaced with-lc++
in _oasis.The text was updated successfully, but these errors were encountered: