tags:

views:

167

answers:

2

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?

A: 

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.

Max Lybbert
A: 

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

Timo Geusch