blob: 88d97aac8a5cbfc06104a0692eb73e5b75024a1d [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".
Cole Faust96a692b2024-08-08 14:47:51 -070040 Srcs proptools.Configurable[[]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
Cole Faust96a692b2024-08-08 14:47:51 -070050 Exclude_srcs proptools.Configurable[[]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.
Cole Fauste96c16a2024-06-13 14:51:14 -070053 Cflags proptools.Configurable[[]string] `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070054
55 // list of module-specific flags that will be used for C++ compiles
Aleks Todorov0384c972024-07-26 13:41:13 +010056 Cppflags proptools.Configurable[[]string] `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070057
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.
Aleks Todorov93b6dd02024-06-14 16:55:12 +0100101 Generated_headers proptools.Configurable[[]string] `android:"arch_variant,variant_prepend"`
Colin Cross4d9c2d12016-07-29 12:48:20 -0700102
Cole Faust65cb40a2024-10-21 15:41:42 -0700103 // Same as generated_headers, but the dependencies will be added based on the first supported
104 // arch variant and the device os variant. This can be useful for creating a host tool that
105 // embeds a copy of a device tool, that it then extracts and pushes to a device at runtime.
106 Device_first_generated_headers proptools.Configurable[[]string] `android:"arch_variant,variant_prepend"`
107
Colin Cross4d9c2d12016-07-29 12:48:20 -0700108 // pass -frtti instead of -fno-rtti
Frederick Mayle7833af12024-06-07 16:02:44 -0700109 Rtti *bool `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -0700110
Dan Albert043833c2017-02-03 16:13:38 -0800111 // C standard version to use. Can be a specific version (such as "gnu11"),
112 // "experimental" (which will use draft versions like C1x when available),
113 // or the empty string (which will use the default).
Nan Zhang0007d812017-11-07 10:57:05 -0800114 C_std *string
Dan Albert043833c2017-02-03 16:13:38 -0800115
116 // C++ standard version to use. Can be a specific version (such as
117 // "gnu++11"), "experimental" (which will use draft versions like C++1z when
118 // available), or the empty string (which will use the default).
Nan Zhang0007d812017-11-07 10:57:05 -0800119 Cpp_std *string
Dan Albert043833c2017-02-03 16:13:38 -0800120
Colin Cross948f0cb2016-10-17 14:24:56 -0700121 // if set to false, use -std=c++* instead of -std=gnu++*
122 Gnu_extensions *bool
123
AdityaK6cfd07e2024-01-31 14:31:20 -0800124 // cc Build rules targeting BPF must set this to true. The correct fix is to
125 // ban targeting bpf in cc rules instead use bpf_rules. (b/323415017)
126 Bpf_target *bool
127
kellyhungd62ea302024-05-19 21:16:07 +0800128 // Add "-Xclang -verify" to the cflags and appends "touch $out" to
129 // the clang command line.
130 Clang_verify bool
131
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700132 Yacc *YaccProperties
Matthias Maennich22fd4d12020-07-15 10:58:56 +0200133 Lex *LexProperties
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700134
Dan Willemsene1240db2016-11-03 14:28:51 -0700135 Aidl struct {
Vinh Tran367d89d2023-04-28 11:21:25 -0400136 // List of aidl_library modules
137 Libs []string
138
Dan Willemsene1240db2016-11-03 14:28:51 -0700139 // list of directories that will be added to the aidl include paths.
140 Include_dirs []string
141
142 // list of directories relative to the Blueprints file that will
143 // be added to the aidl include paths.
144 Local_include_dirs []string
Martijn Coeneneab15642018-03-09 09:29:59 +0100145
146 // whether to generate traces (for systrace) for this interface
147 Generate_traces *bool
Jooyung Hane197d8b2021-01-05 10:33:16 +0900148
149 // list of flags that will be passed to the AIDL compiler
150 Flags []string
Dan Willemsene1240db2016-11-03 14:28:51 -0700151 }
152
Tomasz Wasilczyk5b007ea2024-04-25 11:19:37 -0700153 // Populated by aidl_interface CPP backend to let other modules (e.g. cc_cmake_snapshot)
154 // access actual source files and not generated cpp intermediary sources.
155 AidlInterface struct {
156 // list of aidl_interface sources
157 Sources []string `blueprint:"mutated"`
158
Tomasz Wasilczyk1e831bf2024-05-10 15:15:21 -0700159 // root directory of AIDL sources
160 AidlRoot string `blueprint:"mutated"`
161
Tomasz Wasilczyk5b007ea2024-04-25 11:19:37 -0700162 // AIDL backend language (e.g. "cpp", "ndk")
163 Lang string `blueprint:"mutated"`
164
165 // list of flags passed to AIDL generator
166 Flags []string `blueprint:"mutated"`
167 } `blueprint:"mutated"`
168
Colin Cross2a252be2017-05-01 17:37:24 -0700169 Renderscript struct {
170 // list of directories that will be added to the llvm-rs-cc include paths
171 Include_dirs []string
172
173 // list of flags that will be passed to llvm-rs-cc
174 Flags []string
175
176 // Renderscript API level to target
177 Target_api *string
178 }
179
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700180 Target struct {
Justin Yun63e9ec72020-10-29 16:49:43 +0900181 Vendor, Product struct {
182 // list of source files that should only be used in vendor or
183 // product variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800184 Srcs []string `android:"path"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700185
Justin Yun63e9ec72020-10-29 16:49:43 +0900186 // list of source files that should not be used to build vendor
187 // or product variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800188 Exclude_srcs []string `android:"path"`
Jiyong Parka622de82017-08-10 13:33:27 +0900189
Justin Yun63e9ec72020-10-29 16:49:43 +0900190 // List of additional cflags that should be used to build vendor
191 // or product variant of the C/C++ module.
Jiyong Parka622de82017-08-10 13:33:27 +0900192 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900193
Justin Yun63e9ec72020-10-29 16:49:43 +0900194 // list of generated sources that should not be used to build
195 // vendor or product variant of the C/C++ module.
Jooyung Hanac07f882020-07-05 03:54:35 +0900196 Exclude_generated_sources []string
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700197 }
Jiyong Parkf9332f12018-02-01 00:54:12 +0900198 Recovery struct {
199 // list of source files that should only be used in the
200 // recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800201 Srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900202
203 // list of source files that should not be used to
204 // build the recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800205 Exclude_srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900206
207 // List of additional cflags that should be used to build the recovery
208 // variant of the C/C++ module.
209 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900210
211 // list of generated sources that should not be used to
212 // build the recovery variant of the C/C++ module.
213 Exclude_generated_sources []string
Jiyong Parkf9332f12018-02-01 00:54:12 +0900214 }
Christopher Ferrise0202c42023-07-27 17:06:46 -0700215 Ramdisk, Vendor_ramdisk struct {
Yifan Hong6da33c22020-10-27 15:01:21 -0700216 // list of source files that should not be used to
Christopher Ferrise0202c42023-07-27 17:06:46 -0700217 // build the ramdisk variants of the C/C++ module.
Yifan Hong6da33c22020-10-27 15:01:21 -0700218 Exclude_srcs []string `android:"path"`
219
Christopher Ferrise0202c42023-07-27 17:06:46 -0700220 // List of additional cflags that should be used to build the ramdisk
221 // variants of the C/C++ module.
Yifan Hong6da33c22020-10-27 15:01:21 -0700222 Cflags []string
223 }
Jiyong Parka592b6f2021-07-16 16:05:50 +0900224 Platform struct {
225 // List of additional cflags that should be used to build the platform
226 // variant of the C/C++ module.
227 Cflags []string
228 }
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700229 }
Colin Cross10d22312017-05-03 11:01:58 -0700230
Colin Cross38f794e2017-09-07 10:53:07 -0700231 Proto struct {
232 // Link statically against the protobuf runtime
Nan Zhang0007d812017-11-07 10:57:05 -0800233 Static *bool `android:"arch_variant"`
Colin Cross38f794e2017-09-07 10:53:07 -0700234 } `android:"arch_variant"`
235
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800236 // Build and link with OpenMP
237 Openmp *bool `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -0700238}
239
Colin Crossb916a382016-07-29 17:28:03 -0700240func NewBaseCompiler() *baseCompiler {
241 return &baseCompiler{}
242}
243
Colin Cross4d9c2d12016-07-29 12:48:20 -0700244type baseCompiler struct {
245 Properties BaseCompilerProperties
Colin Cross38f794e2017-09-07 10:53:07 -0700246 Proto android.ProtoProperties
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800247 cFlagsDeps android.Paths
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800248 pathDeps android.Paths
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800249 flags builderFlags
Colin Crossf18e1102017-11-16 14:33:08 -0800250
251 // Sources that were passed to the C/C++ compiler
252 srcs android.Paths
253
254 // Sources that were passed in the Android.bp file, including generated sources generated by
255 // other modules and filegroups. May include source files that have not yet been translated to
256 // C/C++ (.aidl, .proto, etc.)
257 srcsBeforeGen android.Paths
Paul Duffin33056e82021-02-19 13:49:08 +0000258
259 generatedSourceInfo
Colin Cross4d9c2d12016-07-29 12:48:20 -0700260}
261
262var _ compiler = (*baseCompiler)(nil)
263
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800264type CompiledInterface interface {
265 Srcs() android.Paths
266}
267
268func (compiler *baseCompiler) Srcs() android.Paths {
Nan Zhange42777a2018-03-27 16:19:42 -0700269 return append(android.Paths{}, compiler.srcs...)
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800270}
271
Colin Cross4d9c2d12016-07-29 12:48:20 -0700272func (compiler *baseCompiler) appendCflags(flags []string) {
Cole Fauste96c16a2024-06-13 14:51:14 -0700273 compiler.Properties.Cflags.AppendSimpleValue(flags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700274}
275
276func (compiler *baseCompiler) appendAsflags(flags []string) {
277 compiler.Properties.Asflags = append(compiler.Properties.Asflags, flags...)
278}
279
Colin Cross42742b82016-08-01 13:20:05 -0700280func (compiler *baseCompiler) compilerProps() []interface{} {
Colin Cross0feb1692016-11-03 14:38:52 -0700281 return []interface{}{&compiler.Properties, &compiler.Proto}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700282}
283
Hao Chen1c8ea5b2023-10-20 23:03:45 +0000284func (compiler *baseCompiler) baseCompilerProps() BaseCompilerProperties {
285 return compiler.Properties
286}
287
Liz Kammer135bf552021-08-11 10:46:06 -0400288func includeBuildDirectory(prop *bool) bool {
289 return proptools.BoolDefault(prop, true)
290}
291
Liz Kammera4aa4302021-03-18 16:56:36 -0400292func (compiler *baseCompiler) includeBuildDirectory() bool {
Liz Kammer135bf552021-08-11 10:46:06 -0400293 return includeBuildDirectory(compiler.Properties.Include_build_directory)
Liz Kammera4aa4302021-03-18 16:56:36 -0400294}
295
Colin Cross42742b82016-08-01 13:20:05 -0700296func (compiler *baseCompiler) compilerInit(ctx BaseModuleContext) {}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700297
Colin Cross37047f12016-12-13 17:06:13 -0800298func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700299 deps.GeneratedSources = append(deps.GeneratedSources, compiler.Properties.Generated_sources...)
Jooyung Hanac07f882020-07-05 03:54:35 +0900300 deps.GeneratedSources = removeListFromList(deps.GeneratedSources, compiler.Properties.Exclude_generated_sources)
Aleks Todorov93b6dd02024-06-14 16:55:12 +0100301 deps.GeneratedHeaders = append(deps.GeneratedHeaders, compiler.Properties.Generated_headers.GetOrDefault(ctx, nil)...)
Cole Faust65cb40a2024-10-21 15:41:42 -0700302 deps.DeviceFirstGeneratedHeaders = append(deps.DeviceFirstGeneratedHeaders, compiler.Properties.Device_first_generated_headers.GetOrDefault(ctx, nil)...)
Vinh Tran367d89d2023-04-28 11:21:25 -0400303 deps.AidlLibs = append(deps.AidlLibs, compiler.Properties.Aidl.Libs...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700304
Colin Crossfe17f6f2019-03-28 19:30:56 -0700305 android.ProtoDeps(ctx, &compiler.Proto)
Cole Faust96a692b2024-08-08 14:47:51 -0700306 if compiler.hasSrcExt(ctx, ".proto") {
Nan Zhang0007d812017-11-07 10:57:05 -0800307 deps = protoDeps(ctx, deps, &compiler.Proto, Bool(compiler.Properties.Proto.Static))
Colin Cross0c461f12016-10-20 16:11:43 -0700308 }
309
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800310 if Bool(compiler.Properties.Openmp) {
311 deps.StaticLibs = append(deps.StaticLibs, "libomp")
312 }
313
Colin Cross4d9c2d12016-07-29 12:48:20 -0700314 return deps
315}
316
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800317// Return true if the module is in the WarningAllowedProjects.
318func warningsAreAllowed(subdir string) bool {
319 subdir += "/"
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800320 return android.HasAnyPrefix(subdir, config.WarningAllowedProjects)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800321}
322
Colin Cross571cccf2019-02-04 11:22:08 -0800323func addToModuleList(ctx ModuleContext, key android.OnceKey, module string) {
324 getNamedMapForConfig(ctx.Config(), key).Store(module, true)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800325}
326
Liz Kammera5a29de2022-05-25 23:19:37 -0400327func useGnuExtensions(gnuExtensions *bool) bool {
328 return proptools.BoolDefault(gnuExtensions, true)
329}
330
Jingwen Chen97b85312021-10-08 10:41:31 +0000331func maybeReplaceGnuToC(gnuExtensions *bool, cStd string, cppStd string) (string, string) {
Liz Kammera5a29de2022-05-25 23:19:37 -0400332 if !useGnuExtensions(gnuExtensions) {
Jingwen Chen97b85312021-10-08 10:41:31 +0000333 cStd = gnuToCReplacer.Replace(cStd)
334 cppStd = gnuToCReplacer.Replace(cppStd)
335 }
336 return cStd, cppStd
337}
338
339func parseCppStd(cppStdPtr *string) string {
340 cppStd := String(cppStdPtr)
341 switch cppStd {
342 case "":
Chris Parsons79bd2b72021-11-29 17:52:41 -0500343 return config.CppStdVersion
Jingwen Chen97b85312021-10-08 10:41:31 +0000344 case "experimental":
Chris Parsons79bd2b72021-11-29 17:52:41 -0500345 return config.ExperimentalCppStdVersion
346 default:
347 return cppStd
Jingwen Chen97b85312021-10-08 10:41:31 +0000348 }
Chris Parsons79bd2b72021-11-29 17:52:41 -0500349}
350
351func parseCStd(cStdPtr *string) string {
352 cStd := String(cStdPtr)
353 switch cStd {
354 case "":
355 return config.CStdVersion
356 case "experimental":
357 return config.ExperimentalCStdVersion
358 default:
359 return cStd
360 }
Jingwen Chen97b85312021-10-08 10:41:31 +0000361}
362
Colin Cross4d9c2d12016-07-29 12:48:20 -0700363// Create a Flags struct that collects the compile flags from global values,
364// per-target values, module type values, and per-module Blueprints properties
Colin Crossf18e1102017-11-16 14:33:08 -0800365func (compiler *baseCompiler) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags {
Colin Crossb98c8b02016-07-29 13:44:28 -0700366 tc := ctx.toolchain()
Colin Crossf96b0012023-10-26 14:01:51 -0700367 modulePath := ctx.ModuleDir()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700368
Colin Cross7297f052024-10-01 14:02:50 -0700369 reuseObjs := false
370 if len(ctx.GetDirectDepsWithTag(reuseObjTag)) > 0 {
371 reuseObjs = true
372 }
373
374 // If a reuseObjTag dependency exists then this module is reusing the objects (generally the shared variant
375 // reusing objects from the static variant), and doesn't need to compile any sources of its own.
376 var srcs []string
377 if !reuseObjs {
378 srcs = compiler.Properties.Srcs.GetOrDefault(ctx, nil)
379 exclude_srcs := compiler.Properties.Exclude_srcs.GetOrDefault(ctx, nil)
380 compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, srcs, exclude_srcs)
381 compiler.srcsBeforeGen = append(compiler.srcsBeforeGen, deps.GeneratedSources...)
382 }
Colin Crossf18e1102017-11-16 14:33:08 -0800383
Cole Fauste96c16a2024-06-13 14:51:14 -0700384 cflags := compiler.Properties.Cflags.GetOrDefault(ctx, nil)
Aleks Todorov0384c972024-07-26 13:41:13 +0100385 cppflags := compiler.Properties.Cppflags.GetOrDefault(ctx, nil)
Cole Fauste96c16a2024-06-13 14:51:14 -0700386 CheckBadCompilerFlags(ctx, "cflags", cflags)
Aleks Todorov0384c972024-07-26 13:41:13 +0100387 CheckBadCompilerFlags(ctx, "cppflags", cppflags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700388 CheckBadCompilerFlags(ctx, "conlyflags", compiler.Properties.Conlyflags)
389 CheckBadCompilerFlags(ctx, "asflags", compiler.Properties.Asflags)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900390 CheckBadCompilerFlags(ctx, "vendor.cflags", compiler.Properties.Target.Vendor.Cflags)
Justin Yun63e9ec72020-10-29 16:49:43 +0900391 CheckBadCompilerFlags(ctx, "product.cflags", compiler.Properties.Target.Product.Cflags)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900392 CheckBadCompilerFlags(ctx, "recovery.cflags", compiler.Properties.Target.Recovery.Cflags)
Christopher Ferrise0202c42023-07-27 17:06:46 -0700393 CheckBadCompilerFlags(ctx, "ramdisk.cflags", compiler.Properties.Target.Ramdisk.Cflags)
Yifan Hong6da33c22020-10-27 15:01:21 -0700394 CheckBadCompilerFlags(ctx, "vendor_ramdisk.cflags", compiler.Properties.Target.Vendor_ramdisk.Cflags)
Jiyong Parka592b6f2021-07-16 16:05:50 +0900395 CheckBadCompilerFlags(ctx, "platform.cflags", compiler.Properties.Target.Platform.Cflags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700396
Colin Cross0b9f31f2019-02-28 11:00:01 -0800397 esc := proptools.NinjaAndShellEscapeList
Colin Cross4b963f82016-09-29 14:06:02 -0700398
Cole Fauste96c16a2024-06-13 14:51:14 -0700399 flags.Local.CFlags = append(flags.Local.CFlags, esc(cflags)...)
Aleks Todorov0384c972024-07-26 13:41:13 +0100400 flags.Local.CppFlags = append(flags.Local.CppFlags, esc(cppflags)...)
Colin Cross4af21ed2019-11-04 09:37:55 -0800401 flags.Local.ConlyFlags = append(flags.Local.ConlyFlags, esc(compiler.Properties.Conlyflags)...)
402 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Asflags)...)
403 flags.Local.YasmFlags = append(flags.Local.YasmFlags, esc(compiler.Properties.Asflags)...)
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700404
405 flags.Yacc = compiler.Properties.Yacc
Matthias Maennich22fd4d12020-07-15 10:58:56 +0200406 flags.Lex = compiler.Properties.Lex
Colin Cross4d9c2d12016-07-29 12:48:20 -0700407
kellyhungd62ea302024-05-19 21:16:07 +0800408 flags.ClangVerify = compiler.Properties.Clang_verify
409 if compiler.Properties.Clang_verify {
410 flags.Local.CFlags = append(flags.Local.CFlags, "-Xclang", "-verify")
411 }
412
Colin Cross4d9c2d12016-07-29 12:48:20 -0700413 // Include dir cflags
Colin Cross4d9c2d12016-07-29 12:48:20 -0700414 localIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Local_include_dirs)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700415 if len(localIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700416 f := includeDirsToFlags(localIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800417 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
418 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700419 }
420 rootIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Include_dirs)
421 if len(rootIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700422 f := includeDirsToFlags(rootIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800423 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
424 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700425 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700426
Liz Kammera4aa4302021-03-18 16:56:36 -0400427 if compiler.includeBuildDirectory() {
Yi Kong950e0ba2019-10-08 02:27:17 -0700428 flags.Local.CommonFlags = append(flags.Local.CommonFlags, "-I"+modulePath)
429 flags.Local.YasmFlags = append(flags.Local.YasmFlags, "-I"+modulePath)
Dan Albert899c23e2018-12-06 11:04:03 -0800430 }
Colin Crossc3199482017-03-30 15:03:04 -0700431
Kiyoung Kimaa394802024-01-08 12:55:45 +0900432 if !(ctx.useSdk() || ctx.InVendorOrProduct()) || ctx.Host() {
Colin Cross87dd9632017-11-03 13:31:05 -0700433 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
434 "${config.CommonGlobalIncludes}",
Orion Hodson5cffce12020-05-27 12:47:32 +0000435 tc.IncludeFlags())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700436 }
437
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700438 if ctx.useSdk() {
Dan Albertfac114b2018-11-14 21:22:00 -0800439 // TODO: Switch to --sysroot.
Colin Cross4d9c2d12016-07-29 12:48:20 -0700440 // The NDK headers are installed to a common sysroot. While a more
441 // typical Soong approach would be to only make the headers for the
442 // library you're using available, we're trying to emulate the NDK
443 // behavior here, and the NDK always has all the NDK headers available.
Colin Crossc3199482017-03-30 15:03:04 -0700444 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700445 "-isystem "+getCurrentIncludePath(ctx).String(),
Chih-Hung Hsieh1e7d1bf2018-03-15 18:44:57 -0700446 "-isystem "+getCurrentIncludePath(ctx).Join(ctx, config.NDKTriple(tc)).String())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700447 }
448
Kiyoung Kimaa394802024-01-08 12:55:45 +0900449 if ctx.InVendorOrProduct() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800450 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VNDK__")
Justin Yun13decfb2021-03-08 19:25:55 +0900451 if ctx.inVendor() {
452 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VENDOR__")
453 } else if ctx.inProduct() {
454 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_PRODUCT__")
455 }
Justin Yun791d4222024-09-24 11:10:49 +0900456
457 // Define __ANDROID_VENDOR_API__ for both product and vendor variants
458 // because they both use the same LLNDK libraries.
459 vendorApiLevel := ctx.Config().VendorApiLevel()
460 if vendorApiLevel == "" {
461 // TODO(b/314036847): This is a fallback for UDC targets.
462 // This must be a build failure when UDC is no longer built
463 // from this source tree.
464 vendorApiLevel = ctx.Config().PlatformSdkVersion().String()
465 }
466 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VENDOR_API__="+vendorApiLevel)
Dan Willemsenb916b802017-03-19 13:44:32 -0700467 }
468
Jiyong Parkd54aee52018-06-09 01:32:54 +0900469 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800470 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RECOVERY__")
Jiyong Parkd54aee52018-06-09 01:32:54 +0900471 }
472
David Anderson2c8075c2022-02-16 21:53:13 -0800473 if ctx.inRecovery() || ctx.inRamdisk() || ctx.inVendorRamdisk() {
474 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RAMDISK__")
475 }
476
Colin Crosse07f2312020-08-13 11:24:56 -0700477 if ctx.apexVariationName() != "" {
Jooyung Hanc87a0592020-03-02 17:44:33 +0900478 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_APEX__")
Jiyong Park58e364a2019-01-19 19:24:06 +0900479 }
480
Victor Khimenko1a31f802020-09-17 03:07:31 +0200481 if ctx.Target().NativeBridge == android.NativeBridgeEnabled {
482 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_NATIVE_BRIDGE__")
483 }
484
Nan Zhang0007d812017-11-07 10:57:05 -0800485 instructionSet := String(compiler.Properties.Instruction_set)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700486 if flags.RequiredInstructionSet != "" {
487 instructionSet = flags.RequiredInstructionSet
488 }
Colin Cross33bac242021-07-14 17:03:16 -0700489 instructionSetFlags, err := tc.InstructionSetFlags(instructionSet)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700490 if err != nil {
491 ctx.ModuleErrorf("%s", err)
492 }
493
Alix Espinoef47e542022-09-14 19:10:51 +0000494 if !ctx.DeviceConfig().BuildBrokenClangCFlags() && len(compiler.Properties.Clang_cflags) != 0 {
495 ctx.PropertyErrorf("clang_cflags", "property is deprecated, see Changes.md file")
496 } else {
497 CheckBadCompilerFlags(ctx, "clang_cflags", compiler.Properties.Clang_cflags)
498 }
499 if !ctx.DeviceConfig().BuildBrokenClangAsFlags() && len(compiler.Properties.Clang_asflags) != 0 {
500 ctx.PropertyErrorf("clang_asflags", "property is deprecated, see Changes.md file")
501 } else {
502 CheckBadCompilerFlags(ctx, "clang_asflags", compiler.Properties.Clang_asflags)
503 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700504
Colin Cross4af21ed2019-11-04 09:37:55 -0800505 flags.Local.CFlags = config.ClangFilterUnknownCflags(flags.Local.CFlags)
Alix Espinoef47e542022-09-14 19:10:51 +0000506 if !ctx.DeviceConfig().BuildBrokenClangCFlags() {
507 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Clang_cflags)...)
508 }
509 if !ctx.DeviceConfig().BuildBrokenClangAsFlags() {
510 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Clang_asflags)...)
511 }
Colin Cross4af21ed2019-11-04 09:37:55 -0800512 flags.Local.CppFlags = config.ClangFilterUnknownCflags(flags.Local.CppFlags)
513 flags.Local.ConlyFlags = config.ClangFilterUnknownCflags(flags.Local.ConlyFlags)
514 flags.Local.LdFlags = config.ClangFilterUnknownCflags(flags.Local.LdFlags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700515
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700516 target := "-target " + tc.ClangTriple()
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700517 if ctx.Os().Class == android.Device {
Jiyong Parka008fb02021-03-16 17:15:53 +0900518 version := ctx.minSdkVersion()
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700519 if version == "" || version == "current" {
Dan Albert0b176c82020-07-23 16:43:25 -0700520 target += strconv.Itoa(android.FutureApiLevelInt)
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700521 } else {
Vinh Tranf1924742022-06-24 16:40:11 -0400522 apiLevel := nativeApiLevelOrPanic(ctx, version)
Elliott Hughesa19d9592023-12-13 12:10:28 -0800523 target += strconv.Itoa(apiLevel.FinalOrFutureInt())
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700524 }
525 }
526
AdityaK6cfd07e2024-01-31 14:31:20 -0800527 // bpf targets don't need the default target triple. b/308826679
528 if proptools.Bool(compiler.Properties.Bpf_target) {
529 target = "--target=bpf"
530 }
531
Chih-Hung Hsieh57da8262022-02-15 22:48:04 -0800532 flags.Global.CFlags = append(flags.Global.CFlags, target)
533 flags.Global.AsFlags = append(flags.Global.AsFlags, target)
534 flags.Global.LdFlags = append(flags.Global.LdFlags, target)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700535
Colin Crossb98c8b02016-07-29 13:44:28 -0700536 hod := "Host"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700537 if ctx.Os().Class == android.Device {
Colin Crossb98c8b02016-07-29 13:44:28 -0700538 hod = "Device"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700539 }
540
Colin Cross4af21ed2019-11-04 09:37:55 -0800541 flags.Global.CommonFlags = append(flags.Global.CommonFlags, instructionSetFlags)
542 flags.Global.ConlyFlags = append([]string{"${config.CommonGlobalConlyflags}"}, flags.Global.ConlyFlags...)
543 flags.Global.CppFlags = append([]string{fmt.Sprintf("${config.%sGlobalCppflags}", hod)}, flags.Global.CppFlags...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700544
Colin Cross33bac242021-07-14 17:03:16 -0700545 flags.Global.AsFlags = append(flags.Global.AsFlags, tc.Asflags())
Colin Cross0523ba22021-07-14 18:45:05 -0700546 flags.Global.CppFlags = append([]string{"${config.CommonGlobalCppflags}"}, flags.Global.CppFlags...)
AdityaK6cfd07e2024-01-31 14:31:20 -0800547
548 // bpf targets don't need the target specific toolchain cflags. b/308826679
549 if !proptools.Bool(compiler.Properties.Bpf_target) {
550 flags.Global.CommonFlags = append(flags.Global.CommonFlags, tc.Cflags())
551 }
Colin Cross4af21ed2019-11-04 09:37:55 -0800552 flags.Global.CommonFlags = append(flags.Global.CommonFlags,
Colin Cross0523ba22021-07-14 18:45:05 -0700553 "${config.CommonGlobalCflags}",
554 fmt.Sprintf("${config.%sGlobalCflags}", hod))
Colin Cross4d9c2d12016-07-29 12:48:20 -0700555
Chris Wailesb2703ad2021-07-30 13:25:42 -0700556 if android.IsThirdPartyPath(modulePath) {
Colin Cross0523ba22021-07-14 18:45:05 -0700557 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "${config.ExternalCflags}")
Yi Kongcc80f8d2018-06-06 14:42:44 -0700558 }
559
Frederick Mayle8e8f8602024-06-06 14:55:07 -0700560 if Bool(compiler.Properties.Rtti) {
561 flags.Local.CppFlags = append(flags.Local.CppFlags, "-frtti")
562 } else {
563 flags.Local.CppFlags = append(flags.Local.CppFlags, "-fno-rtti")
Colin Cross87dd9632017-11-03 13:31:05 -0700564 }
565
Liz Kammere4d1bda2022-06-22 21:02:08 +0000566 flags.Global.AsFlags = append(flags.Global.AsFlags, "${config.CommonGlobalAsflags}")
Colin Crosscdcb6802022-06-09 11:07:01 -0700567
Colin Cross33bac242021-07-14 17:03:16 -0700568 flags.Global.CppFlags = append(flags.Global.CppFlags, tc.Cppflags())
Colin Cross87dd9632017-11-03 13:31:05 -0700569
Colin Cross4af21ed2019-11-04 09:37:55 -0800570 flags.Global.YasmFlags = append(flags.Global.YasmFlags, tc.YasmFlags())
Colin Cross87dd9632017-11-03 13:31:05 -0700571
AdityaK6cfd07e2024-01-31 14:31:20 -0800572 // bpf targets don't need the target specific toolchain cflags. b/308826679
573 if !proptools.Bool(compiler.Properties.Bpf_target) {
574 flags.Global.CommonFlags = append(flags.Global.CommonFlags, tc.ToolchainCflags())
575 }
576
Chris Parsons79bd2b72021-11-29 17:52:41 -0500577 cStd := parseCStd(compiler.Properties.C_std)
Jingwen Chen97b85312021-10-08 10:41:31 +0000578 cppStd := parseCppStd(compiler.Properties.Cpp_std)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800579
Jingwen Chen97b85312021-10-08 10:41:31 +0000580 cStd, cppStd = maybeReplaceGnuToC(compiler.Properties.Gnu_extensions, cStd, cppStd)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800581
Colin Cross4af21ed2019-11-04 09:37:55 -0800582 flags.Local.ConlyFlags = append([]string{"-std=" + cStd}, flags.Local.ConlyFlags...)
583 flags.Local.CppFlags = append([]string{"-std=" + cppStd}, flags.Local.CppFlags...)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800584
Justin Yun63e9ec72020-10-29 16:49:43 +0900585 if ctx.inVendor() {
586 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor.Cflags)...)
587 }
588
589 if ctx.inProduct() {
Justin Yun6977e8a2020-10-29 18:24:11 +0900590 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Product.Cflags)...)
Jiyong Parka622de82017-08-10 13:33:27 +0900591 }
592
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900593 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800594 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Recovery.Cflags)...)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900595 }
596
Yifan Hong6da33c22020-10-27 15:01:21 -0700597 if ctx.inVendorRamdisk() {
598 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor_ramdisk.Cflags)...)
599 }
Christopher Ferrise0202c42023-07-27 17:06:46 -0700600 if ctx.inRamdisk() {
601 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Ramdisk.Cflags)...)
602 }
Jiyong Parka592b6f2021-07-16 16:05:50 +0900603 if !ctx.useSdk() {
604 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Platform.Cflags)...)
605 }
Yifan Hong6da33c22020-10-27 15:01:21 -0700606
Colin Cross4d9c2d12016-07-29 12:48:20 -0700607 // We can enforce some rules more strictly in the code we own. strict
608 // indicates if this is code that we can be stricter with. If we have
609 // rules that we want to apply to *our* code (but maybe can't for
610 // vendor/device specific things), we could extend this to be a ternary
611 // value.
612 strict := true
Yi Kong950e0ba2019-10-08 02:27:17 -0700613 if strings.HasPrefix(modulePath, "external/") {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700614 strict = false
615 }
616
617 // Can be used to make some annotations stricter for code we can fix
618 // (such as when we mark functions as deprecated).
619 if strict {
Colin Cross4af21ed2019-11-04 09:37:55 -0800620 flags.Global.CFlags = append(flags.Global.CFlags, "-DANDROID_STRICT")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700621 }
622
Cole Faust96a692b2024-08-08 14:47:51 -0700623 if compiler.hasSrcExt(ctx, ".proto") {
Colin Cross0c461f12016-10-20 16:11:43 -0700624 flags = protoFlags(ctx, flags, &compiler.Proto)
625 }
626
Cole Faust96a692b2024-08-08 14:47:51 -0700627 if compiler.hasSrcExt(ctx, ".y") || compiler.hasSrcExt(ctx, ".yy") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800628 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700629 "-I"+android.PathForModuleGen(ctx, "yacc", ctx.ModuleDir()).String())
630 }
631
Vinh Tran09581952023-05-16 16:03:20 -0400632 if len(compiler.Properties.Aidl.Libs) > 0 &&
633 (len(compiler.Properties.Aidl.Include_dirs) > 0 || len(compiler.Properties.Aidl.Local_include_dirs) > 0) {
634 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")
635 }
636
Cole Faust96a692b2024-08-08 14:47:51 -0700637 if compiler.hasAidl(ctx, deps) {
Jooyung Hane197d8b2021-01-05 10:33:16 +0900638 flags.aidlFlags = append(flags.aidlFlags, compiler.Properties.Aidl.Flags...)
Dan Willemsene1240db2016-11-03 14:28:51 -0700639 if len(compiler.Properties.Aidl.Local_include_dirs) > 0 {
640 localAidlIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Aidl.Local_include_dirs)
641 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(localAidlIncludeDirs))
642 }
643 if len(compiler.Properties.Aidl.Include_dirs) > 0 {
644 rootAidlIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Aidl.Include_dirs)
645 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs))
646 }
647
Vinh Tran367d89d2023-04-28 11:21:25 -0400648 var rootAidlIncludeDirs android.Paths
649 for _, aidlLibraryInfo := range deps.AidlLibraryInfos {
650 rootAidlIncludeDirs = append(rootAidlIncludeDirs, aidlLibraryInfo.IncludeDirs.ToList()...)
651 }
652 if len(rootAidlIncludeDirs) > 0 {
653 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs))
654 }
655
Zim3c3b4162022-09-02 12:45:05 +0100656 if proptools.BoolDefault(compiler.Properties.Aidl.Generate_traces, true) {
Martijn Coeneneab15642018-03-09 09:29:59 +0100657 flags.aidlFlags = append(flags.aidlFlags, "-t")
658 }
659
Jooyung Han07f70c02021-11-06 07:08:45 +0900660 aidlMinSdkVersion := ctx.minSdkVersion()
661 if aidlMinSdkVersion == "" {
662 aidlMinSdkVersion = "platform_apis"
663 }
664 flags.aidlFlags = append(flags.aidlFlags, "--min_sdk_version="+aidlMinSdkVersion)
665
Cole Faust96a692b2024-08-08 14:47:51 -0700666 if compiler.hasSrcExt(ctx, ".aidl") {
Vinh Tran09581952023-05-16 16:03:20 -0400667 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
668 "-I"+android.PathForModuleGen(ctx, "aidl").String())
669 }
670 if len(deps.AidlLibraryInfos) > 0 {
671 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
672 "-I"+android.PathForModuleGen(ctx, "aidl_library").String())
673 }
Dan Willemsene1240db2016-11-03 14:28:51 -0700674 }
675
Cole Faust96a692b2024-08-08 14:47:51 -0700676 if compiler.hasSrcExt(ctx, ".rscript") || compiler.hasSrcExt(ctx, ".fs") {
Colin Cross2a252be2017-05-01 17:37:24 -0700677 flags = rsFlags(ctx, flags, &compiler.Properties)
678 }
679
Cole Faust96a692b2024-08-08 14:47:51 -0700680 if compiler.hasSrcExt(ctx, ".sysprop") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800681 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Inseob Kim21f26902018-09-06 00:55:20 +0900682 "-I"+android.PathForModuleGen(ctx, "sysprop", "include").String())
683 }
684
Cole Faust96a692b2024-08-08 14:47:51 -0700685 if len(srcs) > 0 {
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800686 module := ctx.ModuleDir() + "/Android.bp:" + ctx.ModuleName()
Colin Cross4af21ed2019-11-04 09:37:55 -0800687 if inList("-Wno-error", flags.Local.CFlags) || inList("-Wno-error", flags.Local.CppFlags) {
Colin Cross571cccf2019-02-04 11:22:08 -0800688 addToModuleList(ctx, modulesUsingWnoErrorKey, module)
Colin Cross4af21ed2019-11-04 09:37:55 -0800689 } else if !inList("-Werror", flags.Local.CFlags) && !inList("-Werror", flags.Local.CppFlags) {
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800690 if warningsAreAllowed(ctx.ModuleDir()) {
Yi Kongde936472022-05-19 20:11:10 +0800691 addToModuleList(ctx, modulesWarningsAllowedKey, module)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800692 } else {
Elliott Hughesed4a27b2022-05-18 13:15:00 -0700693 flags.Local.CFlags = append([]string{"-Werror"}, flags.Local.CFlags...)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800694 }
695 }
696 }
697
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800698 if Bool(compiler.Properties.Openmp) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800699 flags.Local.CFlags = append(flags.Local.CFlags, "-fopenmp")
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800700 }
701
Yi Kong5786f5c2024-05-28 02:22:34 +0900702 if ctx.optimizeForSize() {
703 flags.Local.CFlags = append(flags.Local.CFlags, "-Oz")
Florian Mayer7319cff2024-10-14 14:51:00 -0700704 if !ctx.Config().IsEnvFalse("THINLTO_USE_MLGO") {
705 flags.Local.LdFlags = append(flags.Local.LdFlags, "-Wl,-mllvm,-enable-ml-inliner=release")
706 }
Yi Kong5786f5c2024-05-28 02:22:34 +0900707 }
708
Colin Cross440e0d02020-06-11 11:32:11 -0700709 // Exclude directories from manual binder interface allowed list.
Ivan Lozanod094d402019-11-26 10:32:50 -0800710 //TODO(b/145621474): Move this check into IInterface.h when clang-tidy no longer uses absolute paths.
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800711 if android.HasAnyPrefix(ctx.ModuleDir(), allowedManualInterfacePaths) {
Ivan Lozanod094d402019-11-26 10:32:50 -0800712 flags.Local.CFlags = append(flags.Local.CFlags, "-DDO_NOT_CHECK_MANUAL_BINDER_INTERFACES")
713 }
714
Luis Useche342fa6b2024-04-01 19:33:18 -0700715 flags.NoOverrideFlags = append(flags.NoOverrideFlags, "${config.NoOverrideGlobalCflags}")
716
717 if flags.Toolchain.Is64Bit() {
718 flags.NoOverrideFlags = append(flags.NoOverrideFlags, "${config.NoOverride64GlobalCflags}")
719 }
720
721 if android.IsThirdPartyPath(ctx.ModuleDir()) {
722 flags.NoOverrideFlags = append(flags.NoOverrideFlags, "${config.NoOverrideExternalGlobalCflags}")
723 }
724
Colin Cross4d9c2d12016-07-29 12:48:20 -0700725 return flags
726}
727
Cole Faust96a692b2024-08-08 14:47:51 -0700728func (compiler *baseCompiler) hasSrcExt(ctx BaseModuleContext, ext string) bool {
Colin Crossf18e1102017-11-16 14:33:08 -0800729 for _, src := range compiler.srcsBeforeGen {
730 if src.Ext() == ext {
731 return true
732 }
733 }
Cole Faust96a692b2024-08-08 14:47:51 -0700734 for _, src := range compiler.Properties.Srcs.GetOrDefault(ctx, nil) {
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700735 if filepath.Ext(src) == ext {
Colin Cross0c461f12016-10-20 16:11:43 -0700736 return true
737 }
738 }
739
740 return false
741}
742
Yifan Hongf2ede7a2020-09-09 18:48:40 -0700743var invalidDefineCharRegex = regexp.MustCompile("[^a-zA-Z0-9_]")
744
Jooyung Han77988572019-10-18 16:26:16 +0900745// makeDefineString transforms a name of an APEX module into a value to be used as value for C define
746// For example, com.android.foo => COM_ANDROID_FOO
747func makeDefineString(name string) string {
Yifan Hongf2ede7a2020-09-09 18:48:40 -0700748 return invalidDefineCharRegex.ReplaceAllString(strings.ToUpper(name), "_")
Jooyung Han77988572019-10-18 16:26:16 +0900749}
750
Colin Cross948f0cb2016-10-17 14:24:56 -0700751var gnuToCReplacer = strings.NewReplacer("gnu", "c")
752
Colin Cross4d9c2d12016-07-29 12:48:20 -0700753func ndkPathDeps(ctx ModuleContext) android.Paths {
Dan Albert92fe7402020-07-15 13:33:30 -0700754 if ctx.Module().(*Module).IsSdkVariant() {
Chih-Hung Hsiehf6ca1b92021-12-05 18:02:50 -0800755 // The NDK sysroot timestamp file depends on all the NDK sysroot header files
756 // for compiling src to obj files.
757 return android.Paths{getNdkHeadersTimestampFile(ctx)}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700758 }
759 return nil
760}
761
Cole Faust96a692b2024-08-08 14:47:51 -0700762func (compiler *baseCompiler) hasAidl(ctx BaseModuleContext, deps PathDeps) bool {
763 return len(deps.AidlLibraryInfos) > 0 || compiler.hasSrcExt(ctx, ".aidl")
Vinh Tran367d89d2023-04-28 11:21:25 -0400764}
765
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700766func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
Inseob Kimd110f872019-12-06 13:15:38 +0900767 pathDeps := deps.GeneratedDeps
Colin Cross4d9c2d12016-07-29 12:48:20 -0700768 pathDeps = append(pathDeps, ndkPathDeps(ctx)...)
Colin Cross2f336352016-10-26 10:03:47 -0700769
Colin Cross2f336352016-10-26 10:03:47 -0700770 buildFlags := flagsToBuilderFlags(flags)
771
Colin Crossf18e1102017-11-16 14:33:08 -0800772 srcs := append(android.Paths(nil), compiler.srcsBeforeGen...)
773
Vinh Tran367d89d2023-04-28 11:21:25 -0400774 srcs, genDeps, info := genSources(ctx, deps.AidlLibraryInfos, srcs, buildFlags)
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800775 pathDeps = append(pathDeps, genDeps...)
Colin Cross2f336352016-10-26 10:03:47 -0700776
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800777 compiler.pathDeps = pathDeps
Paul Duffin33056e82021-02-19 13:49:08 +0000778 compiler.generatedSourceInfo = info
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800779 compiler.cFlagsDeps = flags.CFlagsDeps
Colin Cross2f336352016-10-26 10:03:47 -0700780
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800781 // Save src, buildFlags and context
782 compiler.srcs = srcs
783
Colin Cross4d9c2d12016-07-29 12:48:20 -0700784 // Compile files listed in c.Properties.Srcs into objects
Chih-Hung Hsieh769a51c2021-09-17 17:18:39 -0700785 objs := compileObjs(ctx, buildFlags, "", srcs,
JaeMan Park3dba4d22024-01-05 15:29:48 +0900786 append(android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_disabled_srcs), compiler.generatedSources...),
Chih-Hung Hsieh9db8a0c2022-02-17 12:54:45 -0800787 android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_timeout_srcs),
Chih-Hung Hsieh769a51c2021-09-17 17:18:39 -0700788 pathDeps, compiler.cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700789
790 if ctx.Failed() {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700791 return Objects{}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700792 }
793
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700794 return objs
Colin Cross4d9c2d12016-07-29 12:48:20 -0700795}
796
797// Compile a list of source files into objects a specified subdirectory
Chih-Hung Hsieh7540a782022-01-08 19:56:09 -0800798func compileObjs(ctx ModuleContext, flags builderFlags, subdir string,
Chih-Hung Hsieh9db8a0c2022-02-17 12:54:45 -0800799 srcFiles, noTidySrcs, timeoutTidySrcs, pathDeps android.Paths, cFlagsDeps android.Paths) Objects {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700800
Chih-Hung Hsieh9db8a0c2022-02-17 12:54:45 -0800801 return transformSourceToObj(ctx, subdir, srcFiles, noTidySrcs, timeoutTidySrcs, flags, pathDeps, cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700802}
Yi Kong950e0ba2019-10-08 02:27:17 -0700803
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400804// Properties for rust_bindgen related to generating rust bindings.
805// This exists here so these properties can be included in a cc_default
806// which can be used in both cc and rust modules.
807type RustBindgenClangProperties struct {
808 // list of directories relative to the Blueprints file that will
809 // be added to the include path using -I
810 Local_include_dirs []string `android:"arch_variant,variant_prepend"`
811
812 // list of static libraries that provide headers for this binding.
Cole Faustf0006e72024-08-19 14:39:19 -0700813 Static_libs proptools.Configurable[[]string] `android:"arch_variant,variant_prepend"`
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400814
815 // list of shared libraries that provide headers for this binding.
Cole Faustf0006e72024-08-19 14:39:19 -0700816 Shared_libs proptools.Configurable[[]string] `android:"arch_variant"`
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400817
Ivan Lozano9b443832020-11-17 13:39:30 -0500818 // List of libraries which export include paths required for this module
Cole Faustf0006e72024-08-19 14:39:19 -0700819 Header_libs proptools.Configurable[[]string] `android:"arch_variant,variant_prepend"`
Ivan Lozano9b443832020-11-17 13:39:30 -0500820
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400821 // list of clang flags required to correctly interpret the headers.
Cole Fauste96c16a2024-06-13 14:51:14 -0700822 Cflags proptools.Configurable[[]string] `android:"arch_variant"`
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400823
824 // list of c++ specific clang flags required to correctly interpret the headers.
825 // This is provided primarily to make sure cppflags defined in cc_defaults are pulled in.
Aleks Todorov0384c972024-07-26 13:41:13 +0100826 Cppflags proptools.Configurable[[]string] `android:"arch_variant"`
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400827
828 // C standard version to use. Can be a specific version (such as "gnu11"),
829 // "experimental" (which will use draft versions like C1x when available),
830 // or the empty string (which will use the default).
831 //
832 // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this
833 // to "default" will use the build system default version. This cannot be set at the same time as cpp_std.
834 C_std *string
835
836 // C++ standard version to use. Can be a specific version (such as
837 // "gnu++11"), "experimental" (which will use draft versions like C++1z when
838 // available), or the empty string (which will use the default).
839 //
840 // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this
841 // to "default" will use the build system default version. This cannot be set at the same time as c_std.
842 Cpp_std *string
843
844 //TODO(b/161141999) Add support for headers from cc_library_header modules.
845}