Home
last modified time | relevance | path

Searched refs:cflags (Results 1 – 25 of 777) sorted by relevance

12345678910>>...32

/external/bcc/src/cc/frontends/clang/
Dkbuild_helper.cc31 int KBuildHelper::get_flags(const char *uname_machine, vector<string> *cflags) { in get_flags() argument
67 cflags->push_back("-nostdinc"); in get_flags()
68 cflags->push_back("-isystem"); in get_flags()
69 cflags->push_back("/virtual/lib/clang/include"); in get_flags()
73 cflags->push_back("-I" + kdir_ + "/build/arch/"+arch+"/include"); in get_flags()
74 cflags->push_back("-I" + kdir_ + "/build/arch/"+arch+"/include/generated/uapi"); in get_flags()
75 cflags->push_back("-I" + kdir_ + "/build/arch/"+arch+"/include/generated"); in get_flags()
76 cflags->push_back("-I" + kdir_ + "/build/include"); in get_flags()
77 cflags->push_back("-I" + kdir_ + "/build/./arch/"+arch+"/include/uapi"); in get_flags()
78 cflags->push_back("-I" + kdir_ + "/build/arch/"+arch+"/include/generated/uapi"); in get_flags()
[all …]
/external/toolchain-utils/android_bench_suite/
Dset_flags.py32 def replace_flags(bench, android_type, file_type, cflags, ldflags): argument
35 if cflags:
36 cflags = '\", \"'.join(cflags.split())
40 if not cflags:
41 cflags = ''
43 cflags = '\"' + cflags + '\",'
59 line = line.replace('CFLAGS_FOR_BENCH_SUITE', cflags)
78 def replace_flags_in_dir(bench, cflags, ldflags): argument
82 if not cflags:
83 cflags = ''
[all …]
Dbuild_bench.py60 def set_flags(bench, cflags, ldflags): argument
61 if not cflags:
63 cflags = ''
65 logging.info('Cflags setting to "%s"...', cflags)
74 add_flags(cflags, ldflags)
128 def set_compiler_env(bench, compiler, build_os, llvm_prebuilts_version, cflags, argument
141 set_flags(bench, cflags, ldflags)
204 cflags = arguments.cflags
214 set_compiler_env(bench, compiler, build_os, llvm_version, cflags, ldflags)
/external/pigweed/pw_toolchain/arm_gcc/
DBUILD.gn31 cflags = [ "-Wno-psabi" ]
39 cflags = asmflags + [
43 ldflags = cflags + [
50 cflags = [ "-u_printf_float" ]
51 ldflags = cflags
55 cflags = [ "-mcpu=cortex-m0plus" ]
56 asmflags = cflags
57 ldflags = cflags
61 cflags = [ "-mcpu=cortex-m3" ]
62 asmflags = cflags
[all …]
/external/pigweed/pw_toolchain/py/pw_toolchain/
Dclang_arm_toolchain.py71 def _compiler_info_command(print_command: str, cflags: List[str]) -> str:
73 command.extend(cflags)
84 def get_gcc_lib_dir(cflags: List[str]) -> Path:
86 cflags)).parent
89 def get_compiler_info(cflags: List[str]) -> Dict[str, str]:
91 compiler_info['gcc_libs_dir'] = str(get_gcc_lib_dir(cflags))
92 compiler_info['sysroot'] = _compiler_info_command('-print-sysroot', cflags)
93 compiler_info['version'] = _compiler_info_command('-dumpversion', cflags)
95 '-print-multi-directory', cflags)
101 cflags = [
[all …]
/external/libvpx/libvpx/tools/
Dset_analyzer_env.sh68 cflags="-fsanitize=${sanitizer}"
72 cflags="${cflags} -fno-strict-aliasing"
74 cflags="${cflags} -fno-omit-frame-pointer"
76 cflags="${cflags} -fno-optimize-sibling-calls"
80 cflags="${cflags} -fno-sanitize-trap=cfi -flto -fvisibility=hidden"
90 export CFLAGS="${cflags}"
91 export CXXFLAGS="${cflags}"
/external/openssh/openbsd-compat/
Dbsd-snprintf.c190 int cflags; in dopr() local
197 currlen = flags = cflags = min = 0; in dopr()
277 cflags = DP_C_SHORT; in dopr()
281 cflags = DP_C_INTMAX; in dopr()
285 cflags = DP_C_LONG; in dopr()
288 cflags = DP_C_LLONG; in dopr()
293 cflags = DP_C_LDOUBLE; in dopr()
297 cflags = DP_C_SIZE; in dopr()
309 if (cflags == DP_C_SHORT) in dopr()
311 else if (cflags == DP_C_LONG) in dopr()
[all …]
/external/libusb/.private/
Dci-build.sh45 cflags="-O2"
48 cflags+=" -Winline"
49 cflags+=" -Wmissing-include-dirs"
50 cflags+=" -Wnested-externs"
51 cflags+=" -Wpointer-arith"
52 cflags+=" -Wredundant-decls"
53 cflags+=" -Wswitch-enum"
57 CFLAGS="${cflags}" ../configure --enable-examples-build --enable-tests-build "$@"
/external/skqp/gn/
Dgn_to_bp_utils.py47 def CleanupCFlags(cflags): argument
49 cflags = {s for s in cflags if s.startswith('-W')}
52 cflags = cflags.union([
59 cflags = cflags.union([
70 cflags = sorted(cflags)
71 cflags.insert(0, "-U_FORTIFY_SOURCE")
72 return cflags
DBUILD.gn33 cflags = []
41 cflags += [
47 cflags += [ "-fms-compatibility-version=19" ] # 2015
70 cflags += [
94 cflags += [
103 cflags += [ "-fvisibility=hidden" ]
109 cflags += [
116 cflags += [
124 cflags += [ "-march=mips64" ]
127 cflags += [
[all …]
/external/skia/gn/
Dgn_to_bp_utils.py47 def CleanupCFlags(cflags): argument
49 cflags = {s for s in cflags if s.startswith('-W')}
53 cflags = cflags.union([
62 cflags = cflags.union([
72 cflags = sorted(cflags)
73 cflags.insert(0, "-U_FORTIFY_SOURCE")
74 return cflags
/external/llvm/soong/
Dllvm.go25 var cflags []string
28 cflags = append(cflags, "-D_DEBUG", "-UNDEBUG")
31 return cflags
35 var cflags []string
37 return cflags
41 var cflags []string
44 cflags = append(cflags, "-O0", "-g")
47 return cflags
/external/llvm-project/llvm/utils/gn/build/
DBUILD.gn42 cflags = target_flags
53 cflags += [
66 cflags += [ "-miphoneos-version-min=8.0" ]
71 cflags += [ "-mmacosx-version-min=10.10" ]
77 cflags += [ "-g" ]
80 cflags += [ "-O3" ]
82 cflags += [ "-fdiagnostics-color" ]
92 cflags += [
100 cflags += [ "-gcodeview-ghash" ]
105 cflags += [
[all …]
/external/pigweed/pw_build/
DBUILD.gn24 cflags = [
28 ldflags = cflags
33 cflags = [ "-g" ]
38 cflags = [ "-g3" ]
43 cflags = [ "-Og" ]
44 ldflags = cflags
48 cflags = [ "-O2" ]
49 ldflags = cflags
53 cflags = [ "-O3" ]
54 ldflags = cflags
[all …]
/external/pigweed/pw_toolchain/arm_clang/
DBUILD.gn40 cflags = [ "-mcpu=cortex-m3" ]
41 cflags += cortex_m_common_flags
42 cflags += cortex_m_software_fpu_flags
43 asmflags = cflags
44 ldflags = cflags
48 cflags = [ "-mcpu=cortex-m4" ]
49 cflags += cortex_m_common_flags
50 cflags += cortex_m_hardware_fpu_flags
51 asmflags = cflags
52 ldflags = cflags
/external/ms-tpm-20-ref/Samples/ARM32-FirmwareTPM/optee_ta/fTPM/
Dsub.mk6 cflags-y += -DTHIRTY_TWO_BIT -DCFG_TEE_TA_LOG_LEVEL=$(CFG_TEE_TA_LOG_LEVEL) -D_ARM_ -w -Wno-strict-…
9 cflags-y += -mstrict-align
11 cflags-y += -mno-unaligned-access
15 cflags-y += -DfTPMDebug=1
16 cflags-y += -DDBG=1
17 cflags-y += -O0
18 cflags-y += -DDEBUG
20 cflags-y += -Os
21 cflags-y += -DNDEBUG
/external/openscreen/build/config/
DBUILD.gn29 cflags = []
31 cflags += [ "-fPIC" ]
51 cflags = []
56 cflags += [ "-m64" ]
59 cflags += [ "-m32" ]
62 cflags += [
70 cflags += [ "--target=aarch64-linux-gnu" ]
101 cflags = [
113 cflags += [ "-Wno-maybe-uninitialized" ]
123 cflags += [
[all …]
/external/skia/gn/skia/
DBUILD.gn49 cflags = []
60 cflags += [ "/wd5030" ]
62 cflags += [ "-Wno-attributes" ]
70 cflags += [ "--sysroot=" +
81 cflags += [ target_triple ]
87 cflags += [ "--target=arm64-windows" ]
89 cflags += [
111 cflags += [
126 cflags += [
138 cflags += [
[all …]
/external/perfetto/gn/standalone/
DBUILD.gn44 cflags = [
50 cflags += [
58 cflags = [
71 cflags += [ "-Weverything" ]
73 cflags += [
89 cflags += [ "-Wno-redundant-move" ]
129 cflags = [ "-fvisibility=hidden" ]
141 cflags = []
154 cflags += [
161 cflags += [
[all …]
/external/arm-optimized-routines/
Dconfig.mk.dist41 math-cflags =
45 string-cflags =
46 networking-cflags =
50 #math-cflags += -DUSE_MPFR
53 math-cflags += -frounding-math -fexcess-precision=standard -fno-stack-protector
54 math-cflags += -ffp-contract=fast -fno-math-errno
57 #math-cflags += -ffp-contract=fast
60 #math-cflags += -DWANT_VMATH=0
67 #string-cflags += -DWANT_GNU_PROPERTY=0
70 #networking-cflags += -DWANT_ASSERT
[all …]
/external/cpu_features/
DAndroid.bp40 cflags: [
73 cflags: [
78 cflags: [
117 cflags: [
125 cflags: [
133 cflags: [
165 cflags: [
170 cflags: [
187 cflags: [
203 cflags: [
[all …]
/external/llvm-project/libc/AOR_v20.02/
Dconfig.mk.dist39 math-cflags =
43 string-cflags =
44 networking-cflags =
48 #math-cflags += -DUSE_MPFR
51 math-cflags += -frounding-math -fexcess-precision=standard -fno-stack-protector
52 math-cflags += -ffp-contract=fast -fno-math-errno
55 #math-cflags += -ffp-contract=fast
58 #math-cflags += -DWANT_VMATH=0
65 #networking-cflags += -DWANT_ASSERT
68 networking-cflags += -O2 -fno-tree-vectorize -funroll-loops
Dconfig.mk41 math-cflags =
45 string-cflags =
46 networking-cflags =
53 math-cflags += -frounding-math -fexcess-precision=standard -fno-stack-protector
54 math-cflags += -ffp-contract=fast -fno-math-errno
70 networking-cflags += -O2 -fno-tree-vectorize -funroll-loops
/external/pigweed/pw_toolchain/host_clang/
DBUILD.gn19 cflags = [ "-fsanitize=address" ]
20 ldflags = cflags
24 cflags = [ "-fsanitize=memory" ]
25 ldflags = cflags
29 cflags = [ "-fsanitize=undefined" ]
30 ldflags = cflags
34 cflags = [
38 ldflags = cflags
51 cflags = [ "--sysroot=$_xcode_sysroot" ]
52 ldflags = cflags
/external/minigbm/
DMakefile8 PC_CFLAGS := $(shell $(PKG_CONFIG) --cflags $(PC_DEPS))
16 CFLAGS += $(shell $(PKG_CONFIG) --cflags libdrm_amdgpu)
20 CFLAGS += $(shell $(PKG_CONFIG) --cflags libdrm_exynos)
23 CFLAGS += $(shell $(PKG_CONFIG) --cflags libdrm_intel)
26 CFLAGS += $(shell $(PKG_CONFIG) --cflags libdrm_meson)
32 CFLAGS += $(shell $(PKG_CONFIG) --cflags libdrm_radeon)
35 CFLAGS += $(shell $(PKG_CONFIG) --cflags libdrm_rockchip)
38 CFLAGS += $(shell $(PKG_CONFIG) --cflags libdrm_vc4)

12345678910>>...32