centos下安装gcc编译器

安装 编程技术
发布日期 2023-06-04 更新日期 2023-06-04 阅读次数 63 文章字数 277

GCC是一个开源的, 跨平台的编译器

在linux下的安装是最简单的, 只需要简单的命令即可

centos安装gcc

安装 C 环境

yum install gcc

安装 C++ 环境

yum install gcc-c++ libstdc++-devel

编写SayHello程序测试

创建文件,并编辑

vi sayhello.c

写入如下内容

#include <stdio.h>
int main(){
	printf("Hello World!");
	return 0;
}

进行代码编译,得到输出文件,并命名为 sayhello.out

gcc sayhello.c -o sayhello.out

执行此文件,得到结果

./sayhello.out

文章作者: 朱丰华

文章链接: https://smart.52dixiaowo.com/blog/post-418.html

版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。

安装

发表评论

相关推荐
朱丰华   |   1年前   |   linux · upx

Linux下安装UPX

406    评论    点赞
朱丰华   |   1年前   |   请求 · 一个

ab测压命令,apache测压工具

172    评论    点赞
朱丰华   |   1年前   |   php · 缓存 · opcache

php 加速、提高并发opcache

198    评论    点赞
朱丰华   |   1年前   |   go · gopath

Go自定义包并安装(GOPATH)

117    评论    点赞
朱丰华   |   1年前   |   php

windows下编写、编译php扩展

158    评论    点赞
朱丰华   |   1年前   |   html

npm clean-mark,抓取网页文章内容,转换成markdown、html、txt

192    评论    点赞
朱丰华   |   1年前   |   centos

centos安装golang

93    评论    点赞
朱丰华   |   1年前   |   html · npm · audit

npm报错、原因:run `npm audit fix` to fix them, or `npm audit` for details html

67    评论    点赞
朱丰华   |   1年前   |   javascript · js · obfuscator · 混淆

javascript-obfuscator混淆js文件

52    评论    点赞
朱丰华   |   1年前   |   js · vue · npm · 安装

npm快速上手

99    评论    点赞
朱丰华   |   1年前   |   nvm · git · 安装

entos7安装、使用nvm

75    评论    点赞
朱丰华   |   1年前   |   python · 安装

python安装、重新安装pip

97    评论    点赞
朱丰华   |   1年前   |   python · linux · www

linux给www用户【非root】安装python3

186    评论    点赞
朱丰华   |   1年前   |   python

python pip离线安装某个包

131    评论    点赞
朱丰华   |   1年前   |   docker · 安装 · linux

centos安装docker

105    评论    点赞
朱丰华   |   1年前   |   php · 编译

ubuntu、centos系统从源码编译指定版本php--超详细

159    评论    点赞
朱丰华   |   1年前   |   php · git · 编译

从源码编译php

135    评论    点赞
朱丰华   |   1年前   |   linux · sql · sqlite · package · sqlite3

linux安装环境ERROR: PACKAGE REQUIREMENTS (SQLITE3 > 3.7.4) WERE NOT MET: NO PACKAGE ‘SQLITE3’

265    评论    点赞
朱丰华   |   1年前   |   安装 · clion

windows下安装clion

91    评论    点赞
朱丰华   |   1年前   |   gcc · 安装 · git

windows下安装gcc

97    评论    点赞
{{item.author_name}}   |   {{new Date(item.date*1000).log()}}   |   {{it}} ·

{{item.title}}

{{item.uv}}    评论    点赞