Merge pull request #938 from robertbaldyga/fix-configure

Fix API incompatibility detection in configure script
This commit is contained in:
Robert Baldyga 2021-08-25 15:36:05 +02:00 committed by GitHub
commit 471e9829c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,14 @@ obj-m += test_mod.o
MAKE_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
check_cflag=$(shell echo "" | \
gcc -c -xc ${1} -o /dev/null - 2>/dev/null; \
if [ $$? -eq 0 ]; then echo 1; else echo 0; fi; )
ifeq ($(call check_cflag,-Werror=int-conversion), 1)
EXTRA_CFLAGS += -Werror=int-conversion
endif
all:
make -C $(KERNEL_DIR) M=$(MAKE_DIR) modules
clean: