2022年03月08日 14:47:00
⁄ Linux 
⁄ 共 636字
⁄ 被围观 2,531次
Linux 系统中,有时候在编译安装软件时,会提示:/bin/sh: cc: command not found,说明没有编译代码的 gcc 环境,一般咱会先安装 gcc,命令如下:
yum -y install gcc gcc-c++
安装后 gcc 后,继续编译安装原软件,则报错如下:
In file included from adlist.c:34:0:zmalloc.h:50:31: fatal error: jemalloc/jemalloc.h: No such file or directory #include <jemalloc/jemalloc.h> ...
Error, gcc, jemalloc, Linux, 编译阅读全文