I'm trying to build a project using bazel and a C++ STLport library. When I build the program, I get multiple errors such as:
libs/std/type_traits:286:1: error: template with C linkage
template <class _Tp>
^
I've looked at other questions that all mention i need to remove the include from an extern "C" {} but there are no extern "C" statements in the code. Any idea?