makefile 在 g++ 中显示错误,如何解决

makefile 在 g++ 中显示错误,如何解决

我正在按照本教程中的说明进行操作https://github.com/tukl-msd/DRAMPower

当我做

make -j4

我出现了一个错误信息

g++ -O -W -pedantic-errors -Wextra -Werror -Wformat -Wformat-nonliteral -Wpoint
er-arith -Wcast-align -Wconversion -Wall -Werror -g   -std=c++0x -fPIC -MMD -MF 
src/xmlparser/MemSpecParser.d -iquote src -o src/xmlparser/MemSpecParser.o -c 
src/xmlparser/MemSpecParser.cc
make: g++: Command not found
make: *** [Makefile:103: src/xmlparser/MemSpecParser.o] Error 127

我该如何解决这个问题?

答案1

看起来g++你的系统中没有安装。

使用命令

sudo apt install build-essential

安装g++gcc和一些其他开发包。

或者,如果你只想安装g++及其依赖项而不安装其他任何内容,

sudo apt install g++

相关内容