ubuntu 20.04编译时报cc1: error: ‘-fcf-protection’ is not compatible with this target错误,
原因: 由于ubuntu将-fcf-protection该选项配置为全局开启,因此会出现该错误,下面是linux 官方给出的原因:
The new Ubuntu gcc packages turn on -fcf-protection globally, which causes a build failure in the x86 realmode code:
这是linux kernel修复该补丁邮件原文:cc1: error补丁来往邮件
解决方法: 在gcc 编译时添加选项 -fcf-protection=none 即可;如
gcc -fcf-protection=none hello.c