QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 809|回复: 0

问个arm toolchain的问题

[复制链接]
发表于 2005-9-8 16:42:11 | 显示全部楼层 |阅读模式
用的是uclinux.org上toolchain,2.95.3版本,它对C++的支持是不是很有限
arm-elf-g++编译
#include <iostream>
using namespace std;
int main()
{
cout<<"hello"<<endl;
return 0;
}
提示没有iostream
STL就不用提了
但可以编译
#include <stdio.h>

class A{
public:
        A(){printf("hello,A class\n");}
        ~A(){printf("~A\n");}
};
int main()
{
A a;
return 0;
}
toolchain里面有libstdc++.a 但没看到有关的头文件
为什么?有点糊涂了
您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-3 04:11 , Processed in 0.045596 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表