在 Centos 6.10 上从源构建 Yate 时,配置阶段出现错误

问题描述 投票:0回答:1

建设计划是:

./autogen.sh 
./configure
make
sudo make install-noapi

为了使

./autogen.sh
工作,我已经安装了

yum install autoconf

./configure
阶段我收到此错误:

sudo ./configure
checking for local operating system type... Linux
checking for libraries directory name... lib64
checking for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl.exe... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking for C++ compiler default output file name...
configure: error: in `/root/yate':
configure: error: C++ compiler cannot create executables
autoconf yate
1个回答
0
投票

系统缺少开发工具,我必须安装它们来修复:

sudo yum groupinstall "Development Tools" -y
© www.soinside.com 2019 - 2024. All rights reserved.