blob: 36e509495bec22cb5058c02998f3ead01c0ca1d8 [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 {
123 // list of directories that will be added to the aidl include paths.
124 Include_dirs []string
125
126 // list of directories relative to the Blueprints file that will
127 // be added to the aidl include paths.
128 Local_include_dirs []string
Martijn Coeneneab15642018-03-09 09:29:59 +0100129
130 // whether to generate traces (for systrace) for this interface
131 Generate_traces *bool
Jooyung Hane197d8b2021-01-05 10:33:16 +0900132
133 // list of flags that will be passed to the AIDL compiler
134 Flags []string
Dan Willemsene1240db2016-11-03 14:28:51 -0700135 }
136
Colin Cross2a252be2017-05-01 17:37:24 -0700137 Renderscript struct {
138 // list of directories that will be added to the llvm-rs-cc include paths
139 Include_dirs []string
140
141 // list of flags that will be passed to llvm-rs-cc
142 Flags []string
143
144 // Renderscript API level to target
145 Target_api *string
146 }
147
Colin Cross4d9c2d12016-07-29 12:48:20 -0700148 Debug, Release struct {
149 // list of module-specific flags that will be used for C and C++ compiles in debug or
150 // release builds
151 Cflags []string `android:"arch_variant"`
152 } `android:"arch_variant"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700153
154 Target struct {
Justin Yun63e9ec72020-10-29 16:49:43 +0900155 Vendor, Product struct {
156 // list of source files that should only be used in vendor or
157 // product variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800158 Srcs []string `android:"path"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700159
Justin Yun63e9ec72020-10-29 16:49:43 +0900160 // list of source files that should not be used to build vendor
161 // or product variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800162 Exclude_srcs []string `android:"path"`
Jiyong Parka622de82017-08-10 13:33:27 +0900163
Justin Yun63e9ec72020-10-29 16:49:43 +0900164 // List of additional cflags that should be used to build vendor
165 // or product variant of the C/C++ module.
Jiyong Parka622de82017-08-10 13:33:27 +0900166 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900167
Justin Yun63e9ec72020-10-29 16:49:43 +0900168 // list of generated sources that should not be used to build
169 // vendor or product variant of the C/C++ module.
Jooyung Hanac07f882020-07-05 03:54:35 +0900170 Exclude_generated_sources []string
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700171 }
Jiyong Parkf9332f12018-02-01 00:54:12 +0900172 Recovery struct {
173 // list of source files that should only be used in the
174 // recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800175 Srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900176
177 // list of source files that should not be used to
178 // build the recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800179 Exclude_srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900180
181 // List of additional cflags that should be used to build the recovery
182 // variant of the C/C++ module.
183 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900184
185 // list of generated sources that should not be used to
186 // build the recovery variant of the C/C++ module.
187 Exclude_generated_sources []string
Jiyong Parkf9332f12018-02-01 00:54:12 +0900188 }
Yifan Hong6da33c22020-10-27 15:01:21 -0700189 Vendor_ramdisk struct {
190 // list of source files that should not be used to
191 // build the vendor ramdisk variant of the C/C++ module.
192 Exclude_srcs []string `android:"path"`
193
194 // List of additional cflags that should be used to build the vendor ramdisk
195 // variant of the C/C++ module.
196 Cflags []string
197 }
Jiyong Parka592b6f2021-07-16 16:05:50 +0900198 Platform struct {
199 // List of additional cflags that should be used to build the platform
200 // variant of the C/C++ module.
201 Cflags []string
202 }
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700203 }
Colin Cross10d22312017-05-03 11:01:58 -0700204
Colin Cross38f794e2017-09-07 10:53:07 -0700205 Proto struct {
206 // Link statically against the protobuf runtime
Nan Zhang0007d812017-11-07 10:57:05 -0800207 Static *bool `android:"arch_variant"`
Colin Cross38f794e2017-09-07 10:53:07 -0700208 } `android:"arch_variant"`
209
Colin Cross10d22312017-05-03 11:01:58 -0700210 // Stores the original list of source files before being cleared by library reuse
211 OriginalSrcs []string `blueprint:"mutated"`
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800212
213 // Build and link with OpenMP
214 Openmp *bool `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -0700215}
216
Colin Crossb916a382016-07-29 17:28:03 -0700217func NewBaseCompiler() *baseCompiler {
218 return &baseCompiler{}
219}
220
Colin Cross4d9c2d12016-07-29 12:48:20 -0700221type baseCompiler struct {
222 Properties BaseCompilerProperties
Colin Cross38f794e2017-09-07 10:53:07 -0700223 Proto android.ProtoProperties
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800224 cFlagsDeps android.Paths
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800225 pathDeps android.Paths
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800226 flags builderFlags
Colin Crossf18e1102017-11-16 14:33:08 -0800227
228 // Sources that were passed to the C/C++ compiler
229 srcs android.Paths
230
231 // Sources that were passed in the Android.bp file, including generated sources generated by
232 // other modules and filegroups. May include source files that have not yet been translated to
233 // C/C++ (.aidl, .proto, etc.)
234 srcsBeforeGen android.Paths
Paul Duffin33056e82021-02-19 13:49:08 +0000235
236 generatedSourceInfo
Colin Cross4d9c2d12016-07-29 12:48:20 -0700237}
238
239var _ compiler = (*baseCompiler)(nil)
240
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800241type CompiledInterface interface {
242 Srcs() android.Paths
243}
244
245func (compiler *baseCompiler) Srcs() android.Paths {
Nan Zhange42777a2018-03-27 16:19:42 -0700246 return append(android.Paths{}, compiler.srcs...)
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800247}
248
Colin Cross4d9c2d12016-07-29 12:48:20 -0700249func (compiler *baseCompiler) appendCflags(flags []string) {
250 compiler.Properties.Cflags = append(compiler.Properties.Cflags, flags...)
251}
252
253func (compiler *baseCompiler) appendAsflags(flags []string) {
254 compiler.Properties.Asflags = append(compiler.Properties.Asflags, flags...)
255}
256
Colin Cross42742b82016-08-01 13:20:05 -0700257func (compiler *baseCompiler) compilerProps() []interface{} {
Colin Cross0feb1692016-11-03 14:38:52 -0700258 return []interface{}{&compiler.Properties, &compiler.Proto}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700259}
260
Liz Kammer135bf552021-08-11 10:46:06 -0400261func includeBuildDirectory(prop *bool) bool {
262 return proptools.BoolDefault(prop, true)
263}
264
Liz Kammera4aa4302021-03-18 16:56:36 -0400265func (compiler *baseCompiler) includeBuildDirectory() bool {
Liz Kammer135bf552021-08-11 10:46:06 -0400266 return includeBuildDirectory(compiler.Properties.Include_build_directory)
Liz Kammera4aa4302021-03-18 16:56:36 -0400267}
268
Colin Cross42742b82016-08-01 13:20:05 -0700269func (compiler *baseCompiler) compilerInit(ctx BaseModuleContext) {}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700270
Colin Cross37047f12016-12-13 17:06:13 -0800271func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700272 deps.GeneratedSources = append(deps.GeneratedSources, compiler.Properties.Generated_sources...)
Jooyung Hanac07f882020-07-05 03:54:35 +0900273 deps.GeneratedSources = removeListFromList(deps.GeneratedSources, compiler.Properties.Exclude_generated_sources)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700274 deps.GeneratedHeaders = append(deps.GeneratedHeaders, compiler.Properties.Generated_headers...)
275
Colin Crossfe17f6f2019-03-28 19:30:56 -0700276 android.ProtoDeps(ctx, &compiler.Proto)
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700277 if compiler.hasSrcExt(".proto") {
Nan Zhang0007d812017-11-07 10:57:05 -0800278 deps = protoDeps(ctx, deps, &compiler.Proto, Bool(compiler.Properties.Proto.Static))
Colin Cross0c461f12016-10-20 16:11:43 -0700279 }
280
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800281 if Bool(compiler.Properties.Openmp) {
282 deps.StaticLibs = append(deps.StaticLibs, "libomp")
283 }
284
Colin Cross4d9c2d12016-07-29 12:48:20 -0700285 return deps
286}
287
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800288// Return true if the module is in the WarningAllowedProjects.
289func warningsAreAllowed(subdir string) bool {
290 subdir += "/"
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800291 return android.HasAnyPrefix(subdir, config.WarningAllowedProjects)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800292}
293
Colin Cross571cccf2019-02-04 11:22:08 -0800294func addToModuleList(ctx ModuleContext, key android.OnceKey, module string) {
295 getNamedMapForConfig(ctx.Config(), key).Store(module, true)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800296}
297
Jingwen Chen97b85312021-10-08 10:41:31 +0000298func maybeReplaceGnuToC(gnuExtensions *bool, cStd string, cppStd string) (string, string) {
299 if gnuExtensions != nil && *gnuExtensions == false {
300 cStd = gnuToCReplacer.Replace(cStd)
301 cppStd = gnuToCReplacer.Replace(cppStd)
302 }
303 return cStd, cppStd
304}
305
306func parseCppStd(cppStdPtr *string) string {
307 cppStd := String(cppStdPtr)
308 switch cppStd {
309 case "":
Chris Parsons79bd2b72021-11-29 17:52:41 -0500310 return config.CppStdVersion
Jingwen Chen97b85312021-10-08 10:41:31 +0000311 case "experimental":
Chris Parsons79bd2b72021-11-29 17:52:41 -0500312 return config.ExperimentalCppStdVersion
313 default:
314 return cppStd
Jingwen Chen97b85312021-10-08 10:41:31 +0000315 }
Chris Parsons79bd2b72021-11-29 17:52:41 -0500316}
317
318func parseCStd(cStdPtr *string) string {
319 cStd := String(cStdPtr)
320 switch cStd {
321 case "":
322 return config.CStdVersion
323 case "experimental":
324 return config.ExperimentalCStdVersion
325 default:
326 return cStd
327 }
Jingwen Chen97b85312021-10-08 10:41:31 +0000328}
329
Colin Cross4d9c2d12016-07-29 12:48:20 -0700330// Create a Flags struct that collects the compile flags from global values,
331// per-target values, module type values, and per-module Blueprints properties
Colin Crossf18e1102017-11-16 14:33:08 -0800332func (compiler *baseCompiler) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags {
Colin Crossb98c8b02016-07-29 13:44:28 -0700333 tc := ctx.toolchain()
Yi Kong950e0ba2019-10-08 02:27:17 -0700334 modulePath := android.PathForModuleSrc(ctx).String()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700335
Jan Altensen3bebd4f2020-09-10 15:21:40 +0200336 additionalIncludeDirs := ctx.DeviceConfig().TargetSpecificHeaderPath()
337 if len(additionalIncludeDirs) > 0 {
338 // devices can have multiple paths in TARGET_SPECIFIC_HEADER_PATH
339 // add -I in front of all of them
340 if (strings.Contains(additionalIncludeDirs, " ")) {
341 additionalIncludeDirs = strings.ReplaceAll(additionalIncludeDirs, " ", " -I")
342 }
343 flags.Local.CommonFlags = append(flags.Local.CommonFlags, "-I" + additionalIncludeDirs)
344 }
345
Colin Cross8a497952019-03-05 22:25:09 -0800346 compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, compiler.Properties.Srcs, compiler.Properties.Exclude_srcs)
Colin Crossf18e1102017-11-16 14:33:08 -0800347 compiler.srcsBeforeGen = append(compiler.srcsBeforeGen, deps.GeneratedSources...)
348
Colin Cross4d9c2d12016-07-29 12:48:20 -0700349 CheckBadCompilerFlags(ctx, "cflags", compiler.Properties.Cflags)
350 CheckBadCompilerFlags(ctx, "cppflags", compiler.Properties.Cppflags)
351 CheckBadCompilerFlags(ctx, "conlyflags", compiler.Properties.Conlyflags)
352 CheckBadCompilerFlags(ctx, "asflags", compiler.Properties.Asflags)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900353 CheckBadCompilerFlags(ctx, "vendor.cflags", compiler.Properties.Target.Vendor.Cflags)
Justin Yun63e9ec72020-10-29 16:49:43 +0900354 CheckBadCompilerFlags(ctx, "product.cflags", compiler.Properties.Target.Product.Cflags)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900355 CheckBadCompilerFlags(ctx, "recovery.cflags", compiler.Properties.Target.Recovery.Cflags)
Yifan Hong6da33c22020-10-27 15:01:21 -0700356 CheckBadCompilerFlags(ctx, "vendor_ramdisk.cflags", compiler.Properties.Target.Vendor_ramdisk.Cflags)
Jiyong Parka592b6f2021-07-16 16:05:50 +0900357 CheckBadCompilerFlags(ctx, "platform.cflags", compiler.Properties.Target.Platform.Cflags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700358
Colin Cross0b9f31f2019-02-28 11:00:01 -0800359 esc := proptools.NinjaAndShellEscapeList
Colin Cross4b963f82016-09-29 14:06:02 -0700360
Colin Cross4af21ed2019-11-04 09:37:55 -0800361 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Cflags)...)
362 flags.Local.CppFlags = append(flags.Local.CppFlags, esc(compiler.Properties.Cppflags)...)
363 flags.Local.ConlyFlags = append(flags.Local.ConlyFlags, esc(compiler.Properties.Conlyflags)...)
364 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Asflags)...)
365 flags.Local.YasmFlags = append(flags.Local.YasmFlags, esc(compiler.Properties.Asflags)...)
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700366
367 flags.Yacc = compiler.Properties.Yacc
Matthias Maennich22fd4d12020-07-15 10:58:56 +0200368 flags.Lex = compiler.Properties.Lex
Colin Cross4d9c2d12016-07-29 12:48:20 -0700369
370 // Include dir cflags
Colin Cross4d9c2d12016-07-29 12:48:20 -0700371 localIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Local_include_dirs)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700372 if len(localIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700373 f := includeDirsToFlags(localIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800374 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
375 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700376 }
377 rootIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Include_dirs)
378 if len(rootIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700379 f := includeDirsToFlags(rootIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800380 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
381 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700382 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700383
Liz Kammera4aa4302021-03-18 16:56:36 -0400384 if compiler.includeBuildDirectory() {
Yi Kong950e0ba2019-10-08 02:27:17 -0700385 flags.Local.CommonFlags = append(flags.Local.CommonFlags, "-I"+modulePath)
386 flags.Local.YasmFlags = append(flags.Local.YasmFlags, "-I"+modulePath)
Dan Albert899c23e2018-12-06 11:04:03 -0800387 }
Colin Crossc3199482017-03-30 15:03:04 -0700388
Colin Cross87dd9632017-11-03 13:31:05 -0700389 if !(ctx.useSdk() || ctx.useVndk()) || ctx.Host() {
390 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
391 "${config.CommonGlobalIncludes}",
Orion Hodson5cffce12020-05-27 12:47:32 +0000392 tc.IncludeFlags())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700393 }
394
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700395 if ctx.useSdk() {
Dan Albertfac114b2018-11-14 21:22:00 -0800396 // TODO: Switch to --sysroot.
Colin Cross4d9c2d12016-07-29 12:48:20 -0700397 // The NDK headers are installed to a common sysroot. While a more
398 // typical Soong approach would be to only make the headers for the
399 // library you're using available, we're trying to emulate the NDK
400 // behavior here, and the NDK always has all the NDK headers available.
Colin Crossc3199482017-03-30 15:03:04 -0700401 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700402 "-isystem "+getCurrentIncludePath(ctx).String(),
Chih-Hung Hsieh1e7d1bf2018-03-15 18:44:57 -0700403 "-isystem "+getCurrentIncludePath(ctx).Join(ctx, config.NDKTriple(tc)).String())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700404 }
405
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700406 if ctx.useVndk() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800407 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VNDK__")
Justin Yun13decfb2021-03-08 19:25:55 +0900408 if ctx.inVendor() {
409 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VENDOR__")
410 } else if ctx.inProduct() {
411 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_PRODUCT__")
412 }
Dan Willemsenb916b802017-03-19 13:44:32 -0700413 }
414
Jiyong Parkd54aee52018-06-09 01:32:54 +0900415 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800416 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RECOVERY__")
Jiyong Parkd54aee52018-06-09 01:32:54 +0900417 }
418
David Anderson2c8075c2022-02-16 21:53:13 -0800419 if ctx.inRecovery() || ctx.inRamdisk() || ctx.inVendorRamdisk() {
420 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RAMDISK__")
421 }
422
Colin Crosse07f2312020-08-13 11:24:56 -0700423 if ctx.apexVariationName() != "" {
Jooyung Hanc87a0592020-03-02 17:44:33 +0900424 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_APEX__")
Jooyung Han24282772020-03-21 23:20:55 +0900425 if ctx.Device() {
Dan Albertc8060532020-07-22 22:32:17 -0700426 flags.Global.CommonFlags = append(flags.Global.CommonFlags,
Dan Albertb19953d2020-11-17 15:29:36 -0800427 fmt.Sprintf("-D__ANDROID_APEX_MIN_SDK_VERSION__=%d",
Dan Albertc8060532020-07-22 22:32:17 -0700428 ctx.apexSdkVersion().FinalOrFutureInt()))
Jooyung Han24282772020-03-21 23:20:55 +0900429 }
Jiyong Park58e364a2019-01-19 19:24:06 +0900430 }
431
Victor Khimenko1a31f802020-09-17 03:07:31 +0200432 if ctx.Target().NativeBridge == android.NativeBridgeEnabled {
433 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_NATIVE_BRIDGE__")
434 }
435
Nan Zhang0007d812017-11-07 10:57:05 -0800436 instructionSet := String(compiler.Properties.Instruction_set)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700437 if flags.RequiredInstructionSet != "" {
438 instructionSet = flags.RequiredInstructionSet
439 }
Colin Cross33bac242021-07-14 17:03:16 -0700440 instructionSetFlags, err := tc.InstructionSetFlags(instructionSet)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700441 if err != nil {
442 ctx.ModuleErrorf("%s", err)
443 }
444
445 CheckBadCompilerFlags(ctx, "release.cflags", compiler.Properties.Release.Cflags)
446
447 // TODO: debug
Colin Cross4af21ed2019-11-04 09:37:55 -0800448 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Release.Cflags)...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700449
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700450 CheckBadCompilerFlags(ctx, "clang_cflags", compiler.Properties.Clang_cflags)
451 CheckBadCompilerFlags(ctx, "clang_asflags", compiler.Properties.Clang_asflags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700452
Colin Cross4af21ed2019-11-04 09:37:55 -0800453 flags.Local.CFlags = config.ClangFilterUnknownCflags(flags.Local.CFlags)
454 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Clang_cflags)...)
455 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Clang_asflags)...)
456 flags.Local.CppFlags = config.ClangFilterUnknownCflags(flags.Local.CppFlags)
457 flags.Local.ConlyFlags = config.ClangFilterUnknownCflags(flags.Local.ConlyFlags)
458 flags.Local.LdFlags = config.ClangFilterUnknownCflags(flags.Local.LdFlags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700459
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700460 target := "-target " + tc.ClangTriple()
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700461 if ctx.Os().Class == android.Device {
Jiyong Parka008fb02021-03-16 17:15:53 +0900462 version := ctx.minSdkVersion()
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700463 if version == "" || version == "current" {
Dan Albert0b176c82020-07-23 16:43:25 -0700464 target += strconv.Itoa(android.FutureApiLevelInt)
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700465 } else {
466 target += version
467 }
468 }
469
Chih-Hung Hsieh57da8262022-02-15 22:48:04 -0800470 flags.Global.CFlags = append(flags.Global.CFlags, target)
471 flags.Global.AsFlags = append(flags.Global.AsFlags, target)
472 flags.Global.LdFlags = append(flags.Global.LdFlags, target)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700473
Colin Crossb98c8b02016-07-29 13:44:28 -0700474 hod := "Host"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700475 if ctx.Os().Class == android.Device {
Colin Crossb98c8b02016-07-29 13:44:28 -0700476 hod = "Device"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700477 }
478
Colin Cross4af21ed2019-11-04 09:37:55 -0800479 flags.Global.CommonFlags = append(flags.Global.CommonFlags, instructionSetFlags)
480 flags.Global.ConlyFlags = append([]string{"${config.CommonGlobalConlyflags}"}, flags.Global.ConlyFlags...)
481 flags.Global.CppFlags = append([]string{fmt.Sprintf("${config.%sGlobalCppflags}", hod)}, flags.Global.CppFlags...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700482
Colin Cross33bac242021-07-14 17:03:16 -0700483 flags.Global.AsFlags = append(flags.Global.AsFlags, tc.Asflags())
Colin Cross0523ba22021-07-14 18:45:05 -0700484 flags.Global.CppFlags = append([]string{"${config.CommonGlobalCppflags}"}, flags.Global.CppFlags...)
Colin Cross4af21ed2019-11-04 09:37:55 -0800485 flags.Global.CommonFlags = append(flags.Global.CommonFlags,
Colin Cross33bac242021-07-14 17:03:16 -0700486 tc.Cflags(),
Colin Cross0523ba22021-07-14 18:45:05 -0700487 "${config.CommonGlobalCflags}",
488 fmt.Sprintf("${config.%sGlobalCflags}", hod))
Colin Cross4d9c2d12016-07-29 12:48:20 -0700489
Chris Wailesb2703ad2021-07-30 13:25:42 -0700490 if android.IsThirdPartyPath(modulePath) {
Colin Cross0523ba22021-07-14 18:45:05 -0700491 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "${config.ExternalCflags}")
Yi Kongcc80f8d2018-06-06 14:42:44 -0700492 }
493
Dan Willemsen10db3842018-10-21 18:42:46 -0700494 if tc.Bionic() {
Colin Cross87dd9632017-11-03 13:31:05 -0700495 if Bool(compiler.Properties.Rtti) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800496 flags.Local.CppFlags = append(flags.Local.CppFlags, "-frtti")
Colin Cross87dd9632017-11-03 13:31:05 -0700497 } else {
Colin Cross4af21ed2019-11-04 09:37:55 -0800498 flags.Local.CppFlags = append(flags.Local.CppFlags, "-fno-rtti")
Colin Cross87dd9632017-11-03 13:31:05 -0700499 }
500 }
501
Colin Cross4af21ed2019-11-04 09:37:55 -0800502 flags.Global.AsFlags = append(flags.Global.AsFlags, "-D__ASSEMBLY__")
Colin Cross87dd9632017-11-03 13:31:05 -0700503
Colin Cross33bac242021-07-14 17:03:16 -0700504 flags.Global.CppFlags = append(flags.Global.CppFlags, tc.Cppflags())
Colin Cross87dd9632017-11-03 13:31:05 -0700505
Colin Cross4af21ed2019-11-04 09:37:55 -0800506 flags.Global.YasmFlags = append(flags.Global.YasmFlags, tc.YasmFlags())
Colin Cross87dd9632017-11-03 13:31:05 -0700507
Colin Cross33bac242021-07-14 17:03:16 -0700508 flags.Global.CommonFlags = append(flags.Global.CommonFlags, tc.ToolchainCflags())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700509
Chris Parsons79bd2b72021-11-29 17:52:41 -0500510 cStd := parseCStd(compiler.Properties.C_std)
Jingwen Chen97b85312021-10-08 10:41:31 +0000511 cppStd := parseCppStd(compiler.Properties.Cpp_std)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800512
Jingwen Chen97b85312021-10-08 10:41:31 +0000513 cStd, cppStd = maybeReplaceGnuToC(compiler.Properties.Gnu_extensions, cStd, cppStd)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800514
Colin Cross4af21ed2019-11-04 09:37:55 -0800515 flags.Local.ConlyFlags = append([]string{"-std=" + cStd}, flags.Local.ConlyFlags...)
516 flags.Local.CppFlags = append([]string{"-std=" + cppStd}, flags.Local.CppFlags...)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800517
Justin Yun63e9ec72020-10-29 16:49:43 +0900518 if ctx.inVendor() {
519 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor.Cflags)...)
520 }
521
522 if ctx.inProduct() {
Justin Yun6977e8a2020-10-29 18:24:11 +0900523 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Product.Cflags)...)
Jiyong Parka622de82017-08-10 13:33:27 +0900524 }
525
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900526 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800527 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Recovery.Cflags)...)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900528 }
529
Yifan Hong6da33c22020-10-27 15:01:21 -0700530 if ctx.inVendorRamdisk() {
531 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor_ramdisk.Cflags)...)
532 }
Jiyong Parka592b6f2021-07-16 16:05:50 +0900533 if !ctx.useSdk() {
534 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Platform.Cflags)...)
535 }
Yifan Hong6da33c22020-10-27 15:01:21 -0700536
Colin Cross4d9c2d12016-07-29 12:48:20 -0700537 // We can enforce some rules more strictly in the code we own. strict
538 // indicates if this is code that we can be stricter with. If we have
539 // rules that we want to apply to *our* code (but maybe can't for
540 // vendor/device specific things), we could extend this to be a ternary
541 // value.
542 strict := true
Yi Kong950e0ba2019-10-08 02:27:17 -0700543 if strings.HasPrefix(modulePath, "external/") {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700544 strict = false
545 }
546
547 // Can be used to make some annotations stricter for code we can fix
548 // (such as when we mark functions as deprecated).
549 if strict {
Colin Cross4af21ed2019-11-04 09:37:55 -0800550 flags.Global.CFlags = append(flags.Global.CFlags, "-DANDROID_STRICT")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700551 }
552
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700553 if compiler.hasSrcExt(".proto") {
Colin Cross0c461f12016-10-20 16:11:43 -0700554 flags = protoFlags(ctx, flags, &compiler.Proto)
555 }
556
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700557 if compiler.hasSrcExt(".y") || compiler.hasSrcExt(".yy") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800558 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700559 "-I"+android.PathForModuleGen(ctx, "yacc", ctx.ModuleDir()).String())
560 }
561
Dan Willemsene1240db2016-11-03 14:28:51 -0700562 if compiler.hasSrcExt(".aidl") {
Jooyung Hane197d8b2021-01-05 10:33:16 +0900563 flags.aidlFlags = append(flags.aidlFlags, compiler.Properties.Aidl.Flags...)
Dan Willemsene1240db2016-11-03 14:28:51 -0700564 if len(compiler.Properties.Aidl.Local_include_dirs) > 0 {
565 localAidlIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Aidl.Local_include_dirs)
566 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(localAidlIncludeDirs))
567 }
568 if len(compiler.Properties.Aidl.Include_dirs) > 0 {
569 rootAidlIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Aidl.Include_dirs)
570 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs))
571 }
572
Martijn Coeneneab15642018-03-09 09:29:59 +0100573 if Bool(compiler.Properties.Aidl.Generate_traces) {
574 flags.aidlFlags = append(flags.aidlFlags, "-t")
575 }
576
Jooyung Han07f70c02021-11-06 07:08:45 +0900577 aidlMinSdkVersion := ctx.minSdkVersion()
578 if aidlMinSdkVersion == "" {
579 aidlMinSdkVersion = "platform_apis"
580 }
581 flags.aidlFlags = append(flags.aidlFlags, "--min_sdk_version="+aidlMinSdkVersion)
582
Colin Cross4af21ed2019-11-04 09:37:55 -0800583 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsene1240db2016-11-03 14:28:51 -0700584 "-I"+android.PathForModuleGen(ctx, "aidl").String())
585 }
586
Jeff Vander Stoepd6126272019-07-15 19:08:37 -0700587 if compiler.hasSrcExt(".rscript") || compiler.hasSrcExt(".fs") {
Colin Cross2a252be2017-05-01 17:37:24 -0700588 flags = rsFlags(ctx, flags, &compiler.Properties)
589 }
590
Inseob Kim21f26902018-09-06 00:55:20 +0900591 if compiler.hasSrcExt(".sysprop") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800592 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Inseob Kim21f26902018-09-06 00:55:20 +0900593 "-I"+android.PathForModuleGen(ctx, "sysprop", "include").String())
594 }
595
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800596 if len(compiler.Properties.Srcs) > 0 {
597 module := ctx.ModuleDir() + "/Android.bp:" + ctx.ModuleName()
Colin Cross4af21ed2019-11-04 09:37:55 -0800598 if inList("-Wno-error", flags.Local.CFlags) || inList("-Wno-error", flags.Local.CppFlags) {
Colin Cross571cccf2019-02-04 11:22:08 -0800599 addToModuleList(ctx, modulesUsingWnoErrorKey, module)
Colin Cross4af21ed2019-11-04 09:37:55 -0800600 } else if !inList("-Werror", flags.Local.CFlags) && !inList("-Werror", flags.Local.CppFlags) {
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800601 if warningsAreAllowed(ctx.ModuleDir()) {
Colin Cross571cccf2019-02-04 11:22:08 -0800602 addToModuleList(ctx, modulesAddedWallKey, module)
Colin Cross4af21ed2019-11-04 09:37:55 -0800603 flags.Local.CFlags = append([]string{"-Wall"}, flags.Local.CFlags...)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800604 } else {
Colin Cross4af21ed2019-11-04 09:37:55 -0800605 flags.Local.CFlags = append([]string{"-Wall", "-Werror"}, flags.Local.CFlags...)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800606 }
607 }
608 }
609
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800610 if Bool(compiler.Properties.Openmp) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800611 flags.Local.CFlags = append(flags.Local.CFlags, "-fopenmp")
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800612 }
613
Colin Cross440e0d02020-06-11 11:32:11 -0700614 // Exclude directories from manual binder interface allowed list.
Ivan Lozanod094d402019-11-26 10:32:50 -0800615 //TODO(b/145621474): Move this check into IInterface.h when clang-tidy no longer uses absolute paths.
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800616 if android.HasAnyPrefix(ctx.ModuleDir(), allowedManualInterfacePaths) {
Ivan Lozanod094d402019-11-26 10:32:50 -0800617 flags.Local.CFlags = append(flags.Local.CFlags, "-DDO_NOT_CHECK_MANUAL_BINDER_INTERFACES")
618 }
619
Colin Cross4d9c2d12016-07-29 12:48:20 -0700620 return flags
621}
622
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700623func (compiler *baseCompiler) hasSrcExt(ext string) bool {
Colin Crossf18e1102017-11-16 14:33:08 -0800624 for _, src := range compiler.srcsBeforeGen {
625 if src.Ext() == ext {
626 return true
627 }
628 }
Colin Cross0c461f12016-10-20 16:11:43 -0700629 for _, src := range compiler.Properties.Srcs {
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700630 if filepath.Ext(src) == ext {
Colin Cross0c461f12016-10-20 16:11:43 -0700631 return true
632 }
633 }
Colin Cross10d22312017-05-03 11:01:58 -0700634 for _, src := range compiler.Properties.OriginalSrcs {
635 if filepath.Ext(src) == ext {
636 return true
637 }
638 }
Colin Cross0c461f12016-10-20 16:11:43 -0700639
640 return false
641}
642
Yifan Hongf2ede7a2020-09-09 18:48:40 -0700643var invalidDefineCharRegex = regexp.MustCompile("[^a-zA-Z0-9_]")
644
Jooyung Han77988572019-10-18 16:26:16 +0900645// makeDefineString transforms a name of an APEX module into a value to be used as value for C define
646// For example, com.android.foo => COM_ANDROID_FOO
647func makeDefineString(name string) string {
Yifan Hongf2ede7a2020-09-09 18:48:40 -0700648 return invalidDefineCharRegex.ReplaceAllString(strings.ToUpper(name), "_")
Jooyung Han77988572019-10-18 16:26:16 +0900649}
650
Colin Cross948f0cb2016-10-17 14:24:56 -0700651var gnuToCReplacer = strings.NewReplacer("gnu", "c")
652
Colin Cross4d9c2d12016-07-29 12:48:20 -0700653func ndkPathDeps(ctx ModuleContext) android.Paths {
Dan Albert92fe7402020-07-15 13:33:30 -0700654 if ctx.Module().(*Module).IsSdkVariant() {
Chih-Hung Hsiehf6ca1b92021-12-05 18:02:50 -0800655 // The NDK sysroot timestamp file depends on all the NDK sysroot header files
656 // for compiling src to obj files.
657 return android.Paths{getNdkHeadersTimestampFile(ctx)}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700658 }
659 return nil
660}
661
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700662func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
Inseob Kimd110f872019-12-06 13:15:38 +0900663 pathDeps := deps.GeneratedDeps
Colin Cross4d9c2d12016-07-29 12:48:20 -0700664 pathDeps = append(pathDeps, ndkPathDeps(ctx)...)
Colin Cross2f336352016-10-26 10:03:47 -0700665
Colin Cross2f336352016-10-26 10:03:47 -0700666 buildFlags := flagsToBuilderFlags(flags)
667
Colin Crossf18e1102017-11-16 14:33:08 -0800668 srcs := append(android.Paths(nil), compiler.srcsBeforeGen...)
669
Paul Duffin33056e82021-02-19 13:49:08 +0000670 srcs, genDeps, info := genSources(ctx, srcs, buildFlags)
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800671 pathDeps = append(pathDeps, genDeps...)
Colin Cross2f336352016-10-26 10:03:47 -0700672
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800673 compiler.pathDeps = pathDeps
Paul Duffin33056e82021-02-19 13:49:08 +0000674 compiler.generatedSourceInfo = info
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800675 compiler.cFlagsDeps = flags.CFlagsDeps
Colin Cross2f336352016-10-26 10:03:47 -0700676
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800677 // Save src, buildFlags and context
678 compiler.srcs = srcs
679
Colin Cross4d9c2d12016-07-29 12:48:20 -0700680 // Compile files listed in c.Properties.Srcs into objects
Chih-Hung Hsieh769a51c2021-09-17 17:18:39 -0700681 objs := compileObjs(ctx, buildFlags, "", srcs,
682 android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_disabled_srcs),
Chih-Hung Hsieh9db8a0c2022-02-17 12:54:45 -0800683 android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_timeout_srcs),
Chih-Hung Hsieh769a51c2021-09-17 17:18:39 -0700684 pathDeps, compiler.cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700685
686 if ctx.Failed() {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700687 return Objects{}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700688 }
689
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700690 return objs
Colin Cross4d9c2d12016-07-29 12:48:20 -0700691}
692
693// Compile a list of source files into objects a specified subdirectory
Chih-Hung Hsieh7540a782022-01-08 19:56:09 -0800694func compileObjs(ctx ModuleContext, flags builderFlags, subdir string,
Chih-Hung Hsieh9db8a0c2022-02-17 12:54:45 -0800695 srcFiles, noTidySrcs, timeoutTidySrcs, pathDeps android.Paths, cFlagsDeps android.Paths) Objects {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700696
Chih-Hung Hsieh9db8a0c2022-02-17 12:54:45 -0800697 return transformSourceToObj(ctx, subdir, srcFiles, noTidySrcs, timeoutTidySrcs, flags, pathDeps, cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700698}
Yi Kong950e0ba2019-10-08 02:27:17 -0700699
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400700// Properties for rust_bindgen related to generating rust bindings.
701// This exists here so these properties can be included in a cc_default
702// which can be used in both cc and rust modules.
703type RustBindgenClangProperties struct {
704 // list of directories relative to the Blueprints file that will
705 // be added to the include path using -I
706 Local_include_dirs []string `android:"arch_variant,variant_prepend"`
707
708 // list of static libraries that provide headers for this binding.
709 Static_libs []string `android:"arch_variant,variant_prepend"`
710
711 // list of shared libraries that provide headers for this binding.
712 Shared_libs []string `android:"arch_variant"`
713
Ivan Lozano9b443832020-11-17 13:39:30 -0500714 // List of libraries which export include paths required for this module
715 Header_libs []string `android:"arch_variant,variant_prepend"`
716
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400717 // list of clang flags required to correctly interpret the headers.
718 Cflags []string `android:"arch_variant"`
719
720 // list of c++ specific clang flags required to correctly interpret the headers.
721 // This is provided primarily to make sure cppflags defined in cc_defaults are pulled in.
722 Cppflags []string `android:"arch_variant"`
723
724 // C standard version to use. Can be a specific version (such as "gnu11"),
725 // "experimental" (which will use draft versions like C1x when available),
726 // or the empty string (which will use the default).
727 //
728 // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this
729 // to "default" will use the build system default version. This cannot be set at the same time as cpp_std.
730 C_std *string
731
732 // C++ standard version to use. Can be a specific version (such as
733 // "gnu++11"), "experimental" (which will use draft versions like C++1z when
734 // available), or the empty string (which will use the default).
735 //
736 // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this
737 // to "default" will use the build system default version. This cannot be set at the same time as c_std.
738 Cpp_std *string
739
740 //TODO(b/161141999) Add support for headers from cc_library_header modules.
741}