如何配置Debian的C++开发环境?
- By : Will
- Category : Debian-Like
Debian-Like
1 前言
一个问题,一篇文章,一出故事。
笔者最近听C++课程,需要使用Debian系统的笔记本编写C++的代码,于是整理如下。
2 最佳实践
2.1 配置C++开发环境
apt install -y build-essential
2.2 测试C++开发环境
vim helloworld.cpp
加入如下测试配置,
/* helloworld.cpp */ #include <iostream> using namespace std; int main(int argc,char *argv[]) { cout << "hello, world" << endl; return(0); }
尝试执行编译文件
g++ helloworld.cpp -o helloworld
测试执行文件
./helloworld
课件如下输出
hello, world
参阅文档
=================
http://blog.chinaunix.net/uid-20592805-id-1918653.html
https://blog.csdn.net/weixin_40438421/article/details/118857180
没有评论