1
我想在編譯時爲內核模塊傳遞一個名爲DEBUG的「定義變量」。Makefile在編譯時傳遞define?
即提供與DEBUG相同的功能,但是在內核模塊的Makefile中。
gcc -o foo -DDEBUG=1 foo.c
任何人都可以給我一個關於如何實現這一點的提示嗎?
的Makefile文件:
# name of the module to be built
TARGET ?= test_module
# How to pass this during compile time? (-D$(DEBUG) or something similar)
DEBUG ?= 1
#define sources
SRCS := src/hello.c
#extract required object files
OBJ_SRCS := $(SRCS:.c=.o)
#define path to include directory containing header files
INCLUDE_DIRS = -I$(src)/includes
ccflags-y := $(INCLUDE_DIRS)
#define the name of the module and the source files
obj-m += $(TARGET).o
$(TARGET)-y := $(OBJ_SRCS)
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
@echo "insert module:\n\t sudo insmod $(TARGET).ko"
@echo "remove module:\n\t sudo rmmod $(TARGET)"
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
我使用從link模塊(在init函數一個小的變化,看到在#if #ENDIF語句)
的hello.c:
#include <linux/module.h> // included for all kernel modules
#include <linux/kernel.h> // included for KERN_INFO
#include <linux/init.h> // included for __init and __exit macros
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Lakshmanan");
MODULE_DESCRIPTION("A Simple Hello World module");
static int __init hello_init(void)
{
#if (DEBUG == 1)
printk(KERN_INFO "DEBUG = 1\n")
#endif
printk(KERN_INFO "Hello world!\n");
return 0; // Non-zero return means that the module couldn't be loaded.
}
static void __exit hello_cleanup(void)
{
printk(KERN_INFO "Cleaning up module.\n");
}
module_init(hello_init);
module_exit(hello_cleanup);
我想看看dmesg在
須藤用insmod test_module.ko
DEBUG = 1
Hello world!
解決方案:
ccflags-y := -DDEBUG=$(DEBUG)
製造下面的代碼執行如預期
#if (DEBUG == 1)
printk(KERN_INFO "DEBUG = 1\n")
#endif
'ccflags-y:= $(INCLUDE_DIRS)-DDEBUG'也許? – user657267
永遠不要在任何配方中直接寫'make'。總是使用變量'$(MAKE)'來運行子版本。 – MadScientist
順便說一句,在上面的例子中,編譯時插入的用法是非最優的。我建議看看動態調試是如何實現的(在存儲代碼和東西的一部分中)。 – 0andriy