cnblogs/dcrenl/centos 8 编译_.cpp文件.md

12 lines
172 B
Markdown
Raw Permalink Normal View History

2024-09-24 12:43:01 +08:00
###### 1、安装g++
`yum -y install gcc-c++`
###### 2、编译*.cpp文件
`g++ -o test_app_name test_source_file.cpp`
###### 3、运行编译结果
`./test_app_name`