blob: 9a961cfb94d879192e13a38da54c2d7f76950039 [file] [log] [blame]
Colin Cross4d9c2d12016-07-29 12:48:20 -07001// Copyright 2016 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package cc
16
17import (
18 "fmt"
19 "path/filepath"
Yi Kong950e0ba2019-10-08 02:27:17 -070020 "regexp"
Peter Collingbourneb0e61432019-07-22 16:36:06 -070021 "strconv"
Colin Cross4d9c2d12016-07-29 12:48:20 -070022 "strings"
23
Colin Cross4b963f82016-09-29 14:06:02 -070024 "github.com/google/blueprint/proptools"
25
Colin Cross4d9c2d12016-07-29 12:48:20 -070026 "android/soong/android"
Colin Crossb98c8b02016-07-29 13:44:28 -070027 "android/soong/cc/config"
Colin Cross4d9c2d12016-07-29 12:48:20 -070028)
29
Ivan Lozanod094d402019-11-26 10:32:50 -080030var (
31 allowedManualInterfacePaths = []string{"vendor/", "hardware/"}
32)
33
Colin Cross4d9c2d12016-07-29 12:48:20 -070034// This file contains the basic C/C++/assembly to .o compliation steps
35
36type BaseCompilerProperties struct {
37 // list of source files used to compile the C/C++ module. May be .c, .cpp, or .S files.
Colin Cross068e0fe2016-12-13 15:23:47 -080038 // srcs may reference the outputs of other modules that produce source files like genrule
39 // or filegroup using the syntax ":module".
Colin Cross27b922f2019-03-04 22:35:41 -080040 Srcs []string `android:"path,arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070041
Chih-Hung Hsieh769a51c2021-09-17 17:18:39 -070042 // list of source files that should not be compiled with clang-tidy.
43 Tidy_disabled_srcs []string `android:"path,arch_variant"`
44
Chih-Hung Hsieh9db8a0c2022-02-17 12:54:45 -080045 // list of source files that should not be compiled by clang-tidy when TIDY_TIMEOUT is set.
46 Tidy_timeout_srcs []string `android:"path,arch_variant"`
47
Colin Cross4d9c2d12016-07-29 12:48:20 -070048 // list of source files that should not be used to build the C/C++ module.
49 // This is most useful in the arch/multilib variants to remove non-common files
Colin Cross27b922f2019-03-04 22:35:41 -080050 Exclude_srcs []string `android:"path,arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070051
52 // list of module-specific flags that will be used for C and C++ compiles.
53 Cflags []string `android:"arch_variant"`
54
55 // list of module-specific flags that will be used for C++ compiles
56 Cppflags []string `android:"arch_variant"`
57
58 // list of module-specific flags that will be used for C compiles
59 Conlyflags []string `android:"arch_variant"`
60
61 // list of module-specific flags that will be used for .S compiles
62 Asflags []string `android:"arch_variant"`
63
64 // list of module-specific flags that will be used for C and C++ compiles when
65 // compiling with clang
66 Clang_cflags []string `android:"arch_variant"`
67
68 // list of module-specific flags that will be used for .S compiles when
69 // compiling with clang
70 Clang_asflags []string `android:"arch_variant"`
71
Colin Cross4d9c2d12016-07-29 12:48:20 -070072 // the instruction set architecture to use to compile the C/C++
73 // module.
Dan Willemsen5922f3c2017-10-25 15:20:50 -070074 Instruction_set *string `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070075
76 // list of directories relative to the root of the source tree that will
77 // be added to the include path using -I.
78 // If possible, don't use this. If adding paths from the current directory use
79 // local_include_dirs, if adding paths from other modules use export_include_dirs in
80 // that module.
Colin Crossccf01e72017-04-26 17:01:07 -070081 Include_dirs []string `android:"arch_variant,variant_prepend"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070082
83 // list of directories relative to the Blueprints file that will
84 // be added to the include path using -I
Dan Willemsen59339a22018-07-22 21:18:45 -070085 Local_include_dirs []string `android:"arch_variant,variant_prepend"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070086
Dan Albert899c23e2018-12-06 11:04:03 -080087 // Add the directory containing the Android.bp file to the list of include
88 // directories. Defaults to true.
89 Include_build_directory *bool
90
Colin Cross4d9c2d12016-07-29 12:48:20 -070091 // list of generated sources to compile. These are the names of gensrcs or
92 // genrule modules.
93 Generated_sources []string `android:"arch_variant"`
94
Jooyung Hanac07f882020-07-05 03:54:35 +090095 // list of generated sources that should not be used to build the C/C++ module.
96 // This is most useful in the arch/multilib variants to remove non-common files
97 Exclude_generated_sources []string `android:"arch_variant"`
98
Colin Cross4d9c2d12016-07-29 12:48:20 -070099 // list of generated headers to add to the include path. These are the names
100 // of genrule modules.
Colin Cross0ed579e2021-06-29 00:51:12 +0000101 Generated_headers []string `android:"arch_variant,variant_prepend"`
Colin Cross4d9c2d12016-07-29 12:48:20 -0700102
103 // pass -frtti instead of -fno-rtti
104 Rtti *bool
105
Dan Albert043833c2017-02-03 16:13:38 -0800106 // C standard version to use. Can be a specific version (such as "gnu11"),
107 // "experimental" (which will use draft versions like C1x when available),
108 // or the empty string (which will use the default).
Nan Zhang0007d812017-11-07 10:57:05 -0800109 C_std *string
Dan Albert043833c2017-02-03 16:13:38 -0800110
111 // C++ standard version to use. Can be a specific version (such as
112 // "gnu++11"), "experimental" (which will use draft versions like C++1z when
113 // available), or the empty string (which will use the default).
Nan Zhang0007d812017-11-07 10:57:05 -0800114 Cpp_std *string
Dan Albert043833c2017-02-03 16:13:38 -0800115
Colin Cross948f0cb2016-10-17 14:24:56 -0700116 // if set to false, use -std=c++* instead of -std=gnu++*
117 Gnu_extensions *bool
118
AdityaK6cfd07e2024-01-31 14:31:20 -0800119 // cc Build rules targeting BPF must set this to true. The correct fix is to
120 // ban targeting bpf in cc rules instead use bpf_rules. (b/323415017)
121 Bpf_target *bool
122
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700123 Yacc *YaccProperties
Matthias Maennich22fd4d12020-07-15 10:58:56 +0200124 Lex *LexProperties
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700125
Dan Willemsene1240db2016-11-03 14:28:51 -0700126 Aidl struct {
Vinh Tran367d89d2023-04-28 11:21:25 -0400127 // List of aidl_library modules
128 Libs []string
129
Dan Willemsene1240db2016-11-03 14:28:51 -0700130 // list of directories that will be added to the aidl include paths.
131 Include_dirs []string
132
133 // list of directories relative to the Blueprints file that will
134 // be added to the aidl include paths.
135 Local_include_dirs []string
Martijn Coeneneab15642018-03-09 09:29:59 +0100136
137 // whether to generate traces (for systrace) for this interface
138 Generate_traces *bool
Jooyung Hane197d8b2021-01-05 10:33:16 +0900139
140 // list of flags that will be passed to the AIDL compiler
141 Flags []string
Dan Willemsene1240db2016-11-03 14:28:51 -0700142 }
143
Colin Cross2a252be2017-05-01 17:37:24 -0700144 Renderscript struct {
145 // list of directories that will be added to the llvm-rs-cc include paths
146 Include_dirs []string
147
148 // list of flags that will be passed to llvm-rs-cc
149 Flags []string
150
151 // Renderscript API level to target
152 Target_api *string
153 }
154
Colin Cross4d9c2d12016-07-29 12:48:20 -0700155 Debug, Release struct {
156 // list of module-specific flags that will be used for C and C++ compiles in debug or
157 // release builds
158 Cflags []string `android:"arch_variant"`
159 } `android:"arch_variant"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700160
161 Target struct {
Justin Yun63e9ec72020-10-29 16:49:43 +0900162 Vendor, Product struct {
163 // list of source files that should only be used in vendor or
164 // product variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800165 Srcs []string `android:"path"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700166
Justin Yun63e9ec72020-10-29 16:49:43 +0900167 // list of source files that should not be used to build vendor
168 // or product variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800169 Exclude_srcs []string `android:"path"`
Jiyong Parka622de82017-08-10 13:33:27 +0900170
Justin Yun63e9ec72020-10-29 16:49:43 +0900171 // List of additional cflags that should be used to build vendor
172 // or product variant of the C/C++ module.
Jiyong Parka622de82017-08-10 13:33:27 +0900173 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900174
Justin Yun63e9ec72020-10-29 16:49:43 +0900175 // list of generated sources that should not be used to build
176 // vendor or product variant of the C/C++ module.
Jooyung Hanac07f882020-07-05 03:54:35 +0900177 Exclude_generated_sources []string
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700178 }
Jiyong Parkf9332f12018-02-01 00:54:12 +0900179 Recovery struct {
180 // list of source files that should only be used in the
181 // recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800182 Srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900183
184 // list of source files that should not be used to
185 // build the recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800186 Exclude_srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900187
188 // List of additional cflags that should be used to build the recovery
189 // variant of the C/C++ module.
190 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900191
192 // list of generated sources that should not be used to
193 // build the recovery variant of the C/C++ module.
194 Exclude_generated_sources []string
Jiyong Parkf9332f12018-02-01 00:54:12 +0900195 }
Christopher Ferrise0202c42023-07-27 17:06:46 -0700196 Ramdisk, Vendor_ramdisk struct {
Yifan Hong6da33c22020-10-27 15:01:21 -0700197 // list of source files that should not be used to
Christopher Ferrise0202c42023-07-27 17:06:46 -0700198 // build the ramdisk variants of the C/C++ module.
Yifan Hong6da33c22020-10-27 15:01:21 -0700199 Exclude_srcs []string `android:"path"`
200
Christopher Ferrise0202c42023-07-27 17:06:46 -0700201 // List of additional cflags that should be used to build the ramdisk
202 // variants of the C/C++ module.
Yifan Hong6da33c22020-10-27 15:01:21 -0700203 Cflags []string
204 }
Jiyong Parka592b6f2021-07-16 16:05:50 +0900205 Platform struct {
206 // List of additional cflags that should be used to build the platform
207 // variant of the C/C++ module.
208 Cflags []string
209 }
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700210 }
Colin Cross10d22312017-05-03 11:01:58 -0700211
Colin Cross38f794e2017-09-07 10:53:07 -0700212 Proto struct {
213 // Link statically against the protobuf runtime
Nan Zhang0007d812017-11-07 10:57:05 -0800214 Static *bool `android:"arch_variant"`
Colin Cross38f794e2017-09-07 10:53:07 -0700215 } `android:"arch_variant"`
216
Colin Cross10d22312017-05-03 11:01:58 -0700217 // Stores the original list of source files before being cleared by library reuse
218 OriginalSrcs []string `blueprint:"mutated"`
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800219
220 // Build and link with OpenMP
221 Openmp *bool `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -0700222}
223
Colin Crossb916a382016-07-29 17:28:03 -0700224func NewBaseCompiler() *baseCompiler {
225 return &baseCompiler{}
226}
227
Colin Cross4d9c2d12016-07-29 12:48:20 -0700228type baseCompiler struct {
229 Properties BaseCompilerProperties
Colin Cross38f794e2017-09-07 10:53:07 -0700230 Proto android.ProtoProperties
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800231 cFlagsDeps android.Paths
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800232 pathDeps android.Paths
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800233 flags builderFlags
Colin Crossf18e1102017-11-16 14:33:08 -0800234
235 // Sources that were passed to the C/C++ compiler
236 srcs android.Paths
237
238 // Sources that were passed in the Android.bp file, including generated sources generated by
239 // other modules and filegroups. May include source files that have not yet been translated to
240 // C/C++ (.aidl, .proto, etc.)
241 srcsBeforeGen android.Paths
Paul Duffin33056e82021-02-19 13:49:08 +0000242
243 generatedSourceInfo
Colin Cross4d9c2d12016-07-29 12:48:20 -0700244}
245
246var _ compiler = (*baseCompiler)(nil)
247
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800248type CompiledInterface interface {
249 Srcs() android.Paths
250}
251
252func (compiler *baseCompiler) Srcs() android.Paths {
Nan Zhange42777a2018-03-27 16:19:42 -0700253 return append(android.Paths{}, compiler.srcs...)
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800254}
255
Colin Cross4d9c2d12016-07-29 12:48:20 -0700256func (compiler *baseCompiler) appendCflags(flags []string) {
257 compiler.Properties.Cflags = append(compiler.Properties.Cflags, flags...)
258}
259
260func (compiler *baseCompiler) appendAsflags(flags []string) {
261 compiler.Properties.Asflags = append(compiler.Properties.Asflags, flags...)
262}
263
Colin Cross42742b82016-08-01 13:20:05 -0700264func (compiler *baseCompiler) compilerProps() []interface{} {
Colin Cross0feb1692016-11-03 14:38:52 -0700265 return []interface{}{&compiler.Properties, &compiler.Proto}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700266}
267
Liz Kammer135bf552021-08-11 10:46:06 -0400268func includeBuildDirectory(prop *bool) bool {
269 return proptools.BoolDefault(prop, true)
270}
271
Liz Kammera4aa4302021-03-18 16:56:36 -0400272func (compiler *baseCompiler) includeBuildDirectory() bool {
Liz Kammer135bf552021-08-11 10:46:06 -0400273 return includeBuildDirectory(compiler.Properties.Include_build_directory)
Liz Kammera4aa4302021-03-18 16:56:36 -0400274}
275
Colin Cross42742b82016-08-01 13:20:05 -0700276func (compiler *baseCompiler) compilerInit(ctx BaseModuleContext) {}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700277
Colin Cross37047f12016-12-13 17:06:13 -0800278func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700279 deps.GeneratedSources = append(deps.GeneratedSources, compiler.Properties.Generated_sources...)
Jooyung Hanac07f882020-07-05 03:54:35 +0900280 deps.GeneratedSources = removeListFromList(deps.GeneratedSources, compiler.Properties.Exclude_generated_sources)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700281 deps.GeneratedHeaders = append(deps.GeneratedHeaders, compiler.Properties.Generated_headers...)
Vinh Tran367d89d2023-04-28 11:21:25 -0400282 deps.AidlLibs = append(deps.AidlLibs, compiler.Properties.Aidl.Libs...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700283
Colin Crossfe17f6f2019-03-28 19:30:56 -0700284 android.ProtoDeps(ctx, &compiler.Proto)
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700285 if compiler.hasSrcExt(".proto") {
Nan Zhang0007d812017-11-07 10:57:05 -0800286 deps = protoDeps(ctx, deps, &compiler.Proto, Bool(compiler.Properties.Proto.Static))
Colin Cross0c461f12016-10-20 16:11:43 -0700287 }
288
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800289 if Bool(compiler.Properties.Openmp) {
290 deps.StaticLibs = append(deps.StaticLibs, "libomp")
291 }
292
Colin Cross4d9c2d12016-07-29 12:48:20 -0700293 return deps
294}
295
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800296// Return true if the module is in the WarningAllowedProjects.
297func warningsAreAllowed(subdir string) bool {
298 subdir += "/"
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800299 return android.HasAnyPrefix(subdir, config.WarningAllowedProjects)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800300}
301
Colin Cross571cccf2019-02-04 11:22:08 -0800302func addToModuleList(ctx ModuleContext, key android.OnceKey, module string) {
303 getNamedMapForConfig(ctx.Config(), key).Store(module, true)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800304}
305
Liz Kammera5a29de2022-05-25 23:19:37 -0400306func useGnuExtensions(gnuExtensions *bool) bool {
307 return proptools.BoolDefault(gnuExtensions, true)
308}
309
Jingwen Chen97b85312021-10-08 10:41:31 +0000310func maybeReplaceGnuToC(gnuExtensions *bool, cStd string, cppStd string) (string, string) {
Liz Kammera5a29de2022-05-25 23:19:37 -0400311 if !useGnuExtensions(gnuExtensions) {
Jingwen Chen97b85312021-10-08 10:41:31 +0000312 cStd = gnuToCReplacer.Replace(cStd)
313 cppStd = gnuToCReplacer.Replace(cppStd)
314 }
315 return cStd, cppStd
316}
317
318func parseCppStd(cppStdPtr *string) string {
319 cppStd := String(cppStdPtr)
320 switch cppStd {
321 case "":
Chris Parsons79bd2b72021-11-29 17:52:41 -0500322 return config.CppStdVersion
Jingwen Chen97b85312021-10-08 10:41:31 +0000323 case "experimental":
Chris Parsons79bd2b72021-11-29 17:52:41 -0500324 return config.ExperimentalCppStdVersion
325 default:
326 return cppStd
Jingwen Chen97b85312021-10-08 10:41:31 +0000327 }
Chris Parsons79bd2b72021-11-29 17:52:41 -0500328}
329
330func parseCStd(cStdPtr *string) string {
331 cStd := String(cStdPtr)
332 switch cStd {
333 case "":
334 return config.CStdVersion
335 case "experimental":
336 return config.ExperimentalCStdVersion
337 default:
338 return cStd
339 }
Jingwen Chen97b85312021-10-08 10:41:31 +0000340}
341
Colin Cross4d9c2d12016-07-29 12:48:20 -0700342// Create a Flags struct that collects the compile flags from global values,
343// per-target values, module type values, and per-module Blueprints properties
Colin Crossf18e1102017-11-16 14:33:08 -0800344func (compiler *baseCompiler) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags {
Colin Crossb98c8b02016-07-29 13:44:28 -0700345 tc := ctx.toolchain()
Colin Crossf96b0012023-10-26 14:01:51 -0700346 modulePath := ctx.ModuleDir()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700347
Colin Cross8a497952019-03-05 22:25:09 -0800348 compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, compiler.Properties.Srcs, compiler.Properties.Exclude_srcs)
Colin Crossf18e1102017-11-16 14:33:08 -0800349 compiler.srcsBeforeGen = append(compiler.srcsBeforeGen, deps.GeneratedSources...)
350
Colin Cross4d9c2d12016-07-29 12:48:20 -0700351 CheckBadCompilerFlags(ctx, "cflags", compiler.Properties.Cflags)
352 CheckBadCompilerFlags(ctx, "cppflags", compiler.Properties.Cppflags)
353 CheckBadCompilerFlags(ctx, "conlyflags", compiler.Properties.Conlyflags)
354 CheckBadCompilerFlags(ctx, "asflags", compiler.Properties.Asflags)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900355 CheckBadCompilerFlags(ctx, "vendor.cflags", compiler.Properties.Target.Vendor.Cflags)
Justin Yun63e9ec72020-10-29 16:49:43 +0900356 CheckBadCompilerFlags(ctx, "product.cflags", compiler.Properties.Target.Product.Cflags)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900357 CheckBadCompilerFlags(ctx, "recovery.cflags", compiler.Properties.Target.Recovery.Cflags)
Christopher Ferrise0202c42023-07-27 17:06:46 -0700358 CheckBadCompilerFlags(ctx, "ramdisk.cflags", compiler.Properties.Target.Ramdisk.Cflags)
Yifan Hong6da33c22020-10-27 15:01:21 -0700359 CheckBadCompilerFlags(ctx, "vendor_ramdisk.cflags", compiler.Properties.Target.Vendor_ramdisk.Cflags)
Jiyong Parka592b6f2021-07-16 16:05:50 +0900360 CheckBadCompilerFlags(ctx, "platform.cflags", compiler.Properties.Target.Platform.Cflags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700361
Colin Cross0b9f31f2019-02-28 11:00:01 -0800362 esc := proptools.NinjaAndShellEscapeList
Colin Cross4b963f82016-09-29 14:06:02 -0700363
Colin Cross4af21ed2019-11-04 09:37:55 -0800364 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Cflags)...)
365 flags.Local.CppFlags = append(flags.Local.CppFlags, esc(compiler.Properties.Cppflags)...)
366 flags.Local.ConlyFlags = append(flags.Local.ConlyFlags, esc(compiler.Properties.Conlyflags)...)
367 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Asflags)...)
368 flags.Local.YasmFlags = append(flags.Local.YasmFlags, esc(compiler.Properties.Asflags)...)
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700369
370 flags.Yacc = compiler.Properties.Yacc
Matthias Maennich22fd4d12020-07-15 10:58:56 +0200371 flags.Lex = compiler.Properties.Lex
Colin Cross4d9c2d12016-07-29 12:48:20 -0700372
373 // Include dir cflags
Colin Cross4d9c2d12016-07-29 12:48:20 -0700374 localIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Local_include_dirs)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700375 if len(localIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700376 f := includeDirsToFlags(localIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800377 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
378 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700379 }
380 rootIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Include_dirs)
381 if len(rootIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700382 f := includeDirsToFlags(rootIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800383 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
384 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700385 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700386
Liz Kammera4aa4302021-03-18 16:56:36 -0400387 if compiler.includeBuildDirectory() {
Yi Kong950e0ba2019-10-08 02:27:17 -0700388 flags.Local.CommonFlags = append(flags.Local.CommonFlags, "-I"+modulePath)
389 flags.Local.YasmFlags = append(flags.Local.YasmFlags, "-I"+modulePath)
Dan Albert899c23e2018-12-06 11:04:03 -0800390 }
Colin Crossc3199482017-03-30 15:03:04 -0700391
Kiyoung Kimaa394802024-01-08 12:55:45 +0900392 if !(ctx.useSdk() || ctx.InVendorOrProduct()) || ctx.Host() {
Colin Cross87dd9632017-11-03 13:31:05 -0700393 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
394 "${config.CommonGlobalIncludes}",
Orion Hodson5cffce12020-05-27 12:47:32 +0000395 tc.IncludeFlags())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700396 }
397
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700398 if ctx.useSdk() {
Dan Albertfac114b2018-11-14 21:22:00 -0800399 // TODO: Switch to --sysroot.
Colin Cross4d9c2d12016-07-29 12:48:20 -0700400 // The NDK headers are installed to a common sysroot. While a more
401 // typical Soong approach would be to only make the headers for the
402 // library you're using available, we're trying to emulate the NDK
403 // behavior here, and the NDK always has all the NDK headers available.
Colin Crossc3199482017-03-30 15:03:04 -0700404 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700405 "-isystem "+getCurrentIncludePath(ctx).String(),
Chih-Hung Hsieh1e7d1bf2018-03-15 18:44:57 -0700406 "-isystem "+getCurrentIncludePath(ctx).Join(ctx, config.NDKTriple(tc)).String())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700407 }
408
Kiyoung Kimaa394802024-01-08 12:55:45 +0900409 if ctx.InVendorOrProduct() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800410 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VNDK__")
Justin Yun13decfb2021-03-08 19:25:55 +0900411 if ctx.inVendor() {
412 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VENDOR__")
Justin Yun41cbb5e2023-11-29 17:58:16 +0900413
414 vendorApiLevel := ctx.Config().VendorApiLevel()
415 if vendorApiLevel == "" {
416 // TODO(b/314036847): This is a fallback for UDC targets.
417 // This must be a build failure when UDC is no longer built
418 // from this source tree.
419 vendorApiLevel = ctx.Config().PlatformSdkVersion().String()
420 }
421 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VENDOR_API__="+vendorApiLevel)
Justin Yun13decfb2021-03-08 19:25:55 +0900422 } else if ctx.inProduct() {
423 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_PRODUCT__")
424 }
Dan Willemsenb916b802017-03-19 13:44:32 -0700425 }
426
Jiyong Parkd54aee52018-06-09 01:32:54 +0900427 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800428 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RECOVERY__")
Jiyong Parkd54aee52018-06-09 01:32:54 +0900429 }
430
David Anderson2c8075c2022-02-16 21:53:13 -0800431 if ctx.inRecovery() || ctx.inRamdisk() || ctx.inVendorRamdisk() {
432 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RAMDISK__")
433 }
434
Colin Crosse07f2312020-08-13 11:24:56 -0700435 if ctx.apexVariationName() != "" {
Jooyung Hanc87a0592020-03-02 17:44:33 +0900436 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_APEX__")
Jiyong Park58e364a2019-01-19 19:24:06 +0900437 }
438
Victor Khimenko1a31f802020-09-17 03:07:31 +0200439 if ctx.Target().NativeBridge == android.NativeBridgeEnabled {
440 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_NATIVE_BRIDGE__")
441 }
442
Nan Zhang0007d812017-11-07 10:57:05 -0800443 instructionSet := String(compiler.Properties.Instruction_set)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700444 if flags.RequiredInstructionSet != "" {
445 instructionSet = flags.RequiredInstructionSet
446 }
Colin Cross33bac242021-07-14 17:03:16 -0700447 instructionSetFlags, err := tc.InstructionSetFlags(instructionSet)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700448 if err != nil {
449 ctx.ModuleErrorf("%s", err)
450 }
451
452 CheckBadCompilerFlags(ctx, "release.cflags", compiler.Properties.Release.Cflags)
453
454 // TODO: debug
Colin Cross4af21ed2019-11-04 09:37:55 -0800455 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Release.Cflags)...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700456
Alix Espinoef47e542022-09-14 19:10:51 +0000457 if !ctx.DeviceConfig().BuildBrokenClangCFlags() && len(compiler.Properties.Clang_cflags) != 0 {
458 ctx.PropertyErrorf("clang_cflags", "property is deprecated, see Changes.md file")
459 } else {
460 CheckBadCompilerFlags(ctx, "clang_cflags", compiler.Properties.Clang_cflags)
461 }
462 if !ctx.DeviceConfig().BuildBrokenClangAsFlags() && len(compiler.Properties.Clang_asflags) != 0 {
463 ctx.PropertyErrorf("clang_asflags", "property is deprecated, see Changes.md file")
464 } else {
465 CheckBadCompilerFlags(ctx, "clang_asflags", compiler.Properties.Clang_asflags)
466 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700467
Colin Cross4af21ed2019-11-04 09:37:55 -0800468 flags.Local.CFlags = config.ClangFilterUnknownCflags(flags.Local.CFlags)
Alix Espinoef47e542022-09-14 19:10:51 +0000469 if !ctx.DeviceConfig().BuildBrokenClangCFlags() {
470 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Clang_cflags)...)
471 }
472 if !ctx.DeviceConfig().BuildBrokenClangAsFlags() {
473 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Clang_asflags)...)
474 }
Colin Cross4af21ed2019-11-04 09:37:55 -0800475 flags.Local.CppFlags = config.ClangFilterUnknownCflags(flags.Local.CppFlags)
476 flags.Local.ConlyFlags = config.ClangFilterUnknownCflags(flags.Local.ConlyFlags)
477 flags.Local.LdFlags = config.ClangFilterUnknownCflags(flags.Local.LdFlags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700478
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700479 target := "-target " + tc.ClangTriple()
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700480 if ctx.Os().Class == android.Device {
Jiyong Parka008fb02021-03-16 17:15:53 +0900481 version := ctx.minSdkVersion()
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700482 if version == "" || version == "current" {
Dan Albert0b176c82020-07-23 16:43:25 -0700483 target += strconv.Itoa(android.FutureApiLevelInt)
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700484 } else {
Vinh Tranf1924742022-06-24 16:40:11 -0400485 apiLevel := nativeApiLevelOrPanic(ctx, version)
Elliott Hughesa19d9592023-12-13 12:10:28 -0800486 target += strconv.Itoa(apiLevel.FinalOrFutureInt())
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700487 }
488 }
489
AdityaK6cfd07e2024-01-31 14:31:20 -0800490 // bpf targets don't need the default target triple. b/308826679
491 if proptools.Bool(compiler.Properties.Bpf_target) {
492 target = "--target=bpf"
493 }
494
Chih-Hung Hsieh57da8262022-02-15 22:48:04 -0800495 flags.Global.CFlags = append(flags.Global.CFlags, target)
496 flags.Global.AsFlags = append(flags.Global.AsFlags, target)
497 flags.Global.LdFlags = append(flags.Global.LdFlags, target)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700498
Colin Crossb98c8b02016-07-29 13:44:28 -0700499 hod := "Host"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700500 if ctx.Os().Class == android.Device {
Colin Crossb98c8b02016-07-29 13:44:28 -0700501 hod = "Device"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700502 }
503
Colin Cross4af21ed2019-11-04 09:37:55 -0800504 flags.Global.CommonFlags = append(flags.Global.CommonFlags, instructionSetFlags)
505 flags.Global.ConlyFlags = append([]string{"${config.CommonGlobalConlyflags}"}, flags.Global.ConlyFlags...)
506 flags.Global.CppFlags = append([]string{fmt.Sprintf("${config.%sGlobalCppflags}", hod)}, flags.Global.CppFlags...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700507
Colin Cross33bac242021-07-14 17:03:16 -0700508 flags.Global.AsFlags = append(flags.Global.AsFlags, tc.Asflags())
Colin Cross0523ba22021-07-14 18:45:05 -0700509 flags.Global.CppFlags = append([]string{"${config.CommonGlobalCppflags}"}, flags.Global.CppFlags...)
AdityaK6cfd07e2024-01-31 14:31:20 -0800510
511 // bpf targets don't need the target specific toolchain cflags. b/308826679
512 if !proptools.Bool(compiler.Properties.Bpf_target) {
513 flags.Global.CommonFlags = append(flags.Global.CommonFlags, tc.Cflags())
514 }
Colin Cross4af21ed2019-11-04 09:37:55 -0800515 flags.Global.CommonFlags = append(flags.Global.CommonFlags,
Colin Cross0523ba22021-07-14 18:45:05 -0700516 "${config.CommonGlobalCflags}",
517 fmt.Sprintf("${config.%sGlobalCflags}", hod))
Colin Cross4d9c2d12016-07-29 12:48:20 -0700518
Chris Wailesb2703ad2021-07-30 13:25:42 -0700519 if android.IsThirdPartyPath(modulePath) {
Colin Cross0523ba22021-07-14 18:45:05 -0700520 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "${config.ExternalCflags}")
Yi Kongcc80f8d2018-06-06 14:42:44 -0700521 }
522
Dan Willemsen10db3842018-10-21 18:42:46 -0700523 if tc.Bionic() {
Colin Cross87dd9632017-11-03 13:31:05 -0700524 if Bool(compiler.Properties.Rtti) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800525 flags.Local.CppFlags = append(flags.Local.CppFlags, "-frtti")
Colin Cross87dd9632017-11-03 13:31:05 -0700526 } else {
Colin Cross4af21ed2019-11-04 09:37:55 -0800527 flags.Local.CppFlags = append(flags.Local.CppFlags, "-fno-rtti")
Colin Cross87dd9632017-11-03 13:31:05 -0700528 }
529 }
530
Liz Kammere4d1bda2022-06-22 21:02:08 +0000531 flags.Global.AsFlags = append(flags.Global.AsFlags, "${config.CommonGlobalAsflags}")
Colin Crosscdcb6802022-06-09 11:07:01 -0700532
Colin Cross33bac242021-07-14 17:03:16 -0700533 flags.Global.CppFlags = append(flags.Global.CppFlags, tc.Cppflags())
Colin Cross87dd9632017-11-03 13:31:05 -0700534
Colin Cross4af21ed2019-11-04 09:37:55 -0800535 flags.Global.YasmFlags = append(flags.Global.YasmFlags, tc.YasmFlags())
Colin Cross87dd9632017-11-03 13:31:05 -0700536
AdityaK6cfd07e2024-01-31 14:31:20 -0800537 // bpf targets don't need the target specific toolchain cflags. b/308826679
538 if !proptools.Bool(compiler.Properties.Bpf_target) {
539 flags.Global.CommonFlags = append(flags.Global.CommonFlags, tc.ToolchainCflags())
540 }
541
Chris Parsons79bd2b72021-11-29 17:52:41 -0500542 cStd := parseCStd(compiler.Properties.C_std)
Jingwen Chen97b85312021-10-08 10:41:31 +0000543 cppStd := parseCppStd(compiler.Properties.Cpp_std)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800544
Jingwen Chen97b85312021-10-08 10:41:31 +0000545 cStd, cppStd = maybeReplaceGnuToC(compiler.Properties.Gnu_extensions, cStd, cppStd)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800546
Colin Cross4af21ed2019-11-04 09:37:55 -0800547 flags.Local.ConlyFlags = append([]string{"-std=" + cStd}, flags.Local.ConlyFlags...)
548 flags.Local.CppFlags = append([]string{"-std=" + cppStd}, flags.Local.CppFlags...)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800549
Justin Yun63e9ec72020-10-29 16:49:43 +0900550 if ctx.inVendor() {
551 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor.Cflags)...)
552 }
553
554 if ctx.inProduct() {
Justin Yun6977e8a2020-10-29 18:24:11 +0900555 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Product.Cflags)...)
Jiyong Parka622de82017-08-10 13:33:27 +0900556 }
557
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900558 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800559 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Recovery.Cflags)...)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900560 }
561
Yifan Hong6da33c22020-10-27 15:01:21 -0700562 if ctx.inVendorRamdisk() {
563 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor_ramdisk.Cflags)...)
564 }
Christopher Ferrise0202c42023-07-27 17:06:46 -0700565 if ctx.inRamdisk() {
566 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Ramdisk.Cflags)...)
567 }
Jiyong Parka592b6f2021-07-16 16:05:50 +0900568 if !ctx.useSdk() {
569 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Platform.Cflags)...)
570 }
Yifan Hong6da33c22020-10-27 15:01:21 -0700571
Colin Cross4d9c2d12016-07-29 12:48:20 -0700572 // We can enforce some rules more strictly in the code we own. strict
573 // indicates if this is code that we can be stricter with. If we have
574 // rules that we want to apply to *our* code (but maybe can't for
575 // vendor/device specific things), we could extend this to be a ternary
576 // value.
577 strict := true
Yi Kong950e0ba2019-10-08 02:27:17 -0700578 if strings.HasPrefix(modulePath, "external/") {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700579 strict = false
580 }
581
582 // Can be used to make some annotations stricter for code we can fix
583 // (such as when we mark functions as deprecated).
584 if strict {
Colin Cross4af21ed2019-11-04 09:37:55 -0800585 flags.Global.CFlags = append(flags.Global.CFlags, "-DANDROID_STRICT")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700586 }
587
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700588 if compiler.hasSrcExt(".proto") {
Colin Cross0c461f12016-10-20 16:11:43 -0700589 flags = protoFlags(ctx, flags, &compiler.Proto)
590 }
591
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700592 if compiler.hasSrcExt(".y") || compiler.hasSrcExt(".yy") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800593 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700594 "-I"+android.PathForModuleGen(ctx, "yacc", ctx.ModuleDir()).String())
595 }
596
Vinh Tran09581952023-05-16 16:03:20 -0400597 if len(compiler.Properties.Aidl.Libs) > 0 &&
598 (len(compiler.Properties.Aidl.Include_dirs) > 0 || len(compiler.Properties.Aidl.Local_include_dirs) > 0) {
599 ctx.ModuleErrorf("aidl.libs and (aidl.include_dirs or aidl.local_include_dirs) can't be set at the same time. For aidl headers, please only use aidl.libs prop")
600 }
601
Vinh Tran367d89d2023-04-28 11:21:25 -0400602 if compiler.hasAidl(deps) {
Jooyung Hane197d8b2021-01-05 10:33:16 +0900603 flags.aidlFlags = append(flags.aidlFlags, compiler.Properties.Aidl.Flags...)
Dan Willemsene1240db2016-11-03 14:28:51 -0700604 if len(compiler.Properties.Aidl.Local_include_dirs) > 0 {
605 localAidlIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Aidl.Local_include_dirs)
606 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(localAidlIncludeDirs))
607 }
608 if len(compiler.Properties.Aidl.Include_dirs) > 0 {
609 rootAidlIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Aidl.Include_dirs)
610 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs))
611 }
612
Vinh Tran367d89d2023-04-28 11:21:25 -0400613 var rootAidlIncludeDirs android.Paths
614 for _, aidlLibraryInfo := range deps.AidlLibraryInfos {
615 rootAidlIncludeDirs = append(rootAidlIncludeDirs, aidlLibraryInfo.IncludeDirs.ToList()...)
616 }
617 if len(rootAidlIncludeDirs) > 0 {
618 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs))
619 }
620
Zim3c3b4162022-09-02 12:45:05 +0100621 if proptools.BoolDefault(compiler.Properties.Aidl.Generate_traces, true) {
Martijn Coeneneab15642018-03-09 09:29:59 +0100622 flags.aidlFlags = append(flags.aidlFlags, "-t")
623 }
624
Jooyung Han07f70c02021-11-06 07:08:45 +0900625 aidlMinSdkVersion := ctx.minSdkVersion()
626 if aidlMinSdkVersion == "" {
627 aidlMinSdkVersion = "platform_apis"
628 }
629 flags.aidlFlags = append(flags.aidlFlags, "--min_sdk_version="+aidlMinSdkVersion)
630
Vinh Tran09581952023-05-16 16:03:20 -0400631 if compiler.hasSrcExt(".aidl") {
632 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
633 "-I"+android.PathForModuleGen(ctx, "aidl").String())
634 }
635 if len(deps.AidlLibraryInfos) > 0 {
636 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
637 "-I"+android.PathForModuleGen(ctx, "aidl_library").String())
638 }
Dan Willemsene1240db2016-11-03 14:28:51 -0700639 }
640
Jeff Vander Stoepd6126272019-07-15 19:08:37 -0700641 if compiler.hasSrcExt(".rscript") || compiler.hasSrcExt(".fs") {
Colin Cross2a252be2017-05-01 17:37:24 -0700642 flags = rsFlags(ctx, flags, &compiler.Properties)
643 }
644
Inseob Kim21f26902018-09-06 00:55:20 +0900645 if compiler.hasSrcExt(".sysprop") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800646 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Inseob Kim21f26902018-09-06 00:55:20 +0900647 "-I"+android.PathForModuleGen(ctx, "sysprop", "include").String())
648 }
649
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800650 if len(compiler.Properties.Srcs) > 0 {
651 module := ctx.ModuleDir() + "/Android.bp:" + ctx.ModuleName()
Colin Cross4af21ed2019-11-04 09:37:55 -0800652 if inList("-Wno-error", flags.Local.CFlags) || inList("-Wno-error", flags.Local.CppFlags) {
Colin Cross571cccf2019-02-04 11:22:08 -0800653 addToModuleList(ctx, modulesUsingWnoErrorKey, module)
Colin Cross4af21ed2019-11-04 09:37:55 -0800654 } else if !inList("-Werror", flags.Local.CFlags) && !inList("-Werror", flags.Local.CppFlags) {
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800655 if warningsAreAllowed(ctx.ModuleDir()) {
Yi Kongde936472022-05-19 20:11:10 +0800656 addToModuleList(ctx, modulesWarningsAllowedKey, module)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800657 } else {
Elliott Hughesed4a27b2022-05-18 13:15:00 -0700658 flags.Local.CFlags = append([]string{"-Werror"}, flags.Local.CFlags...)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800659 }
660 }
661 }
662
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800663 if Bool(compiler.Properties.Openmp) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800664 flags.Local.CFlags = append(flags.Local.CFlags, "-fopenmp")
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800665 }
666
Colin Cross440e0d02020-06-11 11:32:11 -0700667 // Exclude directories from manual binder interface allowed list.
Ivan Lozanod094d402019-11-26 10:32:50 -0800668 //TODO(b/145621474): Move this check into IInterface.h when clang-tidy no longer uses absolute paths.
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800669 if android.HasAnyPrefix(ctx.ModuleDir(), allowedManualInterfacePaths) {
Ivan Lozanod094d402019-11-26 10:32:50 -0800670 flags.Local.CFlags = append(flags.Local.CFlags, "-DDO_NOT_CHECK_MANUAL_BINDER_INTERFACES")
671 }
672
Luis Useche342fa6b2024-04-01 19:33:18 -0700673 flags.NoOverrideFlags = append(flags.NoOverrideFlags, "${config.NoOverrideGlobalCflags}")
674
675 if flags.Toolchain.Is64Bit() {
676 flags.NoOverrideFlags = append(flags.NoOverrideFlags, "${config.NoOverride64GlobalCflags}")
677 }
678
679 if android.IsThirdPartyPath(ctx.ModuleDir()) {
680 flags.NoOverrideFlags = append(flags.NoOverrideFlags, "${config.NoOverrideExternalGlobalCflags}")
681 }
682
Colin Cross4d9c2d12016-07-29 12:48:20 -0700683 return flags
684}
685
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700686func (compiler *baseCompiler) hasSrcExt(ext string) bool {
Colin Crossf18e1102017-11-16 14:33:08 -0800687 for _, src := range compiler.srcsBeforeGen {
688 if src.Ext() == ext {
689 return true
690 }
691 }
Colin Cross0c461f12016-10-20 16:11:43 -0700692 for _, src := range compiler.Properties.Srcs {
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700693 if filepath.Ext(src) == ext {
Colin Cross0c461f12016-10-20 16:11:43 -0700694 return true
695 }
696 }
Colin Cross10d22312017-05-03 11:01:58 -0700697 for _, src := range compiler.Properties.OriginalSrcs {
698 if filepath.Ext(src) == ext {
699 return true
700 }
701 }
Colin Cross0c461f12016-10-20 16:11:43 -0700702
703 return false
704}
705
Yifan Hongf2ede7a2020-09-09 18:48:40 -0700706var invalidDefineCharRegex = regexp.MustCompile("[^a-zA-Z0-9_]")
707
Jooyung Han77988572019-10-18 16:26:16 +0900708// makeDefineString transforms a name of an APEX module into a value to be used as value for C define
709// For example, com.android.foo => COM_ANDROID_FOO
710func makeDefineString(name string) string {
Yifan Hongf2ede7a2020-09-09 18:48:40 -0700711 return invalidDefineCharRegex.ReplaceAllString(strings.ToUpper(name), "_")
Jooyung Han77988572019-10-18 16:26:16 +0900712}
713
Colin Cross948f0cb2016-10-17 14:24:56 -0700714var gnuToCReplacer = strings.NewReplacer("gnu", "c")
715
Colin Cross4d9c2d12016-07-29 12:48:20 -0700716func ndkPathDeps(ctx ModuleContext) android.Paths {
Dan Albert92fe7402020-07-15 13:33:30 -0700717 if ctx.Module().(*Module).IsSdkVariant() {
Chih-Hung Hsiehf6ca1b92021-12-05 18:02:50 -0800718 // The NDK sysroot timestamp file depends on all the NDK sysroot header files
719 // for compiling src to obj files.
720 return android.Paths{getNdkHeadersTimestampFile(ctx)}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700721 }
722 return nil
723}
724
Vinh Tran367d89d2023-04-28 11:21:25 -0400725func (compiler *baseCompiler) hasAidl(deps PathDeps) bool {
726 return len(deps.AidlLibraryInfos) > 0 || compiler.hasSrcExt(".aidl")
727}
728
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700729func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
Inseob Kimd110f872019-12-06 13:15:38 +0900730 pathDeps := deps.GeneratedDeps
Colin Cross4d9c2d12016-07-29 12:48:20 -0700731 pathDeps = append(pathDeps, ndkPathDeps(ctx)...)
Colin Cross2f336352016-10-26 10:03:47 -0700732
Colin Cross2f336352016-10-26 10:03:47 -0700733 buildFlags := flagsToBuilderFlags(flags)
734
Colin Crossf18e1102017-11-16 14:33:08 -0800735 srcs := append(android.Paths(nil), compiler.srcsBeforeGen...)
736
Vinh Tran367d89d2023-04-28 11:21:25 -0400737 srcs, genDeps, info := genSources(ctx, deps.AidlLibraryInfos, srcs, buildFlags)
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800738 pathDeps = append(pathDeps, genDeps...)
Colin Cross2f336352016-10-26 10:03:47 -0700739
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800740 compiler.pathDeps = pathDeps
Paul Duffin33056e82021-02-19 13:49:08 +0000741 compiler.generatedSourceInfo = info
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800742 compiler.cFlagsDeps = flags.CFlagsDeps
Colin Cross2f336352016-10-26 10:03:47 -0700743
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800744 // Save src, buildFlags and context
745 compiler.srcs = srcs
746
Colin Cross4d9c2d12016-07-29 12:48:20 -0700747 // Compile files listed in c.Properties.Srcs into objects
Chih-Hung Hsieh769a51c2021-09-17 17:18:39 -0700748 objs := compileObjs(ctx, buildFlags, "", srcs,
JaeMan Park3dba4d22024-01-05 15:29:48 +0900749 append(android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_disabled_srcs), compiler.generatedSources...),
Chih-Hung Hsieh9db8a0c2022-02-17 12:54:45 -0800750 android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_timeout_srcs),
Chih-Hung Hsieh769a51c2021-09-17 17:18:39 -0700751 pathDeps, compiler.cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700752
753 if ctx.Failed() {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700754 return Objects{}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700755 }
756
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700757 return objs
Colin Cross4d9c2d12016-07-29 12:48:20 -0700758}
759
760// Compile a list of source files into objects a specified subdirectory
Chih-Hung Hsieh7540a782022-01-08 19:56:09 -0800761func compileObjs(ctx ModuleContext, flags builderFlags, subdir string,
Chih-Hung Hsieh9db8a0c2022-02-17 12:54:45 -0800762 srcFiles, noTidySrcs, timeoutTidySrcs, pathDeps android.Paths, cFlagsDeps android.Paths) Objects {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700763
Chih-Hung Hsieh9db8a0c2022-02-17 12:54:45 -0800764 return transformSourceToObj(ctx, subdir, srcFiles, noTidySrcs, timeoutTidySrcs, flags, pathDeps, cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700765}
Yi Kong950e0ba2019-10-08 02:27:17 -0700766
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400767// Properties for rust_bindgen related to generating rust bindings.
768// This exists here so these properties can be included in a cc_default
769// which can be used in both cc and rust modules.
770type RustBindgenClangProperties struct {
771 // list of directories relative to the Blueprints file that will
772 // be added to the include path using -I
773 Local_include_dirs []string `android:"arch_variant,variant_prepend"`
774
775 // list of static libraries that provide headers for this binding.
776 Static_libs []string `android:"arch_variant,variant_prepend"`
777
778 // list of shared libraries that provide headers for this binding.
779 Shared_libs []string `android:"arch_variant"`
780
Ivan Lozano9b443832020-11-17 13:39:30 -0500781 // List of libraries which export include paths required for this module
782 Header_libs []string `android:"arch_variant,variant_prepend"`
783
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400784 // list of clang flags required to correctly interpret the headers.
785 Cflags []string `android:"arch_variant"`
786
787 // list of c++ specific clang flags required to correctly interpret the headers.
788 // This is provided primarily to make sure cppflags defined in cc_defaults are pulled in.
789 Cppflags []string `android:"arch_variant"`
790
791 // C standard version to use. Can be a specific version (such as "gnu11"),
792 // "experimental" (which will use draft versions like C1x when available),
793 // or the empty string (which will use the default).
794 //
795 // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this
796 // to "default" will use the build system default version. This cannot be set at the same time as cpp_std.
797 C_std *string
798
799 // C++ standard version to use. Can be a specific version (such as
800 // "gnu++11"), "experimental" (which will use draft versions like C++1z when
801 // available), or the empty string (which will use the default).
802 //
803 // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this
804 // to "default" will use the build system default version. This cannot be set at the same time as c_std.
805 Cpp_std *string
806
807 //TODO(b/161141999) Add support for headers from cc_library_header modules.
808}