mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
init/Kconfig: add CONFIG_CC_CAN_LINK
Currently, scripts/cc-can-link.sh is run just for BPFILTER_UMH, but defining CC_CAN_LINK will be useful in other places. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
33177f01ca
commit
1a927fd347
@ -24,6 +24,9 @@ config CLANG_VERSION
|
|||||||
int
|
int
|
||||||
default $(shell,$(srctree)/scripts/clang-version.sh $(CC))
|
default $(shell,$(srctree)/scripts/clang-version.sh $(CC))
|
||||||
|
|
||||||
|
config CC_CAN_LINK
|
||||||
|
def_bool $(success,$(srctree)/scripts/cc-can-link.sh $(CC))
|
||||||
|
|
||||||
config CC_HAS_ASM_GOTO
|
config CC_HAS_ASM_GOTO
|
||||||
def_bool $(success,$(srctree)/scripts/gcc-goto.sh $(CC))
|
def_bool $(success,$(srctree)/scripts/gcc-goto.sh $(CC))
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ menuconfig BPFILTER
|
|||||||
if BPFILTER
|
if BPFILTER
|
||||||
config BPFILTER_UMH
|
config BPFILTER_UMH
|
||||||
tristate "bpfilter kernel module with user mode helper"
|
tristate "bpfilter kernel module with user mode helper"
|
||||||
depends on $(success,$(srctree)/scripts/cc-can-link.sh $(CC))
|
depends on CC_CAN_LINK
|
||||||
default m
|
default m
|
||||||
help
|
help
|
||||||
This builds bpfilter kernel module with embedded user mode helper
|
This builds bpfilter kernel module with embedded user mode helper
|
||||||
|
Loading…
Reference in New Issue
Block a user