Searched refs:cflags (Results 1 – 25 of 27) sorted by relevance
12
/build/soong/rust/ |
D | bindgen.go | 134 var cflags []string 140 cflags = append(cflags, "${cc_config.CommonClangGlobalCflags}") 142 cflags = append(cflags, "${cc_config.DeviceClangGlobalCflags}") 146 cflags = append(cflags, "-target "+ccToolchain.ClangTriple()) 147 cflags = append(cflags, strings.ReplaceAll(ccToolchain.ClangCflags(), "${config.", "${cc_config.")) 148 …cflags = append(cflags, strings.ReplaceAll(ccToolchain.ToolchainClangCflags(), "${config.", "${cc_… 151 cflags = append(cflags, deps.depClangFlags...) 153 cflags = append(cflags, "-I"+include.String()) 156 cflags = append(cflags, "-isystem "+include.String()) 174 cflags = append(cflags, esc(b.ClangProperties.Cflags)...) [all …]
|
D | bindgen_test.go | 32 cflags: ["--clang-flag()"], 51 cflags: ["--default-flag"], 155 cflags: ["-x c++"] 167 cflags: ["-std=foo"]
|
/build/soong/android/ |
D | soong_config_modules_test.go | 97 cflags: ["DEFAULT"], 102 cflags: ["-DGENERIC"], 107 cflags: ["-DSOC_A"], 110 cflags: ["-DSOC_B"], 114 cflags: ["-DSOC_CONDITIONS_DEFAULT"], 118 cflags: ["-DSIZE=%s"], 120 cflags: ["-DSIZE=CONDITIONS_DEFAULT"], 125 cflags: ["-DF1_CONDITIONS_DEFAULT"], 127 cflags: ["-DFEATURE1"], 130 cflags: ["-DFEATURE2"], [all …]
|
D | neverallow_test.go | 164 cflags: ["-DSHOULD_NOT_EXIST"], 182 cflags: ["-DSHOULD_NOT_EXIST"], 199 cflags: ["-DSHOULD_NOT_EXIST"],
|
D | variable_test.go | 175 cflags: ["-DBAR"],
|
/build/soong/cc/ |
D | library_headers_test.go | 37 cflags := cc.Args["cFlags"] 38 if !strings.Contains(cflags, " -Imy_include ") { 39 t.Errorf("cflags for libsystem must contain -Imy_include, but was %#v.", cflags) 58 cflags := cc.Args["cFlags"] 59 if !strings.Contains(cflags, " -Imy_include ") { 60 t.Errorf("cflags for libsystem must contain -Imy_include, but was %#v.", cflags)
|
D | vendor_public_library_test.go | 74 cflags := cc.Args["cFlags"] 75 if !strings.Contains(cflags, "-Imy_include") { 76 t.Errorf("cflags for libsystem must contain -Imy_include, but was %#v.", cflags)
|
D | cflag_artifacts.go | 145 cflags := ccModule.flags.Local.CFlags 152 if inList(flag, cflags) || inList(flag, cppflags) {
|
D | library_test.go | 109 cflags: ["-DFOO"], 135 cflags: ["-DFOO"],
|
D | cmakelists.go | 210 func translateToCMake(c compilerParameters, f *os.File, cflags bool, cppflags bool) { 213 if cflags {
|
D | builder.go | 468 cflags := flags.globalCommonFlags + " " + 503 cflags += " ${config.NoOverrideClangGlobalCflags}" 572 moduleFlags = cflags
|
/build/soong/bp2build/ |
D | cc_object_conversion_test.go | 49 cflags: [ 97 cflags: [ 273 cflags: ["-fPIC"], // string list 309 cflags: ["-fPIC"], 313 cflags: ["-fPIC"], 317 cflags: ["-Wall"], 321 cflags: ["-Wall"], 359 cflags: ["-fPIC"], 362 cflags: ["-fPIC"], 365 cflags: ["-Wall"],
|
D | cc_library_conversion_test.go | 86 cflags: ["-Wall"], 155 cflags: [ 235 cflags: [ 269 cflags: ["bothflag"], 275 cflags: ["staticflag"], 282 cflags: ["sharedflag"], 498 cflags: ["-include header.h",], 524 cflags: [
|
/build/soong/bpf/ |
D | bpf.go | 74 cflags := []string{ 93 cflags = append(cflags, "-I "+dir.String()) 96 cflags = append(cflags, bpf.properties.Cflags...) 108 "cFlags": strings.Join(cflags, " "),
|
/build/make/tools/libhost/ |
D | Android.bp | 14 cflags: [ 22 cflags: ["-Wno-unused-parameter"],
|
/build/soong/cc/config/ |
D | clang.go | 232 func ClangFilterUnknownCflags(cflags []string) []string { 233 result, _ := android.FilterList(cflags, ClangUnknownCflags)
|
D | x86_device.go | 130 for variant, cflags := range x86ArchVariantCflags { 132 strings.Join(ClangFilterUnknownCflags(cflags), " "))
|
D | x86_64_device.go | 119 for variant, cflags := range x86_64ArchVariantCflags { 121 strings.Join(ClangFilterUnknownCflags(cflags), " "))
|
/build/make/tools/zipalign/ |
D | Android.bp | 31 cflags: ["-Wall", "-Werror"], 52 cflags: ["-Wall", "-Werror"],
|
/build/soong/cc/libbuildversion/ |
D | Android.bp | 11 cflags: ["-fvisibility=hidden"],
|
/build/make/tools/fs_get_stats/ |
D | Android.bp | 13 cflags: ["-Wall", "-Werror"],
|
/build/make/tools/acp/ |
D | Android.bp | 17 cflags: ["-Wall", "-Werror"],
|
/build/make/tools/atree/ |
D | Android.bp | 21 cflags: ["-Wall", "-Werror"],
|
/build/make/tools/fs_config/ |
D | Android.bp | 44 cflags: ["-Werror"],
|
/build/soong/androidmk/androidmk/ |
D | android.go | 63 "LOCAL_CFLAGS": cflags, 717 func cflags(ctx variableAssignmentContext) error { func
|
12