1 # Kconfig helper macros
8 space := $(empty) $(empty)
13 # $(if-success,<command>,<then>,<else>)
14 # Return <then> if <command> exits with 0, <else> otherwise.
15 if-success = $(shell,{ $(1); } >/dev/null 2>&1 && echo "$(2)" || echo "$(3)")
17 # $(success,<command>)
18 # Return y if <command> exits with 0, n otherwise
19 success = $(if-success,$(1),y,n)
22 # Return y if the compiler supports <flag>, n otherwise
23 cc-option = $(success,$(CC) -Werror $(1) -E -x c /dev/null -o /dev/null)
26 # Return y if the linker supports <flag>, n otherwise
27 ld-option = $(success,$(LD) -v $(1))
29 # gcc version including patch level
30 gcc-version := $(shell,$(srctree)/scripts/gcc-version.sh -p $(CC) | sed 's/^0*//')