kbuild: allow cc-ifversion to have the argument for false condition
The macro "try-run" can have an argument for each of true and false cases. Having an argument for the false case of cc-ifversion (and ld-ifversion) would be useful too. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
This commit is contained in:
parent
3df8094727
commit
6dcb4e5edf
2 changed files with 5 additions and 4 deletions
|
@ -531,8 +531,9 @@ more details, with real examples.
|
||||||
than or equal to gcc 3.0.
|
than or equal to gcc 3.0.
|
||||||
|
|
||||||
cc-ifversion
|
cc-ifversion
|
||||||
cc-ifversion tests the version of $(CC) and equals last argument if
|
cc-ifversion tests the version of $(CC) and equals the fourth parameter
|
||||||
version expression is true.
|
if version expression is true, or the fifth (if given) if the version
|
||||||
|
expression is false.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
#fs/reiserfs/Makefile
|
#fs/reiserfs/Makefile
|
||||||
|
|
|
@ -137,7 +137,7 @@ cc-fullversion = $(shell $(CONFIG_SHELL) \
|
||||||
|
|
||||||
# cc-ifversion
|
# cc-ifversion
|
||||||
# Usage: EXTRA_CFLAGS += $(call cc-ifversion, -lt, 0402, -O1)
|
# Usage: EXTRA_CFLAGS += $(call cc-ifversion, -lt, 0402, -O1)
|
||||||
cc-ifversion = $(shell [ $(cc-version) $(1) $(2) ] && echo $(3))
|
cc-ifversion = $(shell [ $(cc-version) $(1) $(2) ] && echo $(3) || echo $(4))
|
||||||
|
|
||||||
# cc-ldoption
|
# cc-ldoption
|
||||||
# Usage: ldflags += $(call cc-ldoption, -Wl$(comma)--hash-style=both)
|
# Usage: ldflags += $(call cc-ldoption, -Wl$(comma)--hash-style=both)
|
||||||
|
@ -160,7 +160,7 @@ ld-version = $(shell $(LD) --version | $(srctree)/scripts/ld-version.sh)
|
||||||
|
|
||||||
# ld-ifversion
|
# ld-ifversion
|
||||||
# Usage: $(call ld-ifversion, -ge, 22252, y)
|
# Usage: $(call ld-ifversion, -ge, 22252, y)
|
||||||
ld-ifversion = $(shell [ $(ld-version) $(1) $(2) ] && echo $(3))
|
ld-ifversion = $(shell [ $(ld-version) $(1) $(2) ] && echo $(3) || echo $(4))
|
||||||
|
|
||||||
######
|
######
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue