linux设备驱动出错:gcc: error:unrecognized command line option '-fstack-protector-strong'

Ubuntu18.04.4,gcc版本为4.8.5 环境下进行Linux设备驱动出错如下:

linux设备驱动出错:gcc: error:unrecognized command line option '-fstack-protector-strong'_第1张图片
解决方案!!!
按照下述步骤进入 /usr/src/linux-headers-5.3.0-510-generic
找到Makefile并修改里面的内容,注意打开Makefile要用管理员权限打开。

step1:进入 /usr/src/linux-headers-5.3.0-510-generic

linux设备驱动出错:gcc: error:unrecognized command line option '-fstack-protector-strong'_第2张图片

step2:把框框内的语句用 “#” 注释掉

linux设备驱动出错:gcc: error:unrecognized command line option '-fstack-protector-strong'_第3张图片

step3:再测试一下make成功没,如果没成功,网上大多数都说gcc版本可能比较低。





成功的现象:

linux设备驱动出错:gcc: error:unrecognized command line option '-fstack-protector-strong'_第4张图片

你可能感兴趣的:(操作系统学习之路)