Skip to content

Commit f388d81

Browse files
committed
scripts: Kconfig.include: mention it is the C compiler
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
1 parent 9efd368 commit f388d81

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/Kconfig.include

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ ld-option = $(success,$(LD) -v $(1))
3636
as-instr = $(success,printf "%b\n" "$(1)" | $(CC) $(CLANG_FLAGS) -c -x assembler -o /dev/null -)
3737

3838
# check if $(CC) and $(LD) exist
39-
$(error-if,$(failure,command -v $(CC)),compiler '$(CC)' not found)
39+
$(error-if,$(failure,command -v $(CC)),C compiler '$(CC)' not found)
4040
$(error-if,$(failure,command -v $(LD)),linker '$(LD)' not found)
4141

42-
# Get the compiler name, version, and error out if it is not supported.
42+
# Get the C compiler name, version, and error out if it is not supported.
4343
cc-info := $(shell,$(srctree)/scripts/cc-version.sh $(CC))
44-
$(error-if,$(success,test -z "$(cc-info)"),Sorry$(comma) this compiler is not supported.)
44+
$(error-if,$(success,test -z "$(cc-info)"),Sorry$(comma) this C compiler is not supported.)
4545
cc-name := $(shell,set -- $(cc-info) && echo $1)
4646
cc-version := $(shell,set -- $(cc-info) && echo $2)
4747

0 commit comments

Comments
 (0)