awusb.ko
我尝试在我的 Linux Mint 上编译make
make -v
GNU Make 3.81
Copyright (C) 2006 Free Software Foundation, Inc.
Dies ist Freie Software; siehe die Programmquellen für Vervielfältigungsbedingungen.
这makefile
:
obj-m := awusb.o
KDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default:
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
clean:
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) clean
rm -rf Module.markers module.order module.sysvers
make
停止于:
makemake -C /lib/modules/3.19.0-32-generic/build SUBDIRS=/home/ger/progentp/Flash droid/sunxi-livesuite-master/awusb modules
make[1]: Verzeichnis »/usr/src/linux-headers-3.19.0-32-generic« wird betreten
Makefile:669: Cannot use CONFIG_CC_STACKPROTECTOR_REGULAR: -fstack-protector not supported by compiler
make[1]: *** Keine Regel, um »droid/sunxi-livesuite-master/awusb« zu erstellen. Schluss.
make[1]: Verzeichnis »/usr/src/linux-headers-3.19.0-32-generic« wird verlassen
make: *** [default] Fehler 2
在我看来,obj-m := awusb.o
构建awusb.ko
模块有一个规则。有什么帮助吗?
答案1
您的问题是/home/ger/progentp/Flash droid/
删除文件夹名称中的空格,或将 git 克隆移动到另一个没有空格的位置。