Lines Matching refs:CC
73 # Return first prefix where a prefix$(CC) is found in PATH.
74 # If no $(CC) found in PATH with listed prefixes return nothing
78 if (which $(strip $(c))$(CC)) > /dev/null 2>&1 ; then \
86 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
102 $(CC) $(KBUILD_CFLAGS) $(1) -c -x assembler /dev/null -o "$$TMP",$(1),$(2))
108 printf "%b\n" "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -x assembler -o "$$TMP" -,$(2),$(3))
114 $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",$(1),$(2))
119 $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",y,n)
129 …$(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) -W$(strip $(1)) -c -x c /dev/null -o "$$TMP",-Wno-$(stri…
132 cc-version = $(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-version.sh $(CC))
136 $(srctree)/scripts/gcc-version.sh -p $(CC))
145 $(CC) $(1) -nostdlib -x c /dev/null -o "$$TMP",$(1),$(2))
150 $(CC) -x c /dev/null -c -o "$$TMPO" ; $(LD) $(1) "$$TMPO" -o "$$TMP",$(1),$(2))