filename: testc.cpp
- 代碼: 選擇全部
#include <iostream>
using namespace std;
int main()
{ cout << "Hello C++ " << endl;
return 0;
}
[root@localhost md5]# g++ -o testc testc.cpp
↑ g++編譯成功 可以執行!!
[root@localhost md5]# arm-linux-g++ -o testc testc.cpp
testc.cpp:1: iostream: ?????????
↑ arm-linux-g++編譯失敗!!
我的toolchain版本是 gcc-2.95.3
請問 這到底是什麼問題???
可以請幫忙在各位的環境下測試看看嗎????