Lines Matching refs:info
44 cc-info := $(shell,$(srctree)/scripts/cc-version.sh $(CC))
45 $(error-if,$(success,test -z "$(cc-info)"),Sorry$(comma) this C compiler is not supported.)
46 cc-name := $(shell,set -- $(cc-info) && echo $1)
47 cc-version := $(shell,set -- $(cc-info) && echo $2)
50 as-info := $(shell,$(srctree)/scripts/as-version.sh $(CC) $(CLANG_FLAGS))
51 $(error-if,$(success,test -z "$(as-info)"),Sorry$(comma) this assembler is not supported.)
52 as-name := $(shell,set -- $(as-info) && echo $1)
53 as-version := $(shell,set -- $(as-info) && echo $2)
56 ld-info := $(shell,$(srctree)/scripts/ld-version.sh $(LD))
57 $(error-if,$(success,test -z "$(ld-info)"),Sorry$(comma) this linker is not supported.)
58 ld-name := $(shell,set -- $(ld-info) && echo $1)
59 ld-version := $(shell,set -- $(ld-info) && echo $2)