ubuntu操作系统入门

ubuntu操作入门


在ubuntu上用几种不同的方式编译执行hello.c文件

准备阶段:使用vim编写cpp文件

首先,利用终端创建文件夹,并按照下面的方式创建 hello.cpp 文件

pmj@pmj-RESCUER-R720-15IKBN:~$ mkdir 入门
pmj@pmj-RESCUER-R720-15IKBN:~$ cd ./入门
pmj@pmj-RESCUER-R720-15IKBN:~/入门$ vim hello.cpp
/*hello.cpp*/

#include
using namespace std;

int main(){

        cout<<"hello world!"<

这样hello world程序创建好了,接下来就要用几种不同的方式编译运行。

 

一、vim + gcc/g++


使用gcc对cpp文件进行编译

pmj@pmj-RESCUER-R720-15IKBN:~/入门$ gcc hello.cpp -o hello

报错

/tmp/ccMBAxRC.o:在函数‘main’中:
hello.cpp:(.text+0xa):对‘std::cout’未定义的引用
hello.cpp:(.text+0xf):对‘std::basic_ostream >& std::operator<<  >(std::basic_ostream >&, char const*)’未定义的引用
hello.cpp:(.text+0x14):对‘std::basic_ostream >& std::endl >(std::basic_ostream >&)’未定义的引用
hello.cpp:(.text+0x1c):对‘std::ostream::operator<<(std::ostream& (*)(std::ostream&))’未定义的引用
/tmp/ccMBAxRC.o:在函数‘__static_initialization_and_destruction_0(int, int)’中:
hello.cpp:(.text+0x4a):对‘std::ios_base::Init::Init()’未定义的引用
hello.cpp:(.text+0x59):对‘std::ios_base::Init::~Init()’未定义的引用
collect2: error: ld returned 1 exit status

出现一大串 对‘std::xxx’未定义的引用 的原因:

链接时g++默认链接c++库,gcc没有。因此改用g++

pmj@pmj-RESCUER-R720-15IKBN:~/入门$ g++ hello.cpp -o hello
pmj@pmj-RESCUER-R720-15IKBN:~/入门$ ls
hello  hello.cpp

编译器会生成一个名为 hello 的可执行文件,执行得到结果

pmj@pmj-RESCUER-R720-15IKBN:~/入门$ ./hello
hello world!

 

 

二、vim+cmake


1、安装cmake

执行下面的命令即可

$ sudo apt-get install cmake

 

2、生成必要文件

创建  CMakeLists.txt  文件,内容如下

PROJECT(test)
ADD_EXECUTABLE(helloTest ./hello.cpp)

test 为创建的工程名,第二行的作用是将 hello.cpp 编译成名为 helloTest 的可执行文件并运行

 

3、创建目录

mkdir 命令在此目录下创建一个 build 文件夹

执行如下命令

 cd ./build
 cmake ../

由此 build 目录下产生了许多文件,如下:

ubuntu操作系统入门_第1张图片

其中生成了一个Makefile文件,执行它

pmj@pmj-RESCUER-R720-15IKBN:~/入门/build$ make
Scanning dependencies of target helloTest
[ 50%] Building CXX object CMakeFiles/helloTest.dir/hello.cpp.o
[100%] Linking CXX executable helloTest
[100%] Built target helloTest

使用ls查看当前目录下的文件,成功生成来可执行文件 helloTest . 运行一下就大功告成啦!

pmj@pmj-RESCUER-R720-15IKBN:~/入门/build$ ls
CMakeCache.txt  CMakeFiles  cmake_install.cmake  helloTest  Makefile
pmj@pmj-RESCUER-R720-15IKBN:~/入门/build$ ./helloTest
hello world!

 

 

三、vscode的安装和使用


1、安装

在官网下载安装包,选择deb文件下载,并双击运行。

ubuntu操作系统入门_第2张图片

(下载地址:https://code.visualstudio.com/Download )

 

2、配置C/C++环境

安装C/C++包,点击左列第五个图标并搜索C++,安装如图所示的包

ubuntu操作系统入门_第3张图片

 

3、执行程序

依次点击 File/Open Folder ,选择之前的 入门  文件夹,可以打开 hello.cpp 文件

直接编译的话报错,好像要配置 launch.josn 、tasks.josn 等文件,但我还没搞清楚这两个文件是什么东西。。。

于是下载了一个叫做 Code Runner 的包,

有了这个包之后,右上角会出现一个三角按钮,按一下就可以直接运行。

ubuntu操作系统入门_第4张图片

ubuntu操作系统入门_第5张图片

 


参考资料:https://code.visualstudio.com/docs/languages/cpp

                  https://blog.csdn.net/flydreamforever/article/details/65454018

 

你可能感兴趣的:(ubuntu操作系统入门)