11 lines
307 B
Markdown
11 lines
307 B
Markdown
---
|
||
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
|
||
``` |