2017-05-28 2200 views
-1

我在Linux Ubuntu 14.04上。我想启动Linux Kernel Module Programming。我有hello.c(简单的Hello World模块)和Makefile。但是,在“make”命令中,我会遇到错误。我试过Cannot use CONFIG_CC_STACKPROTECTOR_STRONG: -fstack-protector-strong not supported by compiler,但它不适合我。Linux内核模块编程 - 无法使用CONFIG_CC_STACKPROTECTOR_REGULAR:编译器不支持-fstack-protector

的hello.c

/* hello.c − Illustrating the __init, __initdata and __exit macros. */ 

#include <linux/module.h> 
/* Needed by all modules */ 
#include <linux/kernel.h> 
/* Needed for KERN_INFO */ 
#include <linux/init.h> 
/* Needed for the macros */ 

static int hello3_data __initdata = 3; 

static int __init hello_3_init(void) 
{ 
    printk(KERN_INFO "Hello, world %d\n", hello3_data); 
    return 0; 
} 

static void __exit hello_3_exit(void) 
{ 
    printk(KERN_INFO "Goodbye, world 3\n"); 
} 

module_init(hello_3_init); 
module_exit(hello_3_exit); 

的Makefile

obj-m += hello.o 
all: 
    make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules 

clean: 
    make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean 

在 “做”: -

[email protected]:~/Kernel programs$ make 
make -C /lib/modules/4.2.0-27-generic/build M=/home/k/Kernel programs modules 
make[1]: Entering directory `/usr/src/linux-headers-4.2.0-27-generic' 
arch/x86/Makefile:138: CONFIG_X86_X32 enabled but no binutils support 
Makefile:662: Cannot use CONFIG_CC_STACKPROTECTOR_REGULAR: -fstack-protector not supported by compiler 
make[1]: *** No rule to make target `programs'. Stop. 
make[1]: Leaving directory `/usr/src/linux-headers-4.2.0-27-generic' 
make: *** [all] Error 2 

目前,我的Ubuntu有4.2内核。我甚至在3.x内核上试过这个,但是也有这个错误。

请帮我这个。谢谢。 :)

+0

'我试过......但它对我没有用处。“ - 因此,正如所引用问题的答案中所示,您已更新'binutils'并安装了'gcc'的唯一实例,并且'g ++'编译器,对吧? – Tsyvarev

+0

是的,我做了所有这一切 –

回答

0

您的文件在这里可以正常工作。随着你的Makefile,并与缺省的Makefile:

obj-m := hello.o 

KDIR := /lib/modules/$(shell uname -r)/build 
PWD  := $(shell pwd) 

default: 
    $(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules 

clean: 
    $(MAKE) -C $(KDIR) M=$(PWD) clean 

的文件hello.ko, hello.mod.c, hello.mod.o, hello.o, modules.order, Module.symvers创建。可能会安装这个:sudo apt install g++ binutils-dev

+0

谢谢,但它没有工作 –