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
The problem can be traced back to "mako/wrap.cxx". With pure gcc compilation (without clang) #include involves include from "/usr/include/features.h", which conflicts with Python.h.
The problem can be traced back to "mako/wrap.cxx". With pure gcc compilation (without clang) #include involves include from "/usr/include/features.h", which conflicts with Python.h.
Also, in its current form "mako/wrap.cxx" does not follow the recommendation for TRIQS users: https://triqs.github.io/triqs/master/reference/utilities/python_include_mess.html
"#include <cpp2py.hpp>" should go first.
================= mako/wrap.cxx ==================
#include
#include
#include //for std::cout...
using dcomplex = std::complex;
// first the basic stuff
#include <cpp2py.hpp>
.......
The text was updated successfully, but these errors were encountered: