Searched refs:cc (Results 1 – 11 of 11) sorted by relevance
/scripts/ |
D | Makefile.kcsan | 5 cc-param = -mllvm -$(1) 7 cc-param = --param $(1) 13 $(call cc-option,$(call cc-param,tsan-instrument-func-entry-exit=0) -fno-optimize-sibling-calls) \ 14 …$(call cc-option,$(call cc-param,tsan-compound-read-before-write=1),$(call cc-option,$(call cc-par… 15 $(call cc-param,tsan-distinguish-volatile=1)
|
D | Makefile.kasan | 5 cc-param = $(call cc-option, -mllvm -$(1), $(call cc-option, --param $(1))) 24 CFLAGS_KASAN_SHADOW := $(call cc-option, -fsanitize=kernel-address \ 26 $(call cc-option, -fsanitize=kernel-address \ 34 $(call cc-param,asan-globals=1) \ 35 $(call cc-param,asan-instrumentation-with-call-threshold=$(call_threshold)) \ 36 $(call cc-param,asan-stack=$(stack_enable)) \ 37 $(call cc-param,asan-instrument-allocas=1) 45 instrumentation_flags := $(call cc-param,hwasan-mapping-offset=$(KASAN_SHADOW_OFFSET)) 47 instrumentation_flags := $(call cc-param,hwasan-instrument-with-calls=1) 51 $(call cc-param,hwasan-instrument-stack=$(stack_enable)) \ [all …]
|
D | Makefile.extrawarn | 9 KBUILD_CFLAGS += $(call cc-disable-warning, packed-not-aligned) 31 KBUILD_CFLAGS += $(call cc-option, -Wunused-but-set-variable) 32 KBUILD_CFLAGS += $(call cc-option, -Wunused-const-variable) 33 KBUILD_CFLAGS += $(call cc-option, -Wpacked-not-aligned) 34 KBUILD_CFLAGS += $(call cc-option, -Wstringop-truncation) 52 KBUILD_CFLAGS += $(call cc-disable-warning, pointer-to-enum-cast) 54 KBUILD_CFLAGS += $(call cc-disable-warning, unaligned-access) 55 KBUILD_CFLAGS += $(call cc-disable-warning, cast-function-type-strict) 68 KBUILD_CFLAGS += $(call cc-option, -Wlogical-op) 71 KBUILD_CFLAGS += $(call cc-option, -Wmaybe-uninitialized) [all …]
|
D | recordmcount.pl | 123 my ($arch, $endian, $bits, $objdump, $objcopy, $cc, 153 $cc = 'gcc' if (!$cc); 241 $cc .= " -m64"; 251 $cc .= " -m32"; 254 if ($cc =~ /-DCC_USING_HOTPATCH/) { 264 $cc .= " -m64"; 286 $cc .= " -mbig-endian "; 290 $cc .= " -mlittle-endian "; 296 $cc .= " -m64 "; 299 $cc .= " -m32 "; [all …]
|
D | Kconfig.include | 26 # $(cc-option,<flag>) 28 cc-option = $(success,mkdir .tmp_$$$$; trap "rm -rf .tmp_$$$$" EXIT; $(CC) -Werror $(CLANG_FLAGS) $… 54 cc-option-bit = $(if-success,$(CC) -Werror $(1) -E -x c /dev/null -o /dev/null,$(1)) 55 m32-flag := $(cc-option-bit,-m32) 56 m64-flag := $(cc-option-bit,-m64)
|
D | Kbuild.include | 74 # cc-cross-prefix 75 # Usage: CROSS_COMPILE := $(call cc-cross-prefix, m68k-linux-gnu- m68k-linux-) 83 cc-cross-prefix = $(firstword $(foreach c, $(1), \ 120 # cc-option 121 # Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586) 123 cc-option = $(call __cc-option, $(CC),\ 126 # cc-option-yn 127 # Usage: flag := $(call cc-option-yn,-march=winchip-c6) 128 cc-option-yn = $(call try-run,\ 131 # cc-disable-warning [all …]
|
D | Makefile.host | 128 $(host-cxxobjs): $(obj)/%.o: $(src)/%.cc FORCE
|
D | checkpatch.pl | 5117 my $cc = ''; 5119 $cc = substr($opline, $off + length($elements[$n + 1])); 5121 my $cb = "$ca$;$cc"; 5160 $ca =~ /\s$/ && $cc =~ /^\s*[,\)]/) { 5168 $cc !~ /^\\/ && $cc !~ /^;/) { 5208 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) { 5246 if ($op eq '*' && $cc =~/\s*$Modifier\b/) { 5270 ($ctx =~ /Wx./ && $cc =~ /^;/)) { 5338 $cc =~ /^\S+\@\S+>/) || 5349 ($ca =~ /:$/ || $cc =~ /^:/)) {
|
/scripts/kconfig/ |
D | .gitignore | 2 /qconf-moc.cc
|
D | Makefile | 196 $(obj)/qconf-moc.cc: $(src)/qconf.h $(obj)/qconf-cfg FORCE 199 targets += qconf-moc.cc
|
/scripts/dtc/ |
D | checks.c | 1891 struct check *cc = check_table[i]; in disable_warning_error() local 1894 for (j = 0; j < cc->num_prereqs; j++) in disable_warning_error() 1895 if (cc->prereq[j] == c) in disable_warning_error() 1896 disable_warning_error(cc, warn, error); in disable_warning_error()
|