1、确保系统安装了gcc、g++、make、libstdc++,没有则通过apt-get install gcc/g++...来安装,不过发现libstdc++在apt-get install gcc也会安装上了。
2、测试代码hello.cpp:
3、 gcc hello.cpp -o hello
/tmp/ccTZsfGk.o: In function `main':
hello.cpp:(.text+0x1c): undefined reference to `std::cout'
...........
再看一下man gcc,原来要用g++编译C++程序。
4、g++ hello.cpp -o hello
编译通过,生成hello,运行:./hellow
显示结果:
Hello world!
2、测试代码hello.cpp:
3、 gcc hello.cpp -o hello
/tmp/ccTZsfGk.o: In function `main':
hello.cpp:(.text+0x1c): undefined reference to `std::cout'
...........
再看一下man gcc,原来要用g++编译C++程序。
4、g++ hello.cpp -o hello
编译通过,生成hello,运行:./hellow
显示结果:
Hello world!