Lines Matching refs:call
34 as-option = $(call try-run,\
40 as-instr = $(call try-run,\
45 __cc-option = $(call try-run,\
51 cc-option = $(call __cc-option, $(CC),\
56 cc-option-yn = $(if $(call cc-option,$1),y,n)
60 cc-disable-warning = $(call cc-option,-Wno-$(strip $1))
64 gcc-min-version = $(call test-ge, $(CONFIG_GCC_VERSION), $1)
68 clang-min-version = $(call test-ge, $(CONFIG_CLANG_VERSION), $1)
72 rustc-min-version = $(call test-ge, $(CONFIG_RUSTC_VERSION), $1)
76 ld-option = $(call try-run, $(LD) $(KBUILD_LDFLAGS) $(1) -v,$(1),$(2),$(3))
81 __rustc-option = $(call try-run,\
88 rustc-option = $(call __rustc-option, $(RUSTC),\
93 rustc-option-yn = $(if $(call rustc-option,$1),y,n)