blog/_posts/编程/C++/env-setup.md
2022-10-18 13:38:11 +08:00

11 lines
307 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Ubuntu下CLion的C/C++环境搭建
date: 2022-10-16
tags: C++
---
使用Clion作为C++开发需要安装C++ g++ make 等编译工具链ubuntu提供了一个`build-essential`工具直接帮我们把c/c++对应的编译工具链依赖安装好
```sh
sudo apt-get install build-essential
```