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

猜你喜欢

转载自blog.csdn.net/Lyon_Nee/article/details/115234949