#include
是否有适用于 AIX 4.3 的 xlC/VACPP 版本,当给出以下来源时该版本不会阻塞:
#include <map>
int main(void)
{
return 0;
}
如果是,它在任何地方仍然可用吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想尝试使用 STLport 作为编译器附带的 STL 的替代品。
You might want to try using STLport as a replacement for the STL shipped with the compiler.
这不是编译器本身的问题,而是编译器附带旧版本 STL 的事实。 您应该能够安装 Apache 的 STL 来解决此问题。
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.