Linux – make menuconfig error while trying to build kernel

kernellinuxlinux-kernel

I want to learn Linux Kernel and I've downloaded the latest kernel version. Now I want to configure Linux with make menuconfig and I'm receiving an error:

Arch/x86/Makefile:184 Compiler lacks asm-goto support…

Can somebody help me?

Best Answer

Your trouble is relative to this patch [x86: Force asm-goto].

You need to install a gcc version >= 4.5

Related Question