Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Masahiro Yamada | e1cfdc0 | 2018-05-28 18:21:59 +0900 | [diff] [blame] | 2 | # Kconfig helper macros |
| 3 | |
| 4 | # Convenient variables |
| 5 | comma := , |
| 6 | quote := " |
| 7 | squote := ' |
| 8 | empty := |
| 9 | space := $(empty) $(empty) |
| 10 | dollar := $ |
| 11 | right_paren := ) |
| 12 | left_paren := ( |
| 13 | |
| 14 | # $(if-success,<command>,<then>,<else>) |
| 15 | # Return <then> if <command> exits with 0, <else> otherwise. |
| 16 | if-success = $(shell,{ $(1); } >/dev/null 2>&1 && echo "$(2)" || echo "$(3)") |
| 17 | |
| 18 | # $(success,<command>) |
| 19 | # Return y if <command> exits with 0, n otherwise |
| 20 | success = $(if-success,$(1),y,n) |
| 21 | |
Masahiro Yamada | 902a689 | 2019-05-09 16:35:55 +0900 | [diff] [blame] | 22 | # $(failure,<command>) |
| 23 | # Return n if <command> exits with 0, y otherwise |
| 24 | failure = $(if-success,$(1),n,y) |
| 25 | |
Masahiro Yamada | e1cfdc0 | 2018-05-28 18:21:59 +0900 | [diff] [blame] | 26 | # $(cc-option,<flag>) |
| 27 | # Return y if the compiler supports <flag>, n otherwise |
| 28 | cc-option = $(success,$(CC) -Werror $(1) -E -x c /dev/null -o /dev/null) |
| 29 | |
| 30 | # $(ld-option,<flag>) |
| 31 | # Return y if the linker supports <flag>, n otherwise |
| 32 | ld-option = $(success,$(LD) -v $(1)) |
Masahiro Yamada | 59f5385 | 2018-05-28 18:22:06 +0900 | [diff] [blame] | 33 | |
Masahiro Yamada | 902a689 | 2019-05-09 16:35:55 +0900 | [diff] [blame] | 34 | # check if $(CC) and $(LD) exist |
| 35 | $(error-if,$(failure,command -v $(CC)),compiler '$(CC)' not found) |
| 36 | $(error-if,$(failure,command -v $(LD)),linker '$(LD)' not found) |
| 37 | |
Masahiro Yamada | 59f5385 | 2018-05-28 18:22:06 +0900 | [diff] [blame] | 38 | # gcc version including patch level |
Masahiro Yamada | fa7295a | 2019-03-01 16:10:22 +0900 | [diff] [blame] | 39 | gcc-version := $(shell,$(srctree)/scripts/gcc-version.sh $(CC)) |