blob: dca6a3c96a57e2fa61285ce7ce95e0484bcb343b [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
Colin Cross4d9c2d12016-07-29 12:48:20 -070045 // list of source files that should not be used to build the C/C++ module.
46 // This is most useful in the arch/multilib variants to remove non-common files
Colin Cross27b922f2019-03-04 22:35:41 -080047 Exclude_srcs []string `android:"path,arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070048
49 // list of module-specific flags that will be used for C and C++ compiles.
50 Cflags []string `android:"arch_variant"`
51
52 // list of module-specific flags that will be used for C++ compiles
53 Cppflags []string `android:"arch_variant"`
54
55 // list of module-specific flags that will be used for C compiles
56 Conlyflags []string `android:"arch_variant"`
57
58 // list of module-specific flags that will be used for .S compiles
59 Asflags []string `android:"arch_variant"`
60
61 // list of module-specific flags that will be used for C and C++ compiles when
62 // compiling with clang
63 Clang_cflags []string `android:"arch_variant"`
64
65 // list of module-specific flags that will be used for .S compiles when
66 // compiling with clang
67 Clang_asflags []string `android:"arch_variant"`
68
Colin Cross4d9c2d12016-07-29 12:48:20 -070069 // the instruction set architecture to use to compile the C/C++
70 // module.
Dan Willemsen5922f3c2017-10-25 15:20:50 -070071 Instruction_set *string `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070072
73 // list of directories relative to the root of the source tree that will
74 // be added to the include path using -I.
75 // If possible, don't use this. If adding paths from the current directory use
76 // local_include_dirs, if adding paths from other modules use export_include_dirs in
77 // that module.
Colin Crossccf01e72017-04-26 17:01:07 -070078 Include_dirs []string `android:"arch_variant,variant_prepend"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070079
80 // list of directories relative to the Blueprints file that will
81 // be added to the include path using -I
Dan Willemsen59339a22018-07-22 21:18:45 -070082 Local_include_dirs []string `android:"arch_variant,variant_prepend"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070083
Dan Albert899c23e2018-12-06 11:04:03 -080084 // Add the directory containing the Android.bp file to the list of include
85 // directories. Defaults to true.
86 Include_build_directory *bool
87
Colin Cross4d9c2d12016-07-29 12:48:20 -070088 // list of generated sources to compile. These are the names of gensrcs or
89 // genrule modules.
90 Generated_sources []string `android:"arch_variant"`
91
Jooyung Hanac07f882020-07-05 03:54:35 +090092 // list of generated sources that should not be used to build the C/C++ module.
93 // This is most useful in the arch/multilib variants to remove non-common files
94 Exclude_generated_sources []string `android:"arch_variant"`
95
Colin Cross4d9c2d12016-07-29 12:48:20 -070096 // list of generated headers to add to the include path. These are the names
97 // of genrule modules.
Colin Cross0ed579e2021-06-29 00:51:12 +000098 Generated_headers []string `android:"arch_variant,variant_prepend"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070099
100 // pass -frtti instead of -fno-rtti
101 Rtti *bool
102
Dan Albert043833c2017-02-03 16:13:38 -0800103 // C standard version to use. Can be a specific version (such as "gnu11"),
104 // "experimental" (which will use draft versions like C1x when available),
105 // or the empty string (which will use the default).
Nan Zhang0007d812017-11-07 10:57:05 -0800106 C_std *string
Dan Albert043833c2017-02-03 16:13:38 -0800107
108 // C++ standard version to use. Can be a specific version (such as
109 // "gnu++11"), "experimental" (which will use draft versions like C++1z when
110 // available), or the empty string (which will use the default).
Nan Zhang0007d812017-11-07 10:57:05 -0800111 Cpp_std *string
Dan Albert043833c2017-02-03 16:13:38 -0800112
Colin Cross948f0cb2016-10-17 14:24:56 -0700113 // if set to false, use -std=c++* instead of -std=gnu++*
114 Gnu_extensions *bool
115
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700116 Yacc *YaccProperties
Matthias Maennich22fd4d12020-07-15 10:58:56 +0200117 Lex *LexProperties
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700118
Dan Willemsene1240db2016-11-03 14:28:51 -0700119 Aidl struct {
120 // list of directories that will be added to the aidl include paths.
121 Include_dirs []string
122
123 // list of directories relative to the Blueprints file that will
124 // be added to the aidl include paths.
125 Local_include_dirs []string
Martijn Coeneneab15642018-03-09 09:29:59 +0100126
127 // whether to generate traces (for systrace) for this interface
128 Generate_traces *bool
Jooyung Hane197d8b2021-01-05 10:33:16 +0900129
130 // list of flags that will be passed to the AIDL compiler
131 Flags []string
Dan Willemsene1240db2016-11-03 14:28:51 -0700132 }
133
Colin Cross2a252be2017-05-01 17:37:24 -0700134 Renderscript struct {
135 // list of directories that will be added to the llvm-rs-cc include paths
136 Include_dirs []string
137
138 // list of flags that will be passed to llvm-rs-cc
139 Flags []string
140
141 // Renderscript API level to target
142 Target_api *string
143 }
144
Colin Cross4d9c2d12016-07-29 12:48:20 -0700145 Debug, Release struct {
146 // list of module-specific flags that will be used for C and C++ compiles in debug or
147 // release builds
148 Cflags []string `android:"arch_variant"`
149 } `android:"arch_variant"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700150
151 Target struct {
Justin Yun63e9ec72020-10-29 16:49:43 +0900152 Vendor, Product struct {
153 // list of source files that should only be used in vendor or
154 // product variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800155 Srcs []string `android:"path"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700156
Justin Yun63e9ec72020-10-29 16:49:43 +0900157 // list of source files that should not be used to build vendor
158 // or product variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800159 Exclude_srcs []string `android:"path"`
Jiyong Parka622de82017-08-10 13:33:27 +0900160
Justin Yun63e9ec72020-10-29 16:49:43 +0900161 // List of additional cflags that should be used to build vendor
162 // or product variant of the C/C++ module.
Jiyong Parka622de82017-08-10 13:33:27 +0900163 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900164
Justin Yun63e9ec72020-10-29 16:49:43 +0900165 // list of generated sources that should not be used to build
166 // vendor or product variant of the C/C++ module.
Jooyung Hanac07f882020-07-05 03:54:35 +0900167 Exclude_generated_sources []string
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700168 }
Jiyong Parkf9332f12018-02-01 00:54:12 +0900169 Recovery struct {
170 // list of source files that should only be used in the
171 // recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800172 Srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900173
174 // list of source files that should not be used to
175 // build the recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800176 Exclude_srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900177
178 // List of additional cflags that should be used to build the recovery
179 // variant of the C/C++ module.
180 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900181
182 // list of generated sources that should not be used to
183 // build the recovery variant of the C/C++ module.
184 Exclude_generated_sources []string
Jiyong Parkf9332f12018-02-01 00:54:12 +0900185 }
Yifan Hong6da33c22020-10-27 15:01:21 -0700186 Vendor_ramdisk struct {
187 // list of source files that should not be used to
188 // build the vendor ramdisk variant of the C/C++ module.
189 Exclude_srcs []string `android:"path"`
190
191 // List of additional cflags that should be used to build the vendor ramdisk
192 // variant of the C/C++ module.
193 Cflags []string
194 }
Jiyong Parka592b6f2021-07-16 16:05:50 +0900195 Platform struct {
196 // List of additional cflags that should be used to build the platform
197 // variant of the C/C++ module.
198 Cflags []string
199 }
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700200 }
Colin Cross10d22312017-05-03 11:01:58 -0700201
Colin Cross38f794e2017-09-07 10:53:07 -0700202 Proto struct {
203 // Link statically against the protobuf runtime
Nan Zhang0007d812017-11-07 10:57:05 -0800204 Static *bool `android:"arch_variant"`
Colin Cross38f794e2017-09-07 10:53:07 -0700205 } `android:"arch_variant"`
206
Colin Cross10d22312017-05-03 11:01:58 -0700207 // Stores the original list of source files before being cleared by library reuse
208 OriginalSrcs []string `blueprint:"mutated"`
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800209
210 // Build and link with OpenMP
211 Openmp *bool `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -0700212}
213
Colin Crossb916a382016-07-29 17:28:03 -0700214func NewBaseCompiler() *baseCompiler {
215 return &baseCompiler{}
216}
217
Colin Cross4d9c2d12016-07-29 12:48:20 -0700218type baseCompiler struct {
219 Properties BaseCompilerProperties
Colin Cross38f794e2017-09-07 10:53:07 -0700220 Proto android.ProtoProperties
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800221 cFlagsDeps android.Paths
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800222 pathDeps android.Paths
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800223 flags builderFlags
Colin Crossf18e1102017-11-16 14:33:08 -0800224
225 // Sources that were passed to the C/C++ compiler
226 srcs android.Paths
227
228 // Sources that were passed in the Android.bp file, including generated sources generated by
229 // other modules and filegroups. May include source files that have not yet been translated to
230 // C/C++ (.aidl, .proto, etc.)
231 srcsBeforeGen android.Paths
Paul Duffin33056e82021-02-19 13:49:08 +0000232
233 generatedSourceInfo
Colin Cross4d9c2d12016-07-29 12:48:20 -0700234}
235
236var _ compiler = (*baseCompiler)(nil)
237
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800238type CompiledInterface interface {
239 Srcs() android.Paths
240}
241
242func (compiler *baseCompiler) Srcs() android.Paths {
Nan Zhange42777a2018-03-27 16:19:42 -0700243 return append(android.Paths{}, compiler.srcs...)
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800244}
245
Colin Cross4d9c2d12016-07-29 12:48:20 -0700246func (compiler *baseCompiler) appendCflags(flags []string) {
247 compiler.Properties.Cflags = append(compiler.Properties.Cflags, flags...)
248}
249
250func (compiler *baseCompiler) appendAsflags(flags []string) {
251 compiler.Properties.Asflags = append(compiler.Properties.Asflags, flags...)
252}
253
Colin Cross42742b82016-08-01 13:20:05 -0700254func (compiler *baseCompiler) compilerProps() []interface{} {
Colin Cross0feb1692016-11-03 14:38:52 -0700255 return []interface{}{&compiler.Properties, &compiler.Proto}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700256}
257
Liz Kammer135bf552021-08-11 10:46:06 -0400258func includeBuildDirectory(prop *bool) bool {
259 return proptools.BoolDefault(prop, true)
260}
261
Liz Kammera4aa4302021-03-18 16:56:36 -0400262func (compiler *baseCompiler) includeBuildDirectory() bool {
Liz Kammer135bf552021-08-11 10:46:06 -0400263 return includeBuildDirectory(compiler.Properties.Include_build_directory)
Liz Kammera4aa4302021-03-18 16:56:36 -0400264}
265
Colin Cross42742b82016-08-01 13:20:05 -0700266func (compiler *baseCompiler) compilerInit(ctx BaseModuleContext) {}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700267
Colin Cross37047f12016-12-13 17:06:13 -0800268func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700269 deps.GeneratedSources = append(deps.GeneratedSources, compiler.Properties.Generated_sources...)
Jooyung Hanac07f882020-07-05 03:54:35 +0900270 deps.GeneratedSources = removeListFromList(deps.GeneratedSources, compiler.Properties.Exclude_generated_sources)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700271 deps.GeneratedHeaders = append(deps.GeneratedHeaders, compiler.Properties.Generated_headers...)
272
Colin Crossfe17f6f2019-03-28 19:30:56 -0700273 android.ProtoDeps(ctx, &compiler.Proto)
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700274 if compiler.hasSrcExt(".proto") {
Nan Zhang0007d812017-11-07 10:57:05 -0800275 deps = protoDeps(ctx, deps, &compiler.Proto, Bool(compiler.Properties.Proto.Static))
Colin Cross0c461f12016-10-20 16:11:43 -0700276 }
277
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800278 if Bool(compiler.Properties.Openmp) {
279 deps.StaticLibs = append(deps.StaticLibs, "libomp")
280 }
281
Colin Cross4d9c2d12016-07-29 12:48:20 -0700282 return deps
283}
284
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800285// Return true if the module is in the WarningAllowedProjects.
286func warningsAreAllowed(subdir string) bool {
287 subdir += "/"
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800288 return android.HasAnyPrefix(subdir, config.WarningAllowedProjects)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800289}
290
Colin Cross571cccf2019-02-04 11:22:08 -0800291func addToModuleList(ctx ModuleContext, key android.OnceKey, module string) {
292 getNamedMapForConfig(ctx.Config(), key).Store(module, true)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800293}
294
Jingwen Chen97b85312021-10-08 10:41:31 +0000295func maybeReplaceGnuToC(gnuExtensions *bool, cStd string, cppStd string) (string, string) {
296 if gnuExtensions != nil && *gnuExtensions == false {
297 cStd = gnuToCReplacer.Replace(cStd)
298 cppStd = gnuToCReplacer.Replace(cppStd)
299 }
300 return cStd, cppStd
301}
302
303func parseCppStd(cppStdPtr *string) string {
304 cppStd := String(cppStdPtr)
305 switch cppStd {
306 case "":
Chris Parsons79bd2b72021-11-29 17:52:41 -0500307 return config.CppStdVersion
Jingwen Chen97b85312021-10-08 10:41:31 +0000308 case "experimental":
Chris Parsons79bd2b72021-11-29 17:52:41 -0500309 return config.ExperimentalCppStdVersion
310 default:
311 return cppStd
Jingwen Chen97b85312021-10-08 10:41:31 +0000312 }
Chris Parsons79bd2b72021-11-29 17:52:41 -0500313}
314
315func parseCStd(cStdPtr *string) string {
316 cStd := String(cStdPtr)
317 switch cStd {
318 case "":
319 return config.CStdVersion
320 case "experimental":
321 return config.ExperimentalCStdVersion
322 default:
323 return cStd
324 }
Jingwen Chen97b85312021-10-08 10:41:31 +0000325}
326
Colin Cross4d9c2d12016-07-29 12:48:20 -0700327// Create a Flags struct that collects the compile flags from global values,
328// per-target values, module type values, and per-module Blueprints properties
Colin Crossf18e1102017-11-16 14:33:08 -0800329func (compiler *baseCompiler) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags {
Colin Crossb98c8b02016-07-29 13:44:28 -0700330 tc := ctx.toolchain()
Yi Kong950e0ba2019-10-08 02:27:17 -0700331 modulePath := android.PathForModuleSrc(ctx).String()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700332
Colin Cross8a497952019-03-05 22:25:09 -0800333 compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, compiler.Properties.Srcs, compiler.Properties.Exclude_srcs)
Colin Crossf18e1102017-11-16 14:33:08 -0800334 compiler.srcsBeforeGen = append(compiler.srcsBeforeGen, deps.GeneratedSources...)
335
Colin Cross4d9c2d12016-07-29 12:48:20 -0700336 CheckBadCompilerFlags(ctx, "cflags", compiler.Properties.Cflags)
337 CheckBadCompilerFlags(ctx, "cppflags", compiler.Properties.Cppflags)
338 CheckBadCompilerFlags(ctx, "conlyflags", compiler.Properties.Conlyflags)
339 CheckBadCompilerFlags(ctx, "asflags", compiler.Properties.Asflags)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900340 CheckBadCompilerFlags(ctx, "vendor.cflags", compiler.Properties.Target.Vendor.Cflags)
Justin Yun63e9ec72020-10-29 16:49:43 +0900341 CheckBadCompilerFlags(ctx, "product.cflags", compiler.Properties.Target.Product.Cflags)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900342 CheckBadCompilerFlags(ctx, "recovery.cflags", compiler.Properties.Target.Recovery.Cflags)
Yifan Hong6da33c22020-10-27 15:01:21 -0700343 CheckBadCompilerFlags(ctx, "vendor_ramdisk.cflags", compiler.Properties.Target.Vendor_ramdisk.Cflags)
Jiyong Parka592b6f2021-07-16 16:05:50 +0900344 CheckBadCompilerFlags(ctx, "platform.cflags", compiler.Properties.Target.Platform.Cflags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700345
Colin Cross0b9f31f2019-02-28 11:00:01 -0800346 esc := proptools.NinjaAndShellEscapeList
Colin Cross4b963f82016-09-29 14:06:02 -0700347
Colin Cross4af21ed2019-11-04 09:37:55 -0800348 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Cflags)...)
349 flags.Local.CppFlags = append(flags.Local.CppFlags, esc(compiler.Properties.Cppflags)...)
350 flags.Local.ConlyFlags = append(flags.Local.ConlyFlags, esc(compiler.Properties.Conlyflags)...)
351 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Asflags)...)
352 flags.Local.YasmFlags = append(flags.Local.YasmFlags, esc(compiler.Properties.Asflags)...)
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700353
354 flags.Yacc = compiler.Properties.Yacc
Matthias Maennich22fd4d12020-07-15 10:58:56 +0200355 flags.Lex = compiler.Properties.Lex
Colin Cross4d9c2d12016-07-29 12:48:20 -0700356
357 // Include dir cflags
Colin Cross4d9c2d12016-07-29 12:48:20 -0700358 localIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Local_include_dirs)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700359 if len(localIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700360 f := includeDirsToFlags(localIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800361 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
362 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700363 }
364 rootIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Include_dirs)
365 if len(rootIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700366 f := includeDirsToFlags(rootIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800367 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
368 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700369 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700370
Liz Kammera4aa4302021-03-18 16:56:36 -0400371 if compiler.includeBuildDirectory() {
Yi Kong950e0ba2019-10-08 02:27:17 -0700372 flags.Local.CommonFlags = append(flags.Local.CommonFlags, "-I"+modulePath)
373 flags.Local.YasmFlags = append(flags.Local.YasmFlags, "-I"+modulePath)
Dan Albert899c23e2018-12-06 11:04:03 -0800374 }
Colin Crossc3199482017-03-30 15:03:04 -0700375
Colin Cross87dd9632017-11-03 13:31:05 -0700376 if !(ctx.useSdk() || ctx.useVndk()) || ctx.Host() {
377 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
378 "${config.CommonGlobalIncludes}",
Orion Hodson5cffce12020-05-27 12:47:32 +0000379 tc.IncludeFlags())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700380 }
381
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700382 if ctx.useSdk() {
Dan Albertfac114b2018-11-14 21:22:00 -0800383 // TODO: Switch to --sysroot.
Colin Cross4d9c2d12016-07-29 12:48:20 -0700384 // The NDK headers are installed to a common sysroot. While a more
385 // typical Soong approach would be to only make the headers for the
386 // library you're using available, we're trying to emulate the NDK
387 // behavior here, and the NDK always has all the NDK headers available.
Colin Crossc3199482017-03-30 15:03:04 -0700388 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700389 "-isystem "+getCurrentIncludePath(ctx).String(),
Chih-Hung Hsieh1e7d1bf2018-03-15 18:44:57 -0700390 "-isystem "+getCurrentIncludePath(ctx).Join(ctx, config.NDKTriple(tc)).String())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700391 }
392
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700393 if ctx.useVndk() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800394 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VNDK__")
Justin Yun13decfb2021-03-08 19:25:55 +0900395 if ctx.inVendor() {
396 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VENDOR__")
397 } else if ctx.inProduct() {
398 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_PRODUCT__")
399 }
Dan Willemsenb916b802017-03-19 13:44:32 -0700400 }
401
Jiyong Parkd54aee52018-06-09 01:32:54 +0900402 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800403 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RECOVERY__")
Jiyong Parkd54aee52018-06-09 01:32:54 +0900404 }
405
David Anderson2c8075c2022-02-16 21:53:13 -0800406 if ctx.inRecovery() || ctx.inRamdisk() || ctx.inVendorRamdisk() {
407 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RAMDISK__")
408 }
409
Colin Crosse07f2312020-08-13 11:24:56 -0700410 if ctx.apexVariationName() != "" {
Jooyung Hanc87a0592020-03-02 17:44:33 +0900411 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_APEX__")
Jooyung Han24282772020-03-21 23:20:55 +0900412 if ctx.Device() {
Dan Albertc8060532020-07-22 22:32:17 -0700413 flags.Global.CommonFlags = append(flags.Global.CommonFlags,
Dan Albertb19953d2020-11-17 15:29:36 -0800414 fmt.Sprintf("-D__ANDROID_APEX_MIN_SDK_VERSION__=%d",
Dan Albertc8060532020-07-22 22:32:17 -0700415 ctx.apexSdkVersion().FinalOrFutureInt()))
Jooyung Han24282772020-03-21 23:20:55 +0900416 }
Jiyong Park58e364a2019-01-19 19:24:06 +0900417 }
418
Victor Khimenko1a31f802020-09-17 03:07:31 +0200419 if ctx.Target().NativeBridge == android.NativeBridgeEnabled {
420 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_NATIVE_BRIDGE__")
421 }
422
Nan Zhang0007d812017-11-07 10:57:05 -0800423 instructionSet := String(compiler.Properties.Instruction_set)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700424 if flags.RequiredInstructionSet != "" {
425 instructionSet = flags.RequiredInstructionSet
426 }
Colin Cross33bac242021-07-14 17:03:16 -0700427 instructionSetFlags, err := tc.InstructionSetFlags(instructionSet)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700428 if err != nil {
429 ctx.ModuleErrorf("%s", err)
430 }
431
432 CheckBadCompilerFlags(ctx, "release.cflags", compiler.Properties.Release.Cflags)
433
434 // TODO: debug
Colin Cross4af21ed2019-11-04 09:37:55 -0800435 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Release.Cflags)...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700436
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700437 CheckBadCompilerFlags(ctx, "clang_cflags", compiler.Properties.Clang_cflags)
438 CheckBadCompilerFlags(ctx, "clang_asflags", compiler.Properties.Clang_asflags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700439
Colin Cross4af21ed2019-11-04 09:37:55 -0800440 flags.Local.CFlags = config.ClangFilterUnknownCflags(flags.Local.CFlags)
441 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Clang_cflags)...)
442 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Clang_asflags)...)
443 flags.Local.CppFlags = config.ClangFilterUnknownCflags(flags.Local.CppFlags)
444 flags.Local.ConlyFlags = config.ClangFilterUnknownCflags(flags.Local.ConlyFlags)
445 flags.Local.LdFlags = config.ClangFilterUnknownCflags(flags.Local.LdFlags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700446
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700447 target := "-target " + tc.ClangTriple()
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700448 if ctx.Os().Class == android.Device {
Jiyong Parka008fb02021-03-16 17:15:53 +0900449 version := ctx.minSdkVersion()
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700450 if version == "" || version == "current" {
Dan Albert0b176c82020-07-23 16:43:25 -0700451 target += strconv.Itoa(android.FutureApiLevelInt)
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700452 } else {
453 target += version
454 }
455 }
456
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700457 gccPrefix := "-B" + config.ToolPath(tc)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700458
Colin Cross4af21ed2019-11-04 09:37:55 -0800459 flags.Global.CFlags = append(flags.Global.CFlags, target, gccPrefix)
460 flags.Global.AsFlags = append(flags.Global.AsFlags, target, gccPrefix)
461 flags.Global.LdFlags = append(flags.Global.LdFlags, target, gccPrefix)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700462
Colin Crossb98c8b02016-07-29 13:44:28 -0700463 hod := "Host"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700464 if ctx.Os().Class == android.Device {
Colin Crossb98c8b02016-07-29 13:44:28 -0700465 hod = "Device"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700466 }
467
Colin Cross4af21ed2019-11-04 09:37:55 -0800468 flags.Global.CommonFlags = append(flags.Global.CommonFlags, instructionSetFlags)
469 flags.Global.ConlyFlags = append([]string{"${config.CommonGlobalConlyflags}"}, flags.Global.ConlyFlags...)
470 flags.Global.CppFlags = append([]string{fmt.Sprintf("${config.%sGlobalCppflags}", hod)}, flags.Global.CppFlags...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700471
Colin Cross33bac242021-07-14 17:03:16 -0700472 flags.Global.AsFlags = append(flags.Global.AsFlags, tc.Asflags())
Colin Cross0523ba22021-07-14 18:45:05 -0700473 flags.Global.CppFlags = append([]string{"${config.CommonGlobalCppflags}"}, flags.Global.CppFlags...)
Colin Cross4af21ed2019-11-04 09:37:55 -0800474 flags.Global.CommonFlags = append(flags.Global.CommonFlags,
Colin Cross33bac242021-07-14 17:03:16 -0700475 tc.Cflags(),
Colin Cross0523ba22021-07-14 18:45:05 -0700476 "${config.CommonGlobalCflags}",
477 fmt.Sprintf("${config.%sGlobalCflags}", hod))
Colin Cross4d9c2d12016-07-29 12:48:20 -0700478
Chris Wailesb2703ad2021-07-30 13:25:42 -0700479 if android.IsThirdPartyPath(modulePath) {
Colin Cross0523ba22021-07-14 18:45:05 -0700480 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "${config.ExternalCflags}")
Yi Kongcc80f8d2018-06-06 14:42:44 -0700481 }
482
Dan Willemsen10db3842018-10-21 18:42:46 -0700483 if tc.Bionic() {
Colin Cross87dd9632017-11-03 13:31:05 -0700484 if Bool(compiler.Properties.Rtti) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800485 flags.Local.CppFlags = append(flags.Local.CppFlags, "-frtti")
Colin Cross87dd9632017-11-03 13:31:05 -0700486 } else {
Colin Cross4af21ed2019-11-04 09:37:55 -0800487 flags.Local.CppFlags = append(flags.Local.CppFlags, "-fno-rtti")
Colin Cross87dd9632017-11-03 13:31:05 -0700488 }
489 }
490
Colin Cross4af21ed2019-11-04 09:37:55 -0800491 flags.Global.AsFlags = append(flags.Global.AsFlags, "-D__ASSEMBLY__")
Colin Cross87dd9632017-11-03 13:31:05 -0700492
Colin Cross33bac242021-07-14 17:03:16 -0700493 flags.Global.CppFlags = append(flags.Global.CppFlags, tc.Cppflags())
Colin Cross87dd9632017-11-03 13:31:05 -0700494
Colin Cross4af21ed2019-11-04 09:37:55 -0800495 flags.Global.YasmFlags = append(flags.Global.YasmFlags, tc.YasmFlags())
Colin Cross87dd9632017-11-03 13:31:05 -0700496
Colin Cross33bac242021-07-14 17:03:16 -0700497 flags.Global.CommonFlags = append(flags.Global.CommonFlags, tc.ToolchainCflags())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700498
Chris Parsons79bd2b72021-11-29 17:52:41 -0500499 cStd := parseCStd(compiler.Properties.C_std)
Jingwen Chen97b85312021-10-08 10:41:31 +0000500 cppStd := parseCppStd(compiler.Properties.Cpp_std)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800501
Jingwen Chen97b85312021-10-08 10:41:31 +0000502 cStd, cppStd = maybeReplaceGnuToC(compiler.Properties.Gnu_extensions, cStd, cppStd)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800503
Colin Cross4af21ed2019-11-04 09:37:55 -0800504 flags.Local.ConlyFlags = append([]string{"-std=" + cStd}, flags.Local.ConlyFlags...)
505 flags.Local.CppFlags = append([]string{"-std=" + cppStd}, flags.Local.CppFlags...)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800506
Justin Yun63e9ec72020-10-29 16:49:43 +0900507 if ctx.inVendor() {
508 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor.Cflags)...)
509 }
510
511 if ctx.inProduct() {
Justin Yun6977e8a2020-10-29 18:24:11 +0900512 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Product.Cflags)...)
Jiyong Parka622de82017-08-10 13:33:27 +0900513 }
514
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900515 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800516 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Recovery.Cflags)...)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900517 }
518
Yifan Hong6da33c22020-10-27 15:01:21 -0700519 if ctx.inVendorRamdisk() {
520 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor_ramdisk.Cflags)...)
521 }
Jiyong Parka592b6f2021-07-16 16:05:50 +0900522 if !ctx.useSdk() {
523 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Platform.Cflags)...)
524 }
Yifan Hong6da33c22020-10-27 15:01:21 -0700525
Colin Cross4d9c2d12016-07-29 12:48:20 -0700526 // We can enforce some rules more strictly in the code we own. strict
527 // indicates if this is code that we can be stricter with. If we have
528 // rules that we want to apply to *our* code (but maybe can't for
529 // vendor/device specific things), we could extend this to be a ternary
530 // value.
531 strict := true
Yi Kong950e0ba2019-10-08 02:27:17 -0700532 if strings.HasPrefix(modulePath, "external/") {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700533 strict = false
534 }
535
536 // Can be used to make some annotations stricter for code we can fix
537 // (such as when we mark functions as deprecated).
538 if strict {
Colin Cross4af21ed2019-11-04 09:37:55 -0800539 flags.Global.CFlags = append(flags.Global.CFlags, "-DANDROID_STRICT")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700540 }
541
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700542 if compiler.hasSrcExt(".proto") {
Colin Cross0c461f12016-10-20 16:11:43 -0700543 flags = protoFlags(ctx, flags, &compiler.Proto)
544 }
545
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700546 if compiler.hasSrcExt(".y") || compiler.hasSrcExt(".yy") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800547 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700548 "-I"+android.PathForModuleGen(ctx, "yacc", ctx.ModuleDir()).String())
549 }
550
Dan Willemsene1240db2016-11-03 14:28:51 -0700551 if compiler.hasSrcExt(".aidl") {
Jooyung Hane197d8b2021-01-05 10:33:16 +0900552 flags.aidlFlags = append(flags.aidlFlags, compiler.Properties.Aidl.Flags...)
Dan Willemsene1240db2016-11-03 14:28:51 -0700553 if len(compiler.Properties.Aidl.Local_include_dirs) > 0 {
554 localAidlIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Aidl.Local_include_dirs)
555 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(localAidlIncludeDirs))
556 }
557 if len(compiler.Properties.Aidl.Include_dirs) > 0 {
558 rootAidlIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Aidl.Include_dirs)
559 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs))
560 }
561
Martijn Coeneneab15642018-03-09 09:29:59 +0100562 if Bool(compiler.Properties.Aidl.Generate_traces) {
563 flags.aidlFlags = append(flags.aidlFlags, "-t")
564 }
565
Jooyung Han07f70c02021-11-06 07:08:45 +0900566 aidlMinSdkVersion := ctx.minSdkVersion()
567 if aidlMinSdkVersion == "" {
568 aidlMinSdkVersion = "platform_apis"
569 }
570 flags.aidlFlags = append(flags.aidlFlags, "--min_sdk_version="+aidlMinSdkVersion)
571
Colin Cross4af21ed2019-11-04 09:37:55 -0800572 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsene1240db2016-11-03 14:28:51 -0700573 "-I"+android.PathForModuleGen(ctx, "aidl").String())
574 }
575
Jeff Vander Stoepd6126272019-07-15 19:08:37 -0700576 if compiler.hasSrcExt(".rscript") || compiler.hasSrcExt(".fs") {
Colin Cross2a252be2017-05-01 17:37:24 -0700577 flags = rsFlags(ctx, flags, &compiler.Properties)
578 }
579
Inseob Kim21f26902018-09-06 00:55:20 +0900580 if compiler.hasSrcExt(".sysprop") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800581 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Inseob Kim21f26902018-09-06 00:55:20 +0900582 "-I"+android.PathForModuleGen(ctx, "sysprop", "include").String())
583 }
584
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800585 if len(compiler.Properties.Srcs) > 0 {
586 module := ctx.ModuleDir() + "/Android.bp:" + ctx.ModuleName()
Colin Cross4af21ed2019-11-04 09:37:55 -0800587 if inList("-Wno-error", flags.Local.CFlags) || inList("-Wno-error", flags.Local.CppFlags) {
Colin Cross571cccf2019-02-04 11:22:08 -0800588 addToModuleList(ctx, modulesUsingWnoErrorKey, module)
Colin Cross4af21ed2019-11-04 09:37:55 -0800589 } else if !inList("-Werror", flags.Local.CFlags) && !inList("-Werror", flags.Local.CppFlags) {
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800590 if warningsAreAllowed(ctx.ModuleDir()) {
Colin Cross571cccf2019-02-04 11:22:08 -0800591 addToModuleList(ctx, modulesAddedWallKey, module)
Colin Cross4af21ed2019-11-04 09:37:55 -0800592 flags.Local.CFlags = append([]string{"-Wall"}, flags.Local.CFlags...)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800593 } else {
Colin Cross4af21ed2019-11-04 09:37:55 -0800594 flags.Local.CFlags = append([]string{"-Wall", "-Werror"}, flags.Local.CFlags...)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800595 }
596 }
597 }
598
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800599 if Bool(compiler.Properties.Openmp) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800600 flags.Local.CFlags = append(flags.Local.CFlags, "-fopenmp")
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800601 }
602
Colin Cross440e0d02020-06-11 11:32:11 -0700603 // Exclude directories from manual binder interface allowed list.
Ivan Lozanod094d402019-11-26 10:32:50 -0800604 //TODO(b/145621474): Move this check into IInterface.h when clang-tidy no longer uses absolute paths.
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800605 if android.HasAnyPrefix(ctx.ModuleDir(), allowedManualInterfacePaths) {
Ivan Lozanod094d402019-11-26 10:32:50 -0800606 flags.Local.CFlags = append(flags.Local.CFlags, "-DDO_NOT_CHECK_MANUAL_BINDER_INTERFACES")
607 }
608
Colin Cross4d9c2d12016-07-29 12:48:20 -0700609 return flags
610}
611
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700612func (compiler *baseCompiler) hasSrcExt(ext string) bool {
Colin Crossf18e1102017-11-16 14:33:08 -0800613 for _, src := range compiler.srcsBeforeGen {
614 if src.Ext() == ext {
615 return true
616 }
617 }
Colin Cross0c461f12016-10-20 16:11:43 -0700618 for _, src := range compiler.Properties.Srcs {
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700619 if filepath.Ext(src) == ext {
Colin Cross0c461f12016-10-20 16:11:43 -0700620 return true
621 }
622 }
Colin Cross10d22312017-05-03 11:01:58 -0700623 for _, src := range compiler.Properties.OriginalSrcs {
624 if filepath.Ext(src) == ext {
625 return true
626 }
627 }
Colin Cross0c461f12016-10-20 16:11:43 -0700628
629 return false
630}
631
Yifan Hongf2ede7a2020-09-09 18:48:40 -0700632var invalidDefineCharRegex = regexp.MustCompile("[^a-zA-Z0-9_]")
633
Jooyung Han77988572019-10-18 16:26:16 +0900634// makeDefineString transforms a name of an APEX module into a value to be used as value for C define
635// For example, com.android.foo => COM_ANDROID_FOO
636func makeDefineString(name string) string {
Yifan Hongf2ede7a2020-09-09 18:48:40 -0700637 return invalidDefineCharRegex.ReplaceAllString(strings.ToUpper(name), "_")
Jooyung Han77988572019-10-18 16:26:16 +0900638}
639
Colin Cross948f0cb2016-10-17 14:24:56 -0700640var gnuToCReplacer = strings.NewReplacer("gnu", "c")
641
Colin Cross4d9c2d12016-07-29 12:48:20 -0700642func ndkPathDeps(ctx ModuleContext) android.Paths {
Dan Albert92fe7402020-07-15 13:33:30 -0700643 if ctx.Module().(*Module).IsSdkVariant() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700644 // The NDK sysroot timestamp file depends on all the NDK sysroot files
645 // (headers and libraries).
Dan Albert6ab43d82017-12-13 15:05:04 -0800646 return android.Paths{getNdkBaseTimestampFile(ctx)}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700647 }
648 return nil
649}
650
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700651func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
Inseob Kimd110f872019-12-06 13:15:38 +0900652 pathDeps := deps.GeneratedDeps
Colin Cross4d9c2d12016-07-29 12:48:20 -0700653 pathDeps = append(pathDeps, ndkPathDeps(ctx)...)
Colin Cross2f336352016-10-26 10:03:47 -0700654
Colin Cross2f336352016-10-26 10:03:47 -0700655 buildFlags := flagsToBuilderFlags(flags)
656
Colin Crossf18e1102017-11-16 14:33:08 -0800657 srcs := append(android.Paths(nil), compiler.srcsBeforeGen...)
658
Paul Duffin33056e82021-02-19 13:49:08 +0000659 srcs, genDeps, info := genSources(ctx, srcs, buildFlags)
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800660 pathDeps = append(pathDeps, genDeps...)
Colin Cross2f336352016-10-26 10:03:47 -0700661
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800662 compiler.pathDeps = pathDeps
Paul Duffin33056e82021-02-19 13:49:08 +0000663 compiler.generatedSourceInfo = info
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800664 compiler.cFlagsDeps = flags.CFlagsDeps
Colin Cross2f336352016-10-26 10:03:47 -0700665
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800666 // Save src, buildFlags and context
667 compiler.srcs = srcs
668
Colin Cross4d9c2d12016-07-29 12:48:20 -0700669 // Compile files listed in c.Properties.Srcs into objects
Chih-Hung Hsieh769a51c2021-09-17 17:18:39 -0700670 objs := compileObjs(ctx, buildFlags, "", srcs,
671 android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_disabled_srcs),
672 pathDeps, compiler.cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700673
674 if ctx.Failed() {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700675 return Objects{}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700676 }
677
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700678 return objs
Colin Cross4d9c2d12016-07-29 12:48:20 -0700679}
680
681// Compile a list of source files into objects a specified subdirectory
Chih-Hung Hsieh769a51c2021-09-17 17:18:39 -0700682func compileObjs(ctx android.ModuleContext, flags builderFlags, subdir string,
683 srcFiles, noTidySrcs, pathDeps android.Paths, cFlagsDeps android.Paths) Objects {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700684
Chih-Hung Hsieh769a51c2021-09-17 17:18:39 -0700685 return transformSourceToObj(ctx, subdir, srcFiles, noTidySrcs, flags, pathDeps, cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700686}
Yi Kong950e0ba2019-10-08 02:27:17 -0700687
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400688// Properties for rust_bindgen related to generating rust bindings.
689// This exists here so these properties can be included in a cc_default
690// which can be used in both cc and rust modules.
691type RustBindgenClangProperties struct {
692 // list of directories relative to the Blueprints file that will
693 // be added to the include path using -I
694 Local_include_dirs []string `android:"arch_variant,variant_prepend"`
695
696 // list of static libraries that provide headers for this binding.
697 Static_libs []string `android:"arch_variant,variant_prepend"`
698
699 // list of shared libraries that provide headers for this binding.
700 Shared_libs []string `android:"arch_variant"`
701
Ivan Lozano9b443832020-11-17 13:39:30 -0500702 // List of libraries which export include paths required for this module
703 Header_libs []string `android:"arch_variant,variant_prepend"`
704
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400705 // list of clang flags required to correctly interpret the headers.
706 Cflags []string `android:"arch_variant"`
707
708 // list of c++ specific clang flags required to correctly interpret the headers.
709 // This is provided primarily to make sure cppflags defined in cc_defaults are pulled in.
710 Cppflags []string `android:"arch_variant"`
711
712 // C standard version to use. Can be a specific version (such as "gnu11"),
713 // "experimental" (which will use draft versions like C1x when available),
714 // or the empty string (which will use the default).
715 //
716 // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this
717 // to "default" will use the build system default version. This cannot be set at the same time as cpp_std.
718 C_std *string
719
720 // C++ standard version to use. Can be a specific version (such as
721 // "gnu++11"), "experimental" (which will use draft versions like C++1z when
722 // available), or the empty string (which will use the default).
723 //
724 // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this
725 // to "default" will use the build system default version. This cannot be set at the same time as c_std.
726 Cpp_std *string
727
728 //TODO(b/161141999) Add support for headers from cc_library_header modules.
729}