Question

Is there a version of xlC/VACPP available for AIX 4.3, which does not choke when given following source:

#include <map>

int main(void)
{
  return 0;
}

If yes, is it still available anywhere?

Was it helpful?

Solution

You might want to try using STLport as a replacement for the STL shipped with the compiler.

OTHER TIPS

It's not the compiler, per se, but the fact that the compiler shipped with an old version of the STL. You should be able to install Apache's STL to fix this.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top