blob: 5da745e027f7bc03c392bdc5cbbe45e573527980 [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
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700119 Yacc *YaccProperties
Matthias Maennich22fd4d12020-07-15 10:58:56 +0200120 Lex *LexProperties
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700121
Dan Willemsene1240db2016-11-03 14:28:51 -0700122 Aidl struct {
Vinh Tran367d89d2023-04-28 11:21:25 -0400123 // List of aidl_library modules
124 Libs []string
125
Dan Willemsene1240db2016-11-03 14:28:51 -0700126 // list of directories that will be added to the aidl include paths.
127 Include_dirs []string
128
129 // list of directories relative to the Blueprints file that will
130 // be added to the aidl include paths.
131 Local_include_dirs []string
Martijn Coeneneab15642018-03-09 09:29:59 +0100132
133 // whether to generate traces (for systrace) for this interface
134 Generate_traces *bool
Jooyung Hane197d8b2021-01-05 10:33:16 +0900135
136 // list of flags that will be passed to the AIDL compiler
137 Flags []string
Dan Willemsene1240db2016-11-03 14:28:51 -0700138 }
139
Colin Cross2a252be2017-05-01 17:37:24 -0700140 Renderscript struct {
141 // list of directories that will be added to the llvm-rs-cc include paths
142 Include_dirs []string
143
144 // list of flags that will be passed to llvm-rs-cc
145 Flags []string
146
147 // Renderscript API level to target
148 Target_api *string
149 }
150
Colin Cross4d9c2d12016-07-29 12:48:20 -0700151 Debug, Release struct {
152 // list of module-specific flags that will be used for C and C++ compiles in debug or
153 // release builds
154 Cflags []string `android:"arch_variant"`
155 } `android:"arch_variant"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700156
157 Target struct {
Justin Yun63e9ec72020-10-29 16:49:43 +0900158 Vendor, Product struct {
159 // list of source files that should only be used in vendor or
160 // product variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800161 Srcs []string `android:"path"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700162
Justin Yun63e9ec72020-10-29 16:49:43 +0900163 // list of source files that should not be used to build vendor
164 // or product variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800165 Exclude_srcs []string `android:"path"`
Jiyong Parka622de82017-08-10 13:33:27 +0900166
Justin Yun63e9ec72020-10-29 16:49:43 +0900167 // List of additional cflags that should be used to build vendor
168 // or product variant of the C/C++ module.
Jiyong Parka622de82017-08-10 13:33:27 +0900169 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900170
Justin Yun63e9ec72020-10-29 16:49:43 +0900171 // list of generated sources that should not be used to build
172 // vendor or product variant of the C/C++ module.
Jooyung Hanac07f882020-07-05 03:54:35 +0900173 Exclude_generated_sources []string
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700174 }
Jiyong Parkf9332f12018-02-01 00:54:12 +0900175 Recovery struct {
176 // list of source files that should only be used in the
177 // recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800178 Srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900179
180 // list of source files that should not be used to
181 // build the recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800182 Exclude_srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900183
184 // List of additional cflags that should be used to build the recovery
185 // variant of the C/C++ module.
186 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900187
188 // list of generated sources that should not be used to
189 // build the recovery variant of the C/C++ module.
190 Exclude_generated_sources []string
Jiyong Parkf9332f12018-02-01 00:54:12 +0900191 }
Yifan Hong6da33c22020-10-27 15:01:21 -0700192 Vendor_ramdisk struct {
193 // list of source files that should not be used to
194 // build the vendor ramdisk variant of the C/C++ module.
195 Exclude_srcs []string `android:"path"`
196
197 // List of additional cflags that should be used to build the vendor ramdisk
198 // variant of the C/C++ module.
199 Cflags []string
200 }
Jiyong Parka592b6f2021-07-16 16:05:50 +0900201 Platform struct {
202 // List of additional cflags that should be used to build the platform
203 // variant of the C/C++ module.
204 Cflags []string
205 }
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700206 }
Colin Cross10d22312017-05-03 11:01:58 -0700207
Colin Cross38f794e2017-09-07 10:53:07 -0700208 Proto struct {
209 // Link statically against the protobuf runtime
Nan Zhang0007d812017-11-07 10:57:05 -0800210 Static *bool `android:"arch_variant"`
Colin Cross38f794e2017-09-07 10:53:07 -0700211 } `android:"arch_variant"`
212
Colin Cross10d22312017-05-03 11:01:58 -0700213 // Stores the original list of source files before being cleared by library reuse
214 OriginalSrcs []string `blueprint:"mutated"`
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800215
216 // Build and link with OpenMP
217 Openmp *bool `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -0700218}
219
Colin Crossb916a382016-07-29 17:28:03 -0700220func NewBaseCompiler() *baseCompiler {
221 return &baseCompiler{}
222}
223
Colin Cross4d9c2d12016-07-29 12:48:20 -0700224type baseCompiler struct {
225 Properties BaseCompilerProperties
Colin Cross38f794e2017-09-07 10:53:07 -0700226 Proto android.ProtoProperties
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800227 cFlagsDeps android.Paths
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800228 pathDeps android.Paths
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800229 flags builderFlags
Colin Crossf18e1102017-11-16 14:33:08 -0800230
231 // Sources that were passed to the C/C++ compiler
232 srcs android.Paths
233
234 // Sources that were passed in the Android.bp file, including generated sources generated by
235 // other modules and filegroups. May include source files that have not yet been translated to
236 // C/C++ (.aidl, .proto, etc.)
237 srcsBeforeGen android.Paths
Paul Duffin33056e82021-02-19 13:49:08 +0000238
239 generatedSourceInfo
Colin Cross4d9c2d12016-07-29 12:48:20 -0700240}
241
242var _ compiler = (*baseCompiler)(nil)
243
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800244type CompiledInterface interface {
245 Srcs() android.Paths
246}
247
248func (compiler *baseCompiler) Srcs() android.Paths {
Nan Zhange42777a2018-03-27 16:19:42 -0700249 return append(android.Paths{}, compiler.srcs...)
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800250}
251
Colin Cross4d9c2d12016-07-29 12:48:20 -0700252func (compiler *baseCompiler) appendCflags(flags []string) {
253 compiler.Properties.Cflags = append(compiler.Properties.Cflags, flags...)
254}
255
256func (compiler *baseCompiler) appendAsflags(flags []string) {
257 compiler.Properties.Asflags = append(compiler.Properties.Asflags, flags...)
258}
259
Colin Cross42742b82016-08-01 13:20:05 -0700260func (compiler *baseCompiler) compilerProps() []interface{} {
Colin Cross0feb1692016-11-03 14:38:52 -0700261 return []interface{}{&compiler.Properties, &compiler.Proto}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700262}
263
Liz Kammer135bf552021-08-11 10:46:06 -0400264func includeBuildDirectory(prop *bool) bool {
265 return proptools.BoolDefault(prop, true)
266}
267
Liz Kammera4aa4302021-03-18 16:56:36 -0400268func (compiler *baseCompiler) includeBuildDirectory() bool {
Liz Kammer135bf552021-08-11 10:46:06 -0400269 return includeBuildDirectory(compiler.Properties.Include_build_directory)
Liz Kammera4aa4302021-03-18 16:56:36 -0400270}
271
Colin Cross42742b82016-08-01 13:20:05 -0700272func (compiler *baseCompiler) compilerInit(ctx BaseModuleContext) {}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700273
Colin Cross37047f12016-12-13 17:06:13 -0800274func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700275 deps.GeneratedSources = append(deps.GeneratedSources, compiler.Properties.Generated_sources...)
Jooyung Hanac07f882020-07-05 03:54:35 +0900276 deps.GeneratedSources = removeListFromList(deps.GeneratedSources, compiler.Properties.Exclude_generated_sources)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700277 deps.GeneratedHeaders = append(deps.GeneratedHeaders, compiler.Properties.Generated_headers...)
Vinh Tran367d89d2023-04-28 11:21:25 -0400278 deps.AidlLibs = append(deps.AidlLibs, compiler.Properties.Aidl.Libs...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700279
Colin Crossfe17f6f2019-03-28 19:30:56 -0700280 android.ProtoDeps(ctx, &compiler.Proto)
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700281 if compiler.hasSrcExt(".proto") {
Nan Zhang0007d812017-11-07 10:57:05 -0800282 deps = protoDeps(ctx, deps, &compiler.Proto, Bool(compiler.Properties.Proto.Static))
Colin Cross0c461f12016-10-20 16:11:43 -0700283 }
284
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800285 if Bool(compiler.Properties.Openmp) {
286 deps.StaticLibs = append(deps.StaticLibs, "libomp")
287 }
288
Colin Cross4d9c2d12016-07-29 12:48:20 -0700289 return deps
290}
291
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800292// Return true if the module is in the WarningAllowedProjects.
293func warningsAreAllowed(subdir string) bool {
294 subdir += "/"
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800295 return android.HasAnyPrefix(subdir, config.WarningAllowedProjects)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800296}
297
Colin Cross571cccf2019-02-04 11:22:08 -0800298func addToModuleList(ctx ModuleContext, key android.OnceKey, module string) {
299 getNamedMapForConfig(ctx.Config(), key).Store(module, true)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800300}
301
Liz Kammera5a29de2022-05-25 23:19:37 -0400302func useGnuExtensions(gnuExtensions *bool) bool {
303 return proptools.BoolDefault(gnuExtensions, true)
304}
305
Jingwen Chen97b85312021-10-08 10:41:31 +0000306func maybeReplaceGnuToC(gnuExtensions *bool, cStd string, cppStd string) (string, string) {
Liz Kammera5a29de2022-05-25 23:19:37 -0400307 if !useGnuExtensions(gnuExtensions) {
Jingwen Chen97b85312021-10-08 10:41:31 +0000308 cStd = gnuToCReplacer.Replace(cStd)
309 cppStd = gnuToCReplacer.Replace(cppStd)
310 }
311 return cStd, cppStd
312}
313
314func parseCppStd(cppStdPtr *string) string {
315 cppStd := String(cppStdPtr)
316 switch cppStd {
317 case "":
Chris Parsons79bd2b72021-11-29 17:52:41 -0500318 return config.CppStdVersion
Jingwen Chen97b85312021-10-08 10:41:31 +0000319 case "experimental":
Chris Parsons79bd2b72021-11-29 17:52:41 -0500320 return config.ExperimentalCppStdVersion
321 default:
322 return cppStd
Jingwen Chen97b85312021-10-08 10:41:31 +0000323 }
Chris Parsons79bd2b72021-11-29 17:52:41 -0500324}
325
326func parseCStd(cStdPtr *string) string {
327 cStd := String(cStdPtr)
328 switch cStd {
329 case "":
330 return config.CStdVersion
331 case "experimental":
332 return config.ExperimentalCStdVersion
333 default:
334 return cStd
335 }
Jingwen Chen97b85312021-10-08 10:41:31 +0000336}
337
Colin Cross4d9c2d12016-07-29 12:48:20 -0700338// Create a Flags struct that collects the compile flags from global values,
339// per-target values, module type values, and per-module Blueprints properties
Colin Crossf18e1102017-11-16 14:33:08 -0800340func (compiler *baseCompiler) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags {
Colin Crossb98c8b02016-07-29 13:44:28 -0700341 tc := ctx.toolchain()
Yi Kong950e0ba2019-10-08 02:27:17 -0700342 modulePath := android.PathForModuleSrc(ctx).String()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700343
Colin Cross8a497952019-03-05 22:25:09 -0800344 compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, compiler.Properties.Srcs, compiler.Properties.Exclude_srcs)
Colin Crossf18e1102017-11-16 14:33:08 -0800345 compiler.srcsBeforeGen = append(compiler.srcsBeforeGen, deps.GeneratedSources...)
346
Colin Cross4d9c2d12016-07-29 12:48:20 -0700347 CheckBadCompilerFlags(ctx, "cflags", compiler.Properties.Cflags)
348 CheckBadCompilerFlags(ctx, "cppflags", compiler.Properties.Cppflags)
349 CheckBadCompilerFlags(ctx, "conlyflags", compiler.Properties.Conlyflags)
350 CheckBadCompilerFlags(ctx, "asflags", compiler.Properties.Asflags)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900351 CheckBadCompilerFlags(ctx, "vendor.cflags", compiler.Properties.Target.Vendor.Cflags)
Justin Yun63e9ec72020-10-29 16:49:43 +0900352 CheckBadCompilerFlags(ctx, "product.cflags", compiler.Properties.Target.Product.Cflags)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900353 CheckBadCompilerFlags(ctx, "recovery.cflags", compiler.Properties.Target.Recovery.Cflags)
Yifan Hong6da33c22020-10-27 15:01:21 -0700354 CheckBadCompilerFlags(ctx, "vendor_ramdisk.cflags", compiler.Properties.Target.Vendor_ramdisk.Cflags)
Jiyong Parka592b6f2021-07-16 16:05:50 +0900355 CheckBadCompilerFlags(ctx, "platform.cflags", compiler.Properties.Target.Platform.Cflags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700356
Colin Cross0b9f31f2019-02-28 11:00:01 -0800357 esc := proptools.NinjaAndShellEscapeList
Colin Cross4b963f82016-09-29 14:06:02 -0700358
Colin Cross4af21ed2019-11-04 09:37:55 -0800359 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Cflags)...)
360 flags.Local.CppFlags = append(flags.Local.CppFlags, esc(compiler.Properties.Cppflags)...)
361 flags.Local.ConlyFlags = append(flags.Local.ConlyFlags, esc(compiler.Properties.Conlyflags)...)
362 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Asflags)...)
363 flags.Local.YasmFlags = append(flags.Local.YasmFlags, esc(compiler.Properties.Asflags)...)
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700364
365 flags.Yacc = compiler.Properties.Yacc
Matthias Maennich22fd4d12020-07-15 10:58:56 +0200366 flags.Lex = compiler.Properties.Lex
Colin Cross4d9c2d12016-07-29 12:48:20 -0700367
368 // Include dir cflags
Colin Cross4d9c2d12016-07-29 12:48:20 -0700369 localIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Local_include_dirs)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700370 if len(localIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700371 f := includeDirsToFlags(localIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800372 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
373 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700374 }
375 rootIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Include_dirs)
376 if len(rootIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700377 f := includeDirsToFlags(rootIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800378 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
379 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700380 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700381
Liz Kammera4aa4302021-03-18 16:56:36 -0400382 if compiler.includeBuildDirectory() {
Yi Kong950e0ba2019-10-08 02:27:17 -0700383 flags.Local.CommonFlags = append(flags.Local.CommonFlags, "-I"+modulePath)
384 flags.Local.YasmFlags = append(flags.Local.YasmFlags, "-I"+modulePath)
Dan Albert899c23e2018-12-06 11:04:03 -0800385 }
Colin Crossc3199482017-03-30 15:03:04 -0700386
Colin Cross87dd9632017-11-03 13:31:05 -0700387 if !(ctx.useSdk() || ctx.useVndk()) || ctx.Host() {
388 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
389 "${config.CommonGlobalIncludes}",
Orion Hodson5cffce12020-05-27 12:47:32 +0000390 tc.IncludeFlags())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700391 }
392
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700393 if ctx.useSdk() {
Dan Albertfac114b2018-11-14 21:22:00 -0800394 // TODO: Switch to --sysroot.
Colin Cross4d9c2d12016-07-29 12:48:20 -0700395 // The NDK headers are installed to a common sysroot. While a more
396 // typical Soong approach would be to only make the headers for the
397 // library you're using available, we're trying to emulate the NDK
398 // behavior here, and the NDK always has all the NDK headers available.
Colin Crossc3199482017-03-30 15:03:04 -0700399 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700400 "-isystem "+getCurrentIncludePath(ctx).String(),
Chih-Hung Hsieh1e7d1bf2018-03-15 18:44:57 -0700401 "-isystem "+getCurrentIncludePath(ctx).Join(ctx, config.NDKTriple(tc)).String())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700402 }
403
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700404 if ctx.useVndk() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800405 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VNDK__")
Justin Yun13decfb2021-03-08 19:25:55 +0900406 if ctx.inVendor() {
407 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VENDOR__")
408 } else if ctx.inProduct() {
409 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_PRODUCT__")
410 }
Dan Willemsenb916b802017-03-19 13:44:32 -0700411 }
412
Jiyong Parkd54aee52018-06-09 01:32:54 +0900413 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800414 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RECOVERY__")
Jiyong Parkd54aee52018-06-09 01:32:54 +0900415 }
416
David Anderson2c8075c2022-02-16 21:53:13 -0800417 if ctx.inRecovery() || ctx.inRamdisk() || ctx.inVendorRamdisk() {
418 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RAMDISK__")
419 }
420
Colin Crosse07f2312020-08-13 11:24:56 -0700421 if ctx.apexVariationName() != "" {
Jooyung Hanc87a0592020-03-02 17:44:33 +0900422 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_APEX__")
Jiyong Park58e364a2019-01-19 19:24:06 +0900423 }
424
Victor Khimenko1a31f802020-09-17 03:07:31 +0200425 if ctx.Target().NativeBridge == android.NativeBridgeEnabled {
426 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_NATIVE_BRIDGE__")
427 }
428
Nan Zhang0007d812017-11-07 10:57:05 -0800429 instructionSet := String(compiler.Properties.Instruction_set)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700430 if flags.RequiredInstructionSet != "" {
431 instructionSet = flags.RequiredInstructionSet
432 }
Colin Cross33bac242021-07-14 17:03:16 -0700433 instructionSetFlags, err := tc.InstructionSetFlags(instructionSet)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700434 if err != nil {
435 ctx.ModuleErrorf("%s", err)
436 }
437
438 CheckBadCompilerFlags(ctx, "release.cflags", compiler.Properties.Release.Cflags)
439
440 // TODO: debug
Colin Cross4af21ed2019-11-04 09:37:55 -0800441 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Release.Cflags)...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700442
Alix Espinoef47e542022-09-14 19:10:51 +0000443 if !ctx.DeviceConfig().BuildBrokenClangCFlags() && len(compiler.Properties.Clang_cflags) != 0 {
444 ctx.PropertyErrorf("clang_cflags", "property is deprecated, see Changes.md file")
445 } else {
446 CheckBadCompilerFlags(ctx, "clang_cflags", compiler.Properties.Clang_cflags)
447 }
448 if !ctx.DeviceConfig().BuildBrokenClangAsFlags() && len(compiler.Properties.Clang_asflags) != 0 {
449 ctx.PropertyErrorf("clang_asflags", "property is deprecated, see Changes.md file")
450 } else {
451 CheckBadCompilerFlags(ctx, "clang_asflags", compiler.Properties.Clang_asflags)
452 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700453
Colin Cross4af21ed2019-11-04 09:37:55 -0800454 flags.Local.CFlags = config.ClangFilterUnknownCflags(flags.Local.CFlags)
Alix Espinoef47e542022-09-14 19:10:51 +0000455 if !ctx.DeviceConfig().BuildBrokenClangCFlags() {
456 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Clang_cflags)...)
457 }
458 if !ctx.DeviceConfig().BuildBrokenClangAsFlags() {
459 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Clang_asflags)...)
460 }
Colin Cross4af21ed2019-11-04 09:37:55 -0800461 flags.Local.CppFlags = config.ClangFilterUnknownCflags(flags.Local.CppFlags)
462 flags.Local.ConlyFlags = config.ClangFilterUnknownCflags(flags.Local.ConlyFlags)
463 flags.Local.LdFlags = config.ClangFilterUnknownCflags(flags.Local.LdFlags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700464
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700465 target := "-target " + tc.ClangTriple()
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700466 if ctx.Os().Class == android.Device {
Jiyong Parka008fb02021-03-16 17:15:53 +0900467 version := ctx.minSdkVersion()
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700468 if version == "" || version == "current" {
Dan Albert0b176c82020-07-23 16:43:25 -0700469 target += strconv.Itoa(android.FutureApiLevelInt)
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700470 } else {
Vinh Tranf1924742022-06-24 16:40:11 -0400471 apiLevel := nativeApiLevelOrPanic(ctx, version)
472 target += apiLevel.String()
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700473 }
474 }
475
Chih-Hung Hsieh57da8262022-02-15 22:48:04 -0800476 flags.Global.CFlags = append(flags.Global.CFlags, target)
477 flags.Global.AsFlags = append(flags.Global.AsFlags, target)
478 flags.Global.LdFlags = append(flags.Global.LdFlags, target)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700479
Colin Crossb98c8b02016-07-29 13:44:28 -0700480 hod := "Host"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700481 if ctx.Os().Class == android.Device {
Colin Crossb98c8b02016-07-29 13:44:28 -0700482 hod = "Device"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700483 }
484
Colin Cross4af21ed2019-11-04 09:37:55 -0800485 flags.Global.CommonFlags = append(flags.Global.CommonFlags, instructionSetFlags)
486 flags.Global.ConlyFlags = append([]string{"${config.CommonGlobalConlyflags}"}, flags.Global.ConlyFlags...)
487 flags.Global.CppFlags = append([]string{fmt.Sprintf("${config.%sGlobalCppflags}", hod)}, flags.Global.CppFlags...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700488
Colin Cross33bac242021-07-14 17:03:16 -0700489 flags.Global.AsFlags = append(flags.Global.AsFlags, tc.Asflags())
Colin Cross0523ba22021-07-14 18:45:05 -0700490 flags.Global.CppFlags = append([]string{"${config.CommonGlobalCppflags}"}, flags.Global.CppFlags...)
Colin Cross4af21ed2019-11-04 09:37:55 -0800491 flags.Global.CommonFlags = append(flags.Global.CommonFlags,
Colin Cross33bac242021-07-14 17:03:16 -0700492 tc.Cflags(),
Colin Cross0523ba22021-07-14 18:45:05 -0700493 "${config.CommonGlobalCflags}",
494 fmt.Sprintf("${config.%sGlobalCflags}", hod))
Colin Cross4d9c2d12016-07-29 12:48:20 -0700495
Chris Wailesb2703ad2021-07-30 13:25:42 -0700496 if android.IsThirdPartyPath(modulePath) {
Colin Cross0523ba22021-07-14 18:45:05 -0700497 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "${config.ExternalCflags}")
Yi Kongcc80f8d2018-06-06 14:42:44 -0700498 }
499
Dan Willemsen10db3842018-10-21 18:42:46 -0700500 if tc.Bionic() {
Colin Cross87dd9632017-11-03 13:31:05 -0700501 if Bool(compiler.Properties.Rtti) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800502 flags.Local.CppFlags = append(flags.Local.CppFlags, "-frtti")
Colin Cross87dd9632017-11-03 13:31:05 -0700503 } else {
Colin Cross4af21ed2019-11-04 09:37:55 -0800504 flags.Local.CppFlags = append(flags.Local.CppFlags, "-fno-rtti")
Colin Cross87dd9632017-11-03 13:31:05 -0700505 }
506 }
507
Liz Kammere4d1bda2022-06-22 21:02:08 +0000508 flags.Global.AsFlags = append(flags.Global.AsFlags, "${config.CommonGlobalAsflags}")
Colin Crosscdcb6802022-06-09 11:07:01 -0700509
Colin Cross33bac242021-07-14 17:03:16 -0700510 flags.Global.CppFlags = append(flags.Global.CppFlags, tc.Cppflags())
Colin Cross87dd9632017-11-03 13:31:05 -0700511
Colin Cross4af21ed2019-11-04 09:37:55 -0800512 flags.Global.YasmFlags = append(flags.Global.YasmFlags, tc.YasmFlags())
Colin Cross87dd9632017-11-03 13:31:05 -0700513
Colin Cross33bac242021-07-14 17:03:16 -0700514 flags.Global.CommonFlags = append(flags.Global.CommonFlags, tc.ToolchainCflags())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700515
Chris Parsons79bd2b72021-11-29 17:52:41 -0500516 cStd := parseCStd(compiler.Properties.C_std)
Jingwen Chen97b85312021-10-08 10:41:31 +0000517 cppStd := parseCppStd(compiler.Properties.Cpp_std)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800518
Jingwen Chen97b85312021-10-08 10:41:31 +0000519 cStd, cppStd = maybeReplaceGnuToC(compiler.Properties.Gnu_extensions, cStd, cppStd)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800520
Colin Cross4af21ed2019-11-04 09:37:55 -0800521 flags.Local.ConlyFlags = append([]string{"-std=" + cStd}, flags.Local.ConlyFlags...)
522 flags.Local.CppFlags = append([]string{"-std=" + cppStd}, flags.Local.CppFlags...)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800523
Justin Yun63e9ec72020-10-29 16:49:43 +0900524 if ctx.inVendor() {
525 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor.Cflags)...)
526 }
527
528 if ctx.inProduct() {
Justin Yun6977e8a2020-10-29 18:24:11 +0900529 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Product.Cflags)...)
Jiyong Parka622de82017-08-10 13:33:27 +0900530 }
531
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900532 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800533 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Recovery.Cflags)...)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900534 }
535
Yifan Hong6da33c22020-10-27 15:01:21 -0700536 if ctx.inVendorRamdisk() {
537 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor_ramdisk.Cflags)...)
538 }
Jiyong Parka592b6f2021-07-16 16:05:50 +0900539 if !ctx.useSdk() {
540 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Platform.Cflags)...)
541 }
Yifan Hong6da33c22020-10-27 15:01:21 -0700542
Colin Cross4d9c2d12016-07-29 12:48:20 -0700543 // We can enforce some rules more strictly in the code we own. strict
544 // indicates if this is code that we can be stricter with. If we have
545 // rules that we want to apply to *our* code (but maybe can't for
546 // vendor/device specific things), we could extend this to be a ternary
547 // value.
548 strict := true
Yi Kong950e0ba2019-10-08 02:27:17 -0700549 if strings.HasPrefix(modulePath, "external/") {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700550 strict = false
551 }
552
553 // Can be used to make some annotations stricter for code we can fix
554 // (such as when we mark functions as deprecated).
555 if strict {
Colin Cross4af21ed2019-11-04 09:37:55 -0800556 flags.Global.CFlags = append(flags.Global.CFlags, "-DANDROID_STRICT")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700557 }
558
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700559 if compiler.hasSrcExt(".proto") {
Colin Cross0c461f12016-10-20 16:11:43 -0700560 flags = protoFlags(ctx, flags, &compiler.Proto)
561 }
562
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700563 if compiler.hasSrcExt(".y") || compiler.hasSrcExt(".yy") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800564 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700565 "-I"+android.PathForModuleGen(ctx, "yacc", ctx.ModuleDir()).String())
566 }
567
Vinh Tran367d89d2023-04-28 11:21:25 -0400568 if compiler.hasAidl(deps) {
Jooyung Hane197d8b2021-01-05 10:33:16 +0900569 flags.aidlFlags = append(flags.aidlFlags, compiler.Properties.Aidl.Flags...)
Dan Willemsene1240db2016-11-03 14:28:51 -0700570 if len(compiler.Properties.Aidl.Local_include_dirs) > 0 {
571 localAidlIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Aidl.Local_include_dirs)
572 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(localAidlIncludeDirs))
573 }
574 if len(compiler.Properties.Aidl.Include_dirs) > 0 {
575 rootAidlIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Aidl.Include_dirs)
576 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs))
577 }
578
Vinh Tran367d89d2023-04-28 11:21:25 -0400579 var rootAidlIncludeDirs android.Paths
580 for _, aidlLibraryInfo := range deps.AidlLibraryInfos {
581 rootAidlIncludeDirs = append(rootAidlIncludeDirs, aidlLibraryInfo.IncludeDirs.ToList()...)
582 }
583 if len(rootAidlIncludeDirs) > 0 {
584 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs))
585 }
586
Zim3c3b4162022-09-02 12:45:05 +0100587 if proptools.BoolDefault(compiler.Properties.Aidl.Generate_traces, true) {
Martijn Coeneneab15642018-03-09 09:29:59 +0100588 flags.aidlFlags = append(flags.aidlFlags, "-t")
589 }
590
Jooyung Han07f70c02021-11-06 07:08:45 +0900591 aidlMinSdkVersion := ctx.minSdkVersion()
592 if aidlMinSdkVersion == "" {
593 aidlMinSdkVersion = "platform_apis"
594 }
595 flags.aidlFlags = append(flags.aidlFlags, "--min_sdk_version="+aidlMinSdkVersion)
596
Colin Cross4af21ed2019-11-04 09:37:55 -0800597 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsene1240db2016-11-03 14:28:51 -0700598 "-I"+android.PathForModuleGen(ctx, "aidl").String())
599 }
600
Jeff Vander Stoepd6126272019-07-15 19:08:37 -0700601 if compiler.hasSrcExt(".rscript") || compiler.hasSrcExt(".fs") {
Colin Cross2a252be2017-05-01 17:37:24 -0700602 flags = rsFlags(ctx, flags, &compiler.Properties)
603 }
604
Inseob Kim21f26902018-09-06 00:55:20 +0900605 if compiler.hasSrcExt(".sysprop") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800606 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Inseob Kim21f26902018-09-06 00:55:20 +0900607 "-I"+android.PathForModuleGen(ctx, "sysprop", "include").String())
608 }
609
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800610 if len(compiler.Properties.Srcs) > 0 {
611 module := ctx.ModuleDir() + "/Android.bp:" + ctx.ModuleName()
Colin Cross4af21ed2019-11-04 09:37:55 -0800612 if inList("-Wno-error", flags.Local.CFlags) || inList("-Wno-error", flags.Local.CppFlags) {
Colin Cross571cccf2019-02-04 11:22:08 -0800613 addToModuleList(ctx, modulesUsingWnoErrorKey, module)
Colin Cross4af21ed2019-11-04 09:37:55 -0800614 } else if !inList("-Werror", flags.Local.CFlags) && !inList("-Werror", flags.Local.CppFlags) {
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800615 if warningsAreAllowed(ctx.ModuleDir()) {
Yi Kongde936472022-05-19 20:11:10 +0800616 addToModuleList(ctx, modulesWarningsAllowedKey, module)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800617 } else {
Elliott Hughesed4a27b2022-05-18 13:15:00 -0700618 flags.Local.CFlags = append([]string{"-Werror"}, flags.Local.CFlags...)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800619 }
620 }
621 }
622
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800623 if Bool(compiler.Properties.Openmp) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800624 flags.Local.CFlags = append(flags.Local.CFlags, "-fopenmp")
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800625 }
626
Colin Cross440e0d02020-06-11 11:32:11 -0700627 // Exclude directories from manual binder interface allowed list.
Ivan Lozanod094d402019-11-26 10:32:50 -0800628 //TODO(b/145621474): Move this check into IInterface.h when clang-tidy no longer uses absolute paths.
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800629 if android.HasAnyPrefix(ctx.ModuleDir(), allowedManualInterfacePaths) {
Ivan Lozanod094d402019-11-26 10:32:50 -0800630 flags.Local.CFlags = append(flags.Local.CFlags, "-DDO_NOT_CHECK_MANUAL_BINDER_INTERFACES")
631 }
632
Colin Cross4d9c2d12016-07-29 12:48:20 -0700633 return flags
634}
635
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700636func (compiler *baseCompiler) hasSrcExt(ext string) bool {
Colin Crossf18e1102017-11-16 14:33:08 -0800637 for _, src := range compiler.srcsBeforeGen {
638 if src.Ext() == ext {
639 return true
640 }
641 }
Colin Cross0c461f12016-10-20 16:11:43 -0700642 for _, src := range compiler.Properties.Srcs {
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700643 if filepath.Ext(src) == ext {
Colin Cross0c461f12016-10-20 16:11:43 -0700644 return true
645 }
646 }
Colin Cross10d22312017-05-03 11:01:58 -0700647 for _, src := range compiler.Properties.OriginalSrcs {
648 if filepath.Ext(src) == ext {
649 return true
650 }
651 }
Colin Cross0c461f12016-10-20 16:11:43 -0700652
653 return false
654}
655
Yifan Hongf2ede7a2020-09-09 18:48:40 -0700656var invalidDefineCharRegex = regexp.MustCompile("[^a-zA-Z0-9_]")
657
Jooyung Han77988572019-10-18 16:26:16 +0900658// makeDefineString transforms a name of an APEX module into a value to be used as value for C define
659// For example, com.android.foo => COM_ANDROID_FOO
660func makeDefineString(name string) string {
Yifan Hongf2ede7a2020-09-09 18:48:40 -0700661 return invalidDefineCharRegex.ReplaceAllString(strings.ToUpper(name), "_")
Jooyung Han77988572019-10-18 16:26:16 +0900662}
663
Colin Cross948f0cb2016-10-17 14:24:56 -0700664var gnuToCReplacer = strings.NewReplacer("gnu", "c")
665
Colin Cross4d9c2d12016-07-29 12:48:20 -0700666func ndkPathDeps(ctx ModuleContext) android.Paths {
Dan Albert92fe7402020-07-15 13:33:30 -0700667 if ctx.Module().(*Module).IsSdkVariant() {
Chih-Hung Hsiehf6ca1b92021-12-05 18:02:50 -0800668 // The NDK sysroot timestamp file depends on all the NDK sysroot header files
669 // for compiling src to obj files.
670 return android.Paths{getNdkHeadersTimestampFile(ctx)}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700671 }
672 return nil
673}
674
Vinh Tran367d89d2023-04-28 11:21:25 -0400675func (compiler *baseCompiler) hasAidl(deps PathDeps) bool {
676 return len(deps.AidlLibraryInfos) > 0 || compiler.hasSrcExt(".aidl")
677}
678
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700679func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
Inseob Kimd110f872019-12-06 13:15:38 +0900680 pathDeps := deps.GeneratedDeps
Colin Cross4d9c2d12016-07-29 12:48:20 -0700681 pathDeps = append(pathDeps, ndkPathDeps(ctx)...)
Colin Cross2f336352016-10-26 10:03:47 -0700682
Colin Cross2f336352016-10-26 10:03:47 -0700683 buildFlags := flagsToBuilderFlags(flags)
684
Colin Crossf18e1102017-11-16 14:33:08 -0800685 srcs := append(android.Paths(nil), compiler.srcsBeforeGen...)
686
Vinh Tran367d89d2023-04-28 11:21:25 -0400687 srcs, genDeps, info := genSources(ctx, deps.AidlLibraryInfos, srcs, buildFlags)
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800688 pathDeps = append(pathDeps, genDeps...)
Colin Cross2f336352016-10-26 10:03:47 -0700689
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800690 compiler.pathDeps = pathDeps
Paul Duffin33056e82021-02-19 13:49:08 +0000691 compiler.generatedSourceInfo = info
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800692 compiler.cFlagsDeps = flags.CFlagsDeps
Colin Cross2f336352016-10-26 10:03:47 -0700693
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800694 // Save src, buildFlags and context
695 compiler.srcs = srcs
696
Colin Cross4d9c2d12016-07-29 12:48:20 -0700697 // Compile files listed in c.Properties.Srcs into objects
Chih-Hung Hsieh769a51c2021-09-17 17:18:39 -0700698 objs := compileObjs(ctx, buildFlags, "", srcs,
699 android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_disabled_srcs),
Chih-Hung Hsieh9db8a0c2022-02-17 12:54:45 -0800700 android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_timeout_srcs),
Chih-Hung Hsieh769a51c2021-09-17 17:18:39 -0700701 pathDeps, compiler.cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700702
703 if ctx.Failed() {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700704 return Objects{}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700705 }
706
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700707 return objs
Colin Cross4d9c2d12016-07-29 12:48:20 -0700708}
709
710// Compile a list of source files into objects a specified subdirectory
Chih-Hung Hsieh7540a782022-01-08 19:56:09 -0800711func compileObjs(ctx ModuleContext, flags builderFlags, subdir string,
Chih-Hung Hsieh9db8a0c2022-02-17 12:54:45 -0800712 srcFiles, noTidySrcs, timeoutTidySrcs, pathDeps android.Paths, cFlagsDeps android.Paths) Objects {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700713
Chih-Hung Hsieh9db8a0c2022-02-17 12:54:45 -0800714 return transformSourceToObj(ctx, subdir, srcFiles, noTidySrcs, timeoutTidySrcs, flags, pathDeps, cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700715}
Yi Kong950e0ba2019-10-08 02:27:17 -0700716
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400717// Properties for rust_bindgen related to generating rust bindings.
718// This exists here so these properties can be included in a cc_default
719// which can be used in both cc and rust modules.
720type RustBindgenClangProperties struct {
721 // list of directories relative to the Blueprints file that will
722 // be added to the include path using -I
723 Local_include_dirs []string `android:"arch_variant,variant_prepend"`
724
725 // list of static libraries that provide headers for this binding.
726 Static_libs []string `android:"arch_variant,variant_prepend"`
727
728 // list of shared libraries that provide headers for this binding.
729 Shared_libs []string `android:"arch_variant"`
730
Ivan Lozano9b443832020-11-17 13:39:30 -0500731 // List of libraries which export include paths required for this module
732 Header_libs []string `android:"arch_variant,variant_prepend"`
733
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400734 // list of clang flags required to correctly interpret the headers.
735 Cflags []string `android:"arch_variant"`
736
737 // list of c++ specific clang flags required to correctly interpret the headers.
738 // This is provided primarily to make sure cppflags defined in cc_defaults are pulled in.
739 Cppflags []string `android:"arch_variant"`
740
741 // C standard version to use. Can be a specific version (such as "gnu11"),
742 // "experimental" (which will use draft versions like C1x when available),
743 // or the empty string (which will use the default).
744 //
745 // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this
746 // to "default" will use the build system default version. This cannot be set at the same time as cpp_std.
747 C_std *string
748
749 // C++ standard version to use. Can be a specific version (such as
750 // "gnu++11"), "experimental" (which will use draft versions like C++1z when
751 // available), or the empty string (which will use the default).
752 //
753 // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this
754 // to "default" will use the build system default version. This cannot be set at the same time as c_std.
755 Cpp_std *string
756
757 //TODO(b/161141999) Add support for headers from cc_library_header modules.
758}