Searched refs:cc (Results 1 – 14 of 14) sorted by relevance
/scripts/ |
A D | Makefile.kcsan | 5 cc-param = -mllvm -$(1) 7 cc-param = --param $(1) 13 …$(call cc-option,$(call cc-param,tsan-compound-read-before-write=1),$(call cc-option,$(call cc-par… 14 $(call cc-param,tsan-distinguish-volatile=1) 23 kcsan-cflags += $(call cc-option,$(call cc-param,tsan-instrument-func-entry-exit=0))
|
A D | Makefile.extrawarn | 19 KBUILD_CFLAGS += $(call cc-option, -Wno-frame-address) 59 KBUILD_CFLAGS += $(call cc-option, -Wno-dangling-pointer) 67 KBUILD_CFLAGS += $(call cc-option,-Wvla-larger-than=1) 75 KBUILD_CFLAGS += $(call cc-option, -Wcast-function-type) 105 KBUILD_CFLAGS += $(call cc-option,-Werror=designated-init) 108 KBUILD_CFLAGS += $(call cc-option,-Wenum-conversion) 131 KBUILD_CFLAGS += $(call cc-option, -Wno-format-overflow) 133 KBUILD_CFLAGS += $(call cc-option, -Wno-format-truncation) 155 KBUILD_CFLAGS += $(call cc-option, -Wno-unaligned-access) 168 KBUILD_CFLAGS += $(call cc-option, -Wlogical-op) [all …]
|
A D | recordmcount.pl | 153 $cc = 'gcc' if (!$cc); 208 $cc .= " -m64"; 218 $cc .= " -m32"; 221 if ($cc =~ /-DCC_USING_HOTPATCH/) { 228 $cc .= " -m64"; 250 $cc .= " -mbig-endian "; 254 $cc .= " -mlittle-endian "; 260 $cc .= " -m64 "; 263 $cc .= " -m32 "; 296 $cc .= " -m64"; [all …]
|
A D | Makefile.compiler | 12 cc-cross-prefix = $(firstword $(foreach c, $(1), \ 51 cc-option = $(call __cc-option, $(CC),\ 56 cc-option-yn = $(if $(call cc-option,$1),y,n) 60 cc-disable-warning = $(call cc-option,-Wno-$(strip $1))
|
A D | Makefile.kasan | 14 cc-param = $(call cc-option, -mllvm -$(1), $(call cc-option, --param $(1))) 44 CFLAGS_KASAN := $(call cc-option, -fsanitize=kernel-address \ 46 $(call cc-option, -fsanitize=kernel-address \ 97 CFLAGS_KASAN += $(call check-args, cc-param, $(kasan_params))
|
A D | Kconfig.include | 26 # $(cc-option,<flag>) 28 cc-option = $(success,trap "rm -rf .tmp_$$" EXIT; mkdir .tmp_$$; $(CC) -Werror $(CLANG_FLAGS) $(1) … 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) 64 cc-option-bit = $(if-success,$(CC) -Werror $(1) -E -x c /dev/null -o /dev/null,$(1)) 65 m32-flag := $(cc-option-bit,-m32) 66 m64-flag := $(cc-option-bit,-m64)
|
A D | rust_is_available_test.py | 293 cc = self.generate_clang(f"clang version {libclang_version}") 296 result = self.run_script(expected_not_patched, { "BINDGEN": bindgen, "CC": cc }) 301 result = self.run_script(self.Expected.SUCCESS, { "BINDGEN": bindgen, "CC": cc }) 309 cc = self.generate_clang("clang version 999.0.0") 310 result = self.run_script(self.Expected.SUCCESS_WITH_WARNINGS, { "CC": cc }) 383 for cc in ["gcc", "clang"]: 384 with self.subTest(cc=cc): 389 "CC": cc,
|
A D | Makefile.ubsan | 4 export CFLAGS_UBSAN_TRAP := $(call cc-option,-fsanitize-trap=undefined,-fsanitize-undefined-trap-on…
|
A D | rust_is_available.sh | 250 cc_name=$($(dirname $0)/cc-version.sh $CC | cut -f1 -d' ')
|
A D | Makefile.host | 147 $(host-cxxobjs): $(obj)/%.o: $(obj)/%.cc FORCE
|
A D | checkpatch.pl | 5132 my $cc = ''; 5134 $cc = substr($opline, $off + length($elements[$n + 1])); 5136 my $cb = "$ca$;$cc"; 5175 $ca =~ /\s$/ && $cc =~ /^\s*[,\)]/) { 5183 $cc !~ /^\\/ && $cc !~ /^;/) { 5223 if ($ctx !~ /.x[WEC]/ && $cc !~ /^}/) { 5261 if ($op eq '*' && $cc =~/\s*$Modifier\b/) { 5285 ($ctx =~ /Wx./ && $cc =~ /^;/)) { 5353 $cc =~ /^\S+\@\S+>/) || 5364 ($ca =~ /:$/ || $cc =~ /^:/)) {
|
/scripts/kconfig/ |
A D | .gitignore | 7 /qconf-moc.cc
|
A D | Makefile | 215 $(obj)/qconf-moc.cc: $(src)/qconf.h FORCE | $(obj)/qconf-bin 218 targets += qconf-moc.cc
|
/scripts/dtc/ |
A D | checks.c | 2027 struct check *cc = check_table[i]; in disable_warning_error() local 2030 for (j = 0; j < cc->num_prereqs; j++) in disable_warning_error() 2031 if (cc->prereq[j] == c) in disable_warning_error() 2032 disable_warning_error(cc, warn, error); in disable_warning_error()
|
Completed in 23 milliseconds