Ubuntu Golang项目编译报错 cgo: exec gcc: exec: “gcc“: executable file not found in $PATH

Ubuntu Golang项目编译报错 cgo: exec gcc: exec: "gcc": executable file not found in $PATH

 

这个问题原因是项目内有引用c的库.

golang在使用cgo调用c的库. 所以是cgo报的错.

解决方法:

安装gcc就行

sudo apt install gcc

 

你可能感兴趣的:(Linux的应用与维护,Golang开发,gcc,golang,ubuntu,cgo,linux)