blob: 304a6209a5b4c2ac93f5a953503ff4a46e5e4d02 [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 (
Inseob Kim69378442019-06-03 19:10:47 +090018 "fmt"
Logan Chien41eabe62019-04-10 13:33:58 +080019 "io"
Jiyong Parkf1194352019-02-25 11:05:47 +090020 "path/filepath"
Jiyong Parkda732bd2018-11-02 18:23:15 +090021 "regexp"
Jiyong Park25fc6a92018-11-18 18:02:45 +090022 "sort"
23 "strconv"
Colin Cross4d9c2d12016-07-29 12:48:20 -070024 "strings"
Jiyong Parkda732bd2018-11-02 18:23:15 +090025 "sync"
Colin Cross4d9c2d12016-07-29 12:48:20 -070026
Colin Cross26c34ed2016-09-30 17:10:16 -070027 "github.com/google/blueprint/pathtools"
Colin Cross4d9c2d12016-07-29 12:48:20 -070028
Colin Cross4d9c2d12016-07-29 12:48:20 -070029 "android/soong/android"
Dan Albertea4b7b92018-04-25 16:05:30 -070030 "android/soong/cc/config"
Jiyong Park7ed9de32018-10-15 22:25:07 +090031 "android/soong/genrule"
Colin Cross4d9c2d12016-07-29 12:48:20 -070032)
33
Colin Crosseefe9a32019-01-22 14:41:08 -080034type StaticSharedLibraryProperties struct {
Colin Cross27b922f2019-03-04 22:35:41 -080035 Srcs []string `android:"path,arch_variant"`
36 Cflags []string `android:"path,arch_variant"`
Colin Crosseefe9a32019-01-22 14:41:08 -080037
38 Enabled *bool `android:"arch_variant"`
39 Whole_static_libs []string `android:"arch_variant"`
40 Static_libs []string `android:"arch_variant"`
41 Shared_libs []string `android:"arch_variant"`
42 System_shared_libs []string `android:"arch_variant"`
43
44 Export_shared_lib_headers []string `android:"arch_variant"`
45 Export_static_lib_headers []string `android:"arch_variant"`
46}
47
Colin Crossb916a382016-07-29 17:28:03 -070048type LibraryProperties struct {
Colin Crosseefe9a32019-01-22 14:41:08 -080049 Static StaticSharedLibraryProperties `android:"arch_variant"`
50 Shared StaticSharedLibraryProperties `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070051
Colin Cross4d9c2d12016-07-29 12:48:20 -070052 // local file name to pass to the linker as -unexported_symbols_list
Colin Cross27b922f2019-03-04 22:35:41 -080053 Unexported_symbols_list *string `android:"path,arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070054 // local file name to pass to the linker as -force_symbols_not_weak_list
Colin Cross27b922f2019-03-04 22:35:41 -080055 Force_symbols_not_weak_list *string `android:"path,arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070056 // local file name to pass to the linker as -force_symbols_weak_list
Colin Cross27b922f2019-03-04 22:35:41 -080057 Force_symbols_weak_list *string `android:"path,arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070058
59 // rename host libraries to prevent overlap with system installed libraries
60 Unique_host_soname *bool
61
Dan Willemsene1240db2016-11-03 14:28:51 -070062 Aidl struct {
63 // export headers generated from .aidl sources
Nan Zhang0007d812017-11-07 10:57:05 -080064 Export_aidl_headers *bool
Dan Willemsene1240db2016-11-03 14:28:51 -070065 }
66
Colin Cross0c461f12016-10-20 16:11:43 -070067 Proto struct {
68 // export headers generated from .proto sources
Nan Zhang0007d812017-11-07 10:57:05 -080069 Export_proto_headers *bool
Colin Cross0c461f12016-10-20 16:11:43 -070070 }
Dan Albertf563d252017-10-13 00:29:00 -070071
Inseob Kimc0907f12019-02-08 21:00:45 +090072 Sysprop struct {
73 // Whether platform owns this sysprop library.
74 Platform *bool
Inseob Kimb3f22ca2019-03-05 12:40:24 +090075 } `blueprint:"mutated"`
Inseob Kimc0907f12019-02-08 21:00:45 +090076
Nan Zhang0007d812017-11-07 10:57:05 -080077 Static_ndk_lib *bool
Jiyong Park7ed9de32018-10-15 22:25:07 +090078
79 Stubs struct {
80 // Relative path to the symbol map. The symbol map provides the list of
81 // symbols that are exported for stubs variant of this library.
Colin Cross27b922f2019-03-04 22:35:41 -080082 Symbol_file *string `android:"path"`
Jiyong Park7ed9de32018-10-15 22:25:07 +090083
84 // List versions to generate stubs libs for.
85 Versions []string
86 }
dimitryd95964a2018-11-07 13:43:34 +010087
88 // set the name of the output
89 Stem *string `android:"arch_variant"`
90
91 // Names of modules to be overridden. Listed modules can only be other shared libraries
92 // (in Make or Soong).
93 // This does not completely prevent installation of the overridden libraries, but if both
94 // binaries would be installed by default (in PRODUCT_PACKAGES) the other library will be removed
95 // from PRODUCT_PACKAGES.
96 Overrides []string
Logan Chiene3d7a0d2019-01-17 00:18:02 +080097
98 // Properties for ABI compatibility checker
99 Header_abi_checker struct {
Logan Chien41eabe62019-04-10 13:33:58 +0800100 // Enable ABI checks (even if this is not an LLNDK/VNDK lib)
101 Enabled *bool
102
Logan Chiene3d7a0d2019-01-17 00:18:02 +0800103 // Path to a symbol file that specifies the symbols to be included in the generated
104 // ABI dump file
Colin Cross27b922f2019-03-04 22:35:41 -0800105 Symbol_file *string `android:"path"`
Logan Chiene3d7a0d2019-01-17 00:18:02 +0800106
107 // Symbol versions that should be ignored from the symbol file
108 Exclude_symbol_versions []string
109
110 // Symbol tags that should be ignored from the symbol file
111 Exclude_symbol_tags []string
112 }
Colin Crossa48ab5b2017-02-14 15:28:44 -0800113}
Colin Cross0c461f12016-10-20 16:11:43 -0700114
Colin Crossa48ab5b2017-02-14 15:28:44 -0800115type LibraryMutatedProperties struct {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700116 VariantName string `blueprint:"mutated"`
Colin Crossb916a382016-07-29 17:28:03 -0700117
118 // Build a static variant
119 BuildStatic bool `blueprint:"mutated"`
120 // Build a shared variant
121 BuildShared bool `blueprint:"mutated"`
122 // This variant is shared
123 VariantIsShared bool `blueprint:"mutated"`
124 // This variant is static
125 VariantIsStatic bool `blueprint:"mutated"`
Jiyong Park7ed9de32018-10-15 22:25:07 +0900126
127 // This variant is a stubs lib
128 BuildStubs bool `blueprint:"mutated"`
129 // Version of the stubs lib
130 StubsVersion string `blueprint:"mutated"`
Colin Crossb916a382016-07-29 17:28:03 -0700131}
132
133type FlagExporterProperties struct {
134 // list of directories relative to the Blueprints file that will
Dan Willemsen273af7f2016-11-03 15:53:42 -0700135 // be added to the include path (using -I) for this module and any module that links
Colin Cross5d195602017-10-17 16:15:50 -0700136 // against this module. Directories listed in export_include_dirs do not need to be
137 // listed in local_include_dirs.
Colin Crossb916a382016-07-29 17:28:03 -0700138 Export_include_dirs []string `android:"arch_variant"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700139
140 Target struct {
141 Vendor struct {
142 // list of exported include directories, like
143 // export_include_dirs, that will be applied to the
144 // vendor variant of this library. This will overwrite
145 // any other declarations.
Steven Morelandb21df8f2018-01-05 14:42:54 -0800146 Override_export_include_dirs []string
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700147 }
148 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700149}
150
151func init() {
Steven Morelandf9e62162017-11-02 17:00:50 -0700152 android.RegisterModuleType("cc_library_static", LibraryStaticFactory)
153 android.RegisterModuleType("cc_library_shared", LibrarySharedFactory)
154 android.RegisterModuleType("cc_library", LibraryFactory)
155 android.RegisterModuleType("cc_library_host_static", LibraryHostStaticFactory)
156 android.RegisterModuleType("cc_library_host_shared", LibraryHostSharedFactory)
157 android.RegisterModuleType("cc_library_headers", LibraryHeaderFactory)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700158}
159
Patrice Arruda83c89e02019-03-25 15:32:39 -0700160// cc_library creates both static and/or shared libraries for a device and/or
161// host. By default, a cc_library has a single variant that targets the device.
162// Specifying `host_supported: true` also creates a library that targets the
163// host.
Steven Morelandf9e62162017-11-02 17:00:50 -0700164func LibraryFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800165 module, _ := NewLibrary(android.HostAndDeviceSupported)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700166 return module.Init()
167}
168
Patrice Arruda83c89e02019-03-25 15:32:39 -0700169// cc_library_static creates a static library for a device and/or host binary.
Steven Morelandf9e62162017-11-02 17:00:50 -0700170func LibraryStaticFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800171 module, library := NewLibrary(android.HostAndDeviceSupported)
172 library.BuildOnlyStatic()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700173 return module.Init()
174}
175
Patrice Arruda83c89e02019-03-25 15:32:39 -0700176// cc_library_shared creates a shared library for a device and/or host.
Steven Morelandf9e62162017-11-02 17:00:50 -0700177func LibrarySharedFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800178 module, library := NewLibrary(android.HostAndDeviceSupported)
179 library.BuildOnlyShared()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700180 return module.Init()
181}
182
Patrice Arruda83c89e02019-03-25 15:32:39 -0700183// cc_library_host_static creates a static library that is linkable to a host
184// binary.
Steven Morelandf9e62162017-11-02 17:00:50 -0700185func LibraryHostStaticFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800186 module, library := NewLibrary(android.HostSupported)
187 library.BuildOnlyStatic()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700188 return module.Init()
189}
190
Patrice Arruda83c89e02019-03-25 15:32:39 -0700191// cc_library_host_shared creates a shared library that is usable on a host.
Steven Morelandf9e62162017-11-02 17:00:50 -0700192func LibraryHostSharedFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800193 module, library := NewLibrary(android.HostSupported)
194 library.BuildOnlyShared()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700195 return module.Init()
196}
197
Patrice Arruda83c89e02019-03-25 15:32:39 -0700198// cc_library_headers contains a set of c/c++ headers which are imported by
199// other soong cc modules using the header_libs property. For best practices,
200// use export_include_dirs property or LOCAL_EXPORT_C_INCLUDE_DIRS for
201// Make.
Steven Morelandf9e62162017-11-02 17:00:50 -0700202func LibraryHeaderFactory() android.Module {
Colin Cross5950f382016-12-13 12:50:57 -0800203 module, library := NewLibrary(android.HostAndDeviceSupported)
204 library.HeaderOnly()
205 return module.Init()
206}
207
Colin Cross4d9c2d12016-07-29 12:48:20 -0700208type flagExporter struct {
209 Properties FlagExporterProperties
210
Inseob Kim69378442019-06-03 19:10:47 +0900211 dirs []string
212 systemDirs []string
213 flags []string
214 deps android.Paths
Colin Cross4d9c2d12016-07-29 12:48:20 -0700215}
216
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700217func (f *flagExporter) exportedIncludes(ctx ModuleContext) android.Paths {
Steven Morelandb21df8f2018-01-05 14:42:54 -0800218 if ctx.useVndk() && f.Properties.Target.Vendor.Override_export_include_dirs != nil {
219 return android.PathsForModuleSrc(ctx, f.Properties.Target.Vendor.Override_export_include_dirs)
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700220 } else {
221 return android.PathsForModuleSrc(ctx, f.Properties.Export_include_dirs)
222 }
223}
224
Inseob Kim69378442019-06-03 19:10:47 +0900225func (f *flagExporter) exportIncludes(ctx ModuleContext) {
226 f.dirs = append(f.dirs, f.exportedIncludes(ctx).Strings()...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700227}
228
Inseob Kim69378442019-06-03 19:10:47 +0900229func (f *flagExporter) exportIncludesAsSystem(ctx ModuleContext) {
230 f.systemDirs = append(f.systemDirs, f.exportedIncludes(ctx).Strings()...)
231}
232
233func (f *flagExporter) reexportDirs(dirs ...string) {
234 f.dirs = append(f.dirs, dirs...)
235}
236
237func (f *flagExporter) reexportSystemDirs(dirs ...string) {
238 f.systemDirs = append(f.systemDirs, dirs...)
239}
240
241func (f *flagExporter) reexportFlags(flags ...string) {
242 for _, flag := range flags {
243 if strings.HasPrefix(flag, "-I") || strings.HasPrefix(flag, "-isystem") {
244 panic(fmt.Errorf("Exporting invalid flag %q: "+
245 "use reexportDirs or reexportSystemDirs to export directories", flag))
246 }
247 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700248 f.flags = append(f.flags, flags...)
249}
250
Inseob Kim69378442019-06-03 19:10:47 +0900251func (f *flagExporter) reexportDeps(deps ...android.Path) {
252 f.deps = append(f.deps, deps...)
253}
254
255func (f *flagExporter) exportedDirs() []string {
256 return f.dirs
257}
258
259func (f *flagExporter) exportedSystemDirs() []string {
260 return f.systemDirs
Dan Willemsen847dcc72016-09-29 12:13:36 -0700261}
262
Colin Cross4d9c2d12016-07-29 12:48:20 -0700263func (f *flagExporter) exportedFlags() []string {
264 return f.flags
265}
266
Inseob Kim69378442019-06-03 19:10:47 +0900267func (f *flagExporter) exportedDeps() android.Paths {
268 return f.deps
Dan Willemsen847dcc72016-09-29 12:13:36 -0700269}
270
Colin Cross4d9c2d12016-07-29 12:48:20 -0700271type exportedFlagsProducer interface {
Inseob Kim69378442019-06-03 19:10:47 +0900272 exportedDirs() []string
273 exportedSystemDirs() []string
Colin Cross4d9c2d12016-07-29 12:48:20 -0700274 exportedFlags() []string
Inseob Kim69378442019-06-03 19:10:47 +0900275 exportedDeps() android.Paths
Colin Cross4d9c2d12016-07-29 12:48:20 -0700276}
277
278var _ exportedFlagsProducer = (*flagExporter)(nil)
279
Colin Crossb916a382016-07-29 17:28:03 -0700280// libraryDecorator wraps baseCompiler, baseLinker and baseInstaller to provide library-specific
281// functionality: static vs. shared linkage, reusing object files for shared libraries
282type libraryDecorator struct {
Colin Crossa48ab5b2017-02-14 15:28:44 -0800283 Properties LibraryProperties
284 MutatedProperties LibraryMutatedProperties
Colin Cross4d9c2d12016-07-29 12:48:20 -0700285
286 // For reusing static library objects for shared library
Inseob Kim69378442019-06-03 19:10:47 +0900287 reuseObjects Objects
Colin Cross10d22312017-05-03 11:01:58 -0700288
Colin Cross26c34ed2016-09-30 17:10:16 -0700289 // table-of-contents file to optimize out relinking when possible
290 tocFile android.OptionalPath
Colin Cross4d9c2d12016-07-29 12:48:20 -0700291
Colin Cross4d9c2d12016-07-29 12:48:20 -0700292 flagExporter
293 stripper
294
Colin Cross4d9c2d12016-07-29 12:48:20 -0700295 // If we're used as a whole_static_lib, our missing dependencies need
296 // to be given
297 wholeStaticMissingDeps []string
298
299 // For whole_static_libs
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700300 objects Objects
Colin Cross4d9c2d12016-07-29 12:48:20 -0700301
302 // Uses the module's name if empty, but can be overridden. Does not include
303 // shlib suffix.
304 libName string
Colin Crossb916a382016-07-29 17:28:03 -0700305
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800306 sabi *sabi
307
Dan Willemsen581341d2017-02-09 16:16:31 -0800308 // Output archive of gcno coverage information files
309 coverageOutputFile android.OptionalPath
310
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800311 // linked Source Abi Dump
312 sAbiOutputFile android.OptionalPath
313
314 // Source Abi Diff
315 sAbiDiff android.OptionalPath
316
Colin Cross0875c522017-11-28 17:34:01 -0800317 // Location of the static library in the sysroot. Empty if the library is
318 // not included in the NDK.
319 ndkSysrootPath android.Path
320
Colin Crossb60190a2018-09-04 16:28:17 -0700321 // Location of the linked, unstripped library for shared libraries
322 unstrippedOutputFile android.Path
323
Dan Willemsen569edc52018-11-19 09:33:29 -0800324 // Location of the file that should be copied to dist dir when requested
325 distFile android.OptionalPath
326
Jiyong Park7ed9de32018-10-15 22:25:07 +0900327 versionScriptPath android.ModuleGenPath
328
Jiyong Parkf1194352019-02-25 11:05:47 +0900329 post_install_cmds []string
330
Vic Yangefd249e2018-11-12 20:19:56 -0800331 // If useCoreVariant is true, the vendor variant of a VNDK library is
332 // not installed.
333 useCoreVariant bool
334
Colin Crossb916a382016-07-29 17:28:03 -0700335 // Decorated interafaces
336 *baseCompiler
337 *baseLinker
338 *baseInstaller
Colin Cross4d9c2d12016-07-29 12:48:20 -0700339}
340
Colin Crossb916a382016-07-29 17:28:03 -0700341func (library *libraryDecorator) linkerProps() []interface{} {
342 var props []interface{}
343 props = append(props, library.baseLinker.linkerProps()...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700344 return append(props,
345 &library.Properties,
Colin Crossa48ab5b2017-02-14 15:28:44 -0800346 &library.MutatedProperties,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700347 &library.flagExporter.Properties,
Colin Cross22f37952018-09-05 10:43:13 -0700348 &library.stripper.StripProperties)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700349}
350
Colin Crossb916a382016-07-29 17:28:03 -0700351func (library *libraryDecorator) linkerFlags(ctx ModuleContext, flags Flags) Flags {
Colin Cross42742b82016-08-01 13:20:05 -0700352 flags = library.baseLinker.linkerFlags(ctx, flags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700353
Colin Crossb916a382016-07-29 17:28:03 -0700354 // MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
355 // all code is position independent, and then those warnings get promoted to
356 // errors.
Colin Cross3edeee12017-04-04 12:59:48 -0700357 if !ctx.Windows() {
Colin Crossb916a382016-07-29 17:28:03 -0700358 flags.CFlags = append(flags.CFlags, "-fPIC")
359 }
360
361 if library.static() {
362 flags.CFlags = append(flags.CFlags, library.Properties.Static.Cflags...)
Colin Crossa48ab5b2017-02-14 15:28:44 -0800363 } else if library.shared() {
Colin Crossb916a382016-07-29 17:28:03 -0700364 flags.CFlags = append(flags.CFlags, library.Properties.Shared.Cflags...)
365 }
366
Colin Crossa48ab5b2017-02-14 15:28:44 -0800367 if library.shared() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700368 libName := library.getLibName(ctx)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700369 var f []string
Dan Willemsen01a405a2016-06-13 17:19:03 -0700370 if ctx.toolchain().Bionic() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700371 f = append(f,
372 "-nostdlib",
373 "-Wl,--gc-sections",
374 )
375 }
376
377 if ctx.Darwin() {
378 f = append(f,
379 "-dynamiclib",
380 "-single_module",
Colin Cross4d9c2d12016-07-29 12:48:20 -0700381 "-install_name @rpath/"+libName+flags.Toolchain.ShlibSuffix(),
382 )
Colin Cross7863cf52016-10-20 10:47:21 -0700383 if ctx.Arch().ArchType == android.X86 {
384 f = append(f,
385 "-read_only_relocs suppress",
386 )
387 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700388 } else {
Josh Gaob20200b2019-06-07 12:30:30 -0700389 f = append(f,
390 "-shared",
391 "-Wl,-soname,"+libName+flags.Toolchain.ShlibSuffix())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700392 }
393
394 flags.LdFlags = append(f, flags.LdFlags...)
395 }
396
397 return flags
398}
399
Colin Crossf18e1102017-11-16 14:33:08 -0800400func (library *libraryDecorator) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags {
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700401 exportIncludeDirs := library.flagExporter.exportedIncludes(ctx)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700402 if len(exportIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700403 f := includeDirsToFlags(exportIncludeDirs)
404 flags.GlobalFlags = append(flags.GlobalFlags, f)
405 flags.YasmFlags = append(flags.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700406 }
407
Jiyong Park7ed9de32018-10-15 22:25:07 +0900408 flags = library.baseCompiler.compilerFlags(ctx, flags, deps)
409 if library.buildStubs() {
Jiyong Park64379952018-12-13 18:37:29 +0900410 // Remove -include <file> when compiling stubs. Otherwise, the force included
411 // headers might cause conflicting types error with the symbols in the
412 // generated stubs source code. e.g.
413 // double acos(double); // in header
414 // void acos() {} // in the generated source code
415 removeInclude := func(flags []string) []string {
416 ret := flags[:0]
417 for _, f := range flags {
418 if strings.HasPrefix(f, "-include ") {
419 continue
420 }
421 ret = append(ret, f)
422 }
423 return ret
424 }
425 flags.GlobalFlags = removeInclude(flags.GlobalFlags)
426 flags.CFlags = removeInclude(flags.CFlags)
427
Jiyong Park7ed9de32018-10-15 22:25:07 +0900428 flags = addStubLibraryCompilerFlags(flags)
429 }
430 return flags
Dan Willemsen273af7f2016-11-03 15:53:42 -0700431}
432
Logan Chien41eabe62019-04-10 13:33:58 +0800433func (library *libraryDecorator) shouldCreateVndkSourceAbiDump(ctx ModuleContext) bool {
434 if library.Properties.Header_abi_checker.Enabled != nil {
435 return Bool(library.Properties.Header_abi_checker.Enabled)
436 }
Inseob Kim9516ee92019-05-09 10:56:13 +0900437 return ctx.shouldCreateVndkSourceAbiDump(ctx.Config())
Logan Chien41eabe62019-04-10 13:33:58 +0800438}
439
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700440func (library *libraryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
Jiyong Park7ed9de32018-10-15 22:25:07 +0900441 if library.buildStubs() {
Jiyong Park3fd0baf2018-12-07 16:25:39 +0900442 objs, versionScript := compileStubLibrary(ctx, flags, String(library.Properties.Stubs.Symbol_file), library.MutatedProperties.StubsVersion, "--apex")
Jiyong Park7ed9de32018-10-15 22:25:07 +0900443 library.versionScriptPath = versionScript
444 return objs
445 }
446
Colin Cross5950f382016-12-13 12:50:57 -0800447 if !library.buildShared() && !library.buildStatic() {
448 if len(library.baseCompiler.Properties.Srcs) > 0 {
449 ctx.PropertyErrorf("srcs", "cc_library_headers must not have any srcs")
450 }
451 if len(library.Properties.Static.Srcs) > 0 {
452 ctx.PropertyErrorf("static.srcs", "cc_library_headers must not have any srcs")
453 }
454 if len(library.Properties.Shared.Srcs) > 0 {
455 ctx.PropertyErrorf("shared.srcs", "cc_library_headers must not have any srcs")
456 }
457 return Objects{}
458 }
Logan Chien41eabe62019-04-10 13:33:58 +0800459 if library.shouldCreateVndkSourceAbiDump(ctx) || library.sabi.Properties.CreateSAbiDumps {
Jayant Chowdharya4fce192017-09-06 13:10:03 -0700460 exportIncludeDirs := library.flagExporter.exportedIncludes(ctx)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800461 var SourceAbiFlags []string
462 for _, dir := range exportIncludeDirs.Strings() {
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700463 SourceAbiFlags = append(SourceAbiFlags, "-I"+dir)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800464 }
Inseob Kim69378442019-06-03 19:10:47 +0900465 for _, reexportedInclude := range library.sabi.Properties.ReexportedIncludes {
466 SourceAbiFlags = append(SourceAbiFlags, "-I"+reexportedInclude)
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700467 }
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800468 flags.SAbiFlags = SourceAbiFlags
469 total_length := len(library.baseCompiler.Properties.Srcs) + len(deps.GeneratedSources) + len(library.Properties.Shared.Srcs) +
470 len(library.Properties.Static.Srcs)
471 if total_length > 0 {
472 flags.SAbiDump = true
473 }
474 }
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700475 objs := library.baseCompiler.compile(ctx, flags, deps)
476 library.reuseObjects = objs
Colin Cross2f336352016-10-26 10:03:47 -0700477 buildFlags := flagsToBuilderFlags(flags)
Colin Crossb916a382016-07-29 17:28:03 -0700478
Colin Cross4d9c2d12016-07-29 12:48:20 -0700479 if library.static() {
Colin Cross8a497952019-03-05 22:25:09 -0800480 srcs := android.PathsForModuleSrc(ctx, library.Properties.Static.Srcs)
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700481 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceStaticLibrary,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800482 srcs, library.baseCompiler.pathDeps, library.baseCompiler.cFlagsDeps))
Colin Crossa48ab5b2017-02-14 15:28:44 -0800483 } else if library.shared() {
Colin Cross8a497952019-03-05 22:25:09 -0800484 srcs := android.PathsForModuleSrc(ctx, library.Properties.Shared.Srcs)
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700485 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceSharedLibrary,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800486 srcs, library.baseCompiler.pathDeps, library.baseCompiler.cFlagsDeps))
Colin Crossb916a382016-07-29 17:28:03 -0700487 }
488
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700489 return objs
Colin Crossb916a382016-07-29 17:28:03 -0700490}
491
492type libraryInterface interface {
493 getWholeStaticMissingDeps() []string
494 static() bool
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700495 objs() Objects
Inseob Kim69378442019-06-03 19:10:47 +0900496 reuseObjs() (Objects, exportedFlagsProducer)
Colin Cross26c34ed2016-09-30 17:10:16 -0700497 toc() android.OptionalPath
Colin Crossb916a382016-07-29 17:28:03 -0700498
499 // Returns true if the build options for the module have selected a static or shared build
500 buildStatic() bool
501 buildShared() bool
502
503 // Sets whether a specific variant is static or shared
Colin Crossa48ab5b2017-02-14 15:28:44 -0800504 setStatic()
505 setShared()
Logan Chien41eabe62019-04-10 13:33:58 +0800506
507 // Write LOCAL_ADDITIONAL_DEPENDENCIES for ABI diff
508 androidMkWriteAdditionalDependenciesForSourceAbiDiff(w io.Writer)
Colin Crossb916a382016-07-29 17:28:03 -0700509}
510
511func (library *libraryDecorator) getLibName(ctx ModuleContext) string {
512 name := library.libName
513 if name == "" {
dimitryd95964a2018-11-07 13:43:34 +0100514 name = String(library.Properties.Stem)
515 if name == "" {
516 name = ctx.baseModuleName()
517 }
Colin Crossb916a382016-07-29 17:28:03 -0700518 }
519
Logan Chienf3511742017-10-31 18:04:35 +0800520 if ctx.isVndkExt() {
521 name = ctx.getVndkExtendsModuleName()
522 }
523
Colin Crossb916a382016-07-29 17:28:03 -0700524 if ctx.Host() && Bool(library.Properties.Unique_host_soname) {
525 if !strings.HasSuffix(name, "-host") {
526 name = name + "-host"
527 }
528 }
529
Colin Crossa48ab5b2017-02-14 15:28:44 -0800530 return name + library.MutatedProperties.VariantName
Colin Crossb916a382016-07-29 17:28:03 -0700531}
532
Jiyong Parkda732bd2018-11-02 18:23:15 +0900533var versioningMacroNamesListMutex sync.Mutex
534
Colin Crossb916a382016-07-29 17:28:03 -0700535func (library *libraryDecorator) linkerInit(ctx BaseModuleContext) {
536 location := InstallInSystem
Dan Albert61f32122018-07-26 14:00:24 -0700537 if library.baseLinker.sanitize.inSanitizerDir() {
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700538 location = InstallInSanitizerDir
Colin Crossb916a382016-07-29 17:28:03 -0700539 }
540 library.baseInstaller.location = location
Colin Crossb916a382016-07-29 17:28:03 -0700541 library.baseLinker.linkerInit(ctx)
Jiyong Park7ed9de32018-10-15 22:25:07 +0900542 // Let baseLinker know whether this variant is for stubs or not, so that
543 // it can omit things that are not required for linking stubs.
544 library.baseLinker.dynamicProperties.BuildStubs = library.buildStubs()
Jiyong Parkda732bd2018-11-02 18:23:15 +0900545
546 if library.buildStubs() {
547 macroNames := versioningMacroNamesList(ctx.Config())
548 myName := versioningMacroName(ctx.ModuleName())
549 versioningMacroNamesListMutex.Lock()
550 defer versioningMacroNamesListMutex.Unlock()
551 if (*macroNames)[myName] == "" {
552 (*macroNames)[myName] = ctx.ModuleName()
553 } else if (*macroNames)[myName] != ctx.ModuleName() {
554 ctx.ModuleErrorf("Macro name %q for versioning conflicts with macro name from module %q ", myName, (*macroNames)[myName])
555 }
556 }
Colin Crossb916a382016-07-29 17:28:03 -0700557}
558
dimitry0345ad82018-12-05 16:28:14 +0100559func (library *libraryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
560 deps = library.baseCompiler.compilerDeps(ctx, deps)
561
dimitry0345ad82018-12-05 16:28:14 +0100562 return deps
563}
564
Colin Cross37047f12016-12-13 17:06:13 -0800565func (library *libraryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
Dan Willemsen3a26eef2018-12-03 15:25:46 -0800566 if library.static() {
567 if library.Properties.Static.System_shared_libs != nil {
568 library.baseLinker.Properties.System_shared_libs = library.Properties.Static.System_shared_libs
569 }
570 } else if library.shared() {
571 if library.Properties.Shared.System_shared_libs != nil {
572 library.baseLinker.Properties.System_shared_libs = library.Properties.Shared.System_shared_libs
573 }
574 }
575
Colin Crossb916a382016-07-29 17:28:03 -0700576 deps = library.baseLinker.linkerDeps(ctx, deps)
577
578 if library.static() {
579 deps.WholeStaticLibs = append(deps.WholeStaticLibs,
580 library.Properties.Static.Whole_static_libs...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700581 deps.StaticLibs = append(deps.StaticLibs, library.Properties.Static.Static_libs...)
582 deps.SharedLibs = append(deps.SharedLibs, library.Properties.Static.Shared_libs...)
Colin Crosseefe9a32019-01-22 14:41:08 -0800583
584 deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, library.Properties.Static.Export_shared_lib_headers...)
585 deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, library.Properties.Static.Export_static_lib_headers...)
Colin Crossa48ab5b2017-02-14 15:28:44 -0800586 } else if library.shared() {
Dan Willemsen2e47b342016-11-17 01:02:25 -0800587 if ctx.toolchain().Bionic() && !Bool(library.baseLinker.Properties.Nocrt) {
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700588 if !ctx.useSdk() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700589 deps.CrtBegin = "crtbegin_so"
590 deps.CrtEnd = "crtend_so"
591 } else {
Dan Albertebedf672016-11-08 15:06:22 -0800592 // TODO(danalbert): Add generation of crt objects.
593 // For `sdk_version: "current"`, we don't actually have a
594 // freshly generated set of CRT objects. Use the last stable
595 // version.
596 version := ctx.sdkVersion()
597 if version == "current" {
Jayant Chowdhary6e8115a2017-05-09 10:21:52 -0700598 version = getCurrentNdkPrebuiltVersion(ctx)
Dan Albertebedf672016-11-08 15:06:22 -0800599 }
600 deps.CrtBegin = "ndk_crtbegin_so." + version
601 deps.CrtEnd = "ndk_crtend_so." + version
Colin Cross4d9c2d12016-07-29 12:48:20 -0700602 }
603 }
604 deps.WholeStaticLibs = append(deps.WholeStaticLibs, library.Properties.Shared.Whole_static_libs...)
605 deps.StaticLibs = append(deps.StaticLibs, library.Properties.Shared.Static_libs...)
606 deps.SharedLibs = append(deps.SharedLibs, library.Properties.Shared.Shared_libs...)
Colin Crosseefe9a32019-01-22 14:41:08 -0800607
608 deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, library.Properties.Shared.Export_shared_lib_headers...)
609 deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, library.Properties.Shared.Export_static_lib_headers...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700610 }
Jiyong Park52d25bd2017-10-13 09:17:01 +0900611 if ctx.useVndk() {
612 deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, library.baseLinker.Properties.Target.Vendor.Exclude_static_libs)
613 deps.SharedLibs = removeListFromList(deps.SharedLibs, library.baseLinker.Properties.Target.Vendor.Exclude_shared_libs)
614 deps.StaticLibs = removeListFromList(deps.StaticLibs, library.baseLinker.Properties.Target.Vendor.Exclude_static_libs)
Victor Chang51271c12019-01-30 16:02:22 +0000615 deps.ReexportSharedLibHeaders = removeListFromList(deps.ReexportSharedLibHeaders, library.baseLinker.Properties.Target.Vendor.Exclude_shared_libs)
616 deps.ReexportStaticLibHeaders = removeListFromList(deps.ReexportStaticLibHeaders, library.baseLinker.Properties.Target.Vendor.Exclude_static_libs)
Jiyong Park52d25bd2017-10-13 09:17:01 +0900617 }
Jiyong Parkf9332f12018-02-01 00:54:12 +0900618 if ctx.inRecovery() {
619 deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, library.baseLinker.Properties.Target.Recovery.Exclude_static_libs)
620 deps.SharedLibs = removeListFromList(deps.SharedLibs, library.baseLinker.Properties.Target.Recovery.Exclude_shared_libs)
621 deps.StaticLibs = removeListFromList(deps.StaticLibs, library.baseLinker.Properties.Target.Recovery.Exclude_static_libs)
Victor Chang51271c12019-01-30 16:02:22 +0000622 deps.ReexportSharedLibHeaders = removeListFromList(deps.ReexportSharedLibHeaders, library.baseLinker.Properties.Target.Recovery.Exclude_shared_libs)
623 deps.ReexportStaticLibHeaders = removeListFromList(deps.ReexportStaticLibHeaders, library.baseLinker.Properties.Target.Recovery.Exclude_static_libs)
Jiyong Parkf9332f12018-02-01 00:54:12 +0900624 }
Colin Cross2383f3b2018-02-06 14:40:13 -0800625
Colin Cross4d9c2d12016-07-29 12:48:20 -0700626 return deps
627}
628
Colin Crossb916a382016-07-29 17:28:03 -0700629func (library *libraryDecorator) linkStatic(ctx ModuleContext,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700630 flags Flags, deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700631
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700632 library.objects = deps.WholeStaticLibObjs.Copy()
633 library.objects = library.objects.Append(objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700634
Colin Cross86803cf2018-02-15 14:12:26 -0800635 fileName := ctx.ModuleName() + library.MutatedProperties.VariantName + staticLibraryExtension
636 outputFile := android.PathForModuleOut(ctx, fileName)
Dan Willemsen581341d2017-02-09 16:16:31 -0800637 builderFlags := flagsToBuilderFlags(flags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700638
Dan Willemsen569edc52018-11-19 09:33:29 -0800639 if Bool(library.baseLinker.Properties.Use_version_lib) {
640 if ctx.Host() {
641 versionedOutputFile := outputFile
642 outputFile = android.PathForModuleOut(ctx, "unversioned", fileName)
643 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
644 } else {
645 versionedOutputFile := android.PathForModuleOut(ctx, "versioned", fileName)
646 library.distFile = android.OptionalPathForPath(versionedOutputFile)
647 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
648 }
Colin Cross86803cf2018-02-15 14:12:26 -0800649 }
650
Dan Willemsen581341d2017-02-09 16:16:31 -0800651 TransformObjToStaticLib(ctx, library.objects.objFiles, builderFlags, outputFile, objs.tidyFiles)
652
653 library.coverageOutputFile = TransformCoverageFilesToLib(ctx, library.objects, builderFlags,
Colin Crossa48ab5b2017-02-14 15:28:44 -0800654 ctx.ModuleName()+library.MutatedProperties.VariantName)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700655
656 library.wholeStaticMissingDeps = ctx.GetMissingDependencies()
657
658 ctx.CheckbuildFile(outputFile)
659
660 return outputFile
661}
662
Colin Crossb916a382016-07-29 17:28:03 -0700663func (library *libraryDecorator) linkShared(ctx ModuleContext,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700664 flags Flags, deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700665
666 var linkerDeps android.Paths
Pirama Arumuga Nainarada83ec2017-08-31 23:38:27 -0700667 linkerDeps = append(linkerDeps, flags.LdFlagsDeps...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700668
Colin Cross2383f3b2018-02-06 14:40:13 -0800669 unexportedSymbols := ctx.ExpandOptionalSource(library.Properties.Unexported_symbols_list, "unexported_symbols_list")
670 forceNotWeakSymbols := ctx.ExpandOptionalSource(library.Properties.Force_symbols_not_weak_list, "force_symbols_not_weak_list")
671 forceWeakSymbols := ctx.ExpandOptionalSource(library.Properties.Force_symbols_weak_list, "force_symbols_weak_list")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700672 if !ctx.Darwin() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700673 if unexportedSymbols.Valid() {
674 ctx.PropertyErrorf("unexported_symbols_list", "Only supported on Darwin")
675 }
676 if forceNotWeakSymbols.Valid() {
677 ctx.PropertyErrorf("force_symbols_not_weak_list", "Only supported on Darwin")
678 }
679 if forceWeakSymbols.Valid() {
680 ctx.PropertyErrorf("force_symbols_weak_list", "Only supported on Darwin")
681 }
682 } else {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700683 if unexportedSymbols.Valid() {
684 flags.LdFlags = append(flags.LdFlags, "-Wl,-unexported_symbols_list,"+unexportedSymbols.String())
685 linkerDeps = append(linkerDeps, unexportedSymbols.Path())
686 }
687 if forceNotWeakSymbols.Valid() {
688 flags.LdFlags = append(flags.LdFlags, "-Wl,-force_symbols_not_weak_list,"+forceNotWeakSymbols.String())
689 linkerDeps = append(linkerDeps, forceNotWeakSymbols.Path())
690 }
691 if forceWeakSymbols.Valid() {
692 flags.LdFlags = append(flags.LdFlags, "-Wl,-force_symbols_weak_list,"+forceWeakSymbols.String())
693 linkerDeps = append(linkerDeps, forceWeakSymbols.Path())
694 }
695 }
Jiyong Parkc1e7f482019-01-12 13:39:10 +0900696 if library.buildStubs() {
697 linkerScriptFlags := "-Wl,--version-script," + library.versionScriptPath.String()
698 flags.LdFlags = append(flags.LdFlags, linkerScriptFlags)
699 linkerDeps = append(linkerDeps, library.versionScriptPath)
700 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700701
702 fileName := library.getLibName(ctx) + flags.Toolchain.ShlibSuffix()
703 outputFile := android.PathForModuleOut(ctx, fileName)
704 ret := outputFile
705
706 builderFlags := flagsToBuilderFlags(flags)
707
Colin Crossb496cfd2018-09-10 16:50:05 -0700708 // Optimize out relinking against shared libraries whose interface hasn't changed by
709 // depending on a table of contents file instead of the library itself.
710 tocPath := outputFile.RelPathString()
711 tocPath = pathtools.ReplaceExtension(tocPath, flags.Toolchain.ShlibSuffix()[1:]+".toc")
712 tocFile := android.PathForOutput(ctx, tocPath)
713 library.tocFile = android.OptionalPathForPath(tocFile)
714 TransformSharedObjectToToc(ctx, outputFile, tocFile, builderFlags)
Colin Cross89562dc2016-10-03 17:47:19 -0700715
Colin Cross4d9c2d12016-07-29 12:48:20 -0700716 if library.stripper.needsStrip(ctx) {
Yi Kongb5c34d72018-11-07 16:28:49 -0800717 if ctx.Darwin() {
718 builderFlags.stripUseGnuStrip = true
719 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700720 strippedOutputFile := outputFile
721 outputFile = android.PathForModuleOut(ctx, "unstripped", fileName)
Ryan Prichardf979d732019-05-30 20:53:29 -0700722 library.stripper.stripExecutableOrSharedLib(ctx, outputFile, strippedOutputFile, builderFlags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700723 }
724
Colin Crossb60190a2018-09-04 16:28:17 -0700725 library.unstrippedOutputFile = outputFile
726
Dan Willemsen569edc52018-11-19 09:33:29 -0800727 if Bool(library.baseLinker.Properties.Use_version_lib) {
728 if ctx.Host() {
729 versionedOutputFile := outputFile
730 outputFile = android.PathForModuleOut(ctx, "unversioned", fileName)
731 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
732 } else {
733 versionedOutputFile := android.PathForModuleOut(ctx, "versioned", fileName)
734 library.distFile = android.OptionalPathForPath(versionedOutputFile)
735
736 if library.stripper.needsStrip(ctx) {
737 out := android.PathForModuleOut(ctx, "versioned-stripped", fileName)
738 library.distFile = android.OptionalPathForPath(out)
Ryan Prichardf979d732019-05-30 20:53:29 -0700739 library.stripper.stripExecutableOrSharedLib(ctx, versionedOutputFile, out, builderFlags)
Dan Willemsen569edc52018-11-19 09:33:29 -0800740 }
741
742 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
743 }
Colin Cross86803cf2018-02-15 14:12:26 -0800744 }
745
Jiyong Park64a44f22019-01-18 14:37:08 +0900746 sharedLibs := deps.EarlySharedLibs
747 sharedLibs = append(sharedLibs, deps.SharedLibs...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700748 sharedLibs = append(sharedLibs, deps.LateSharedLibs...)
749
Jiyong Park64a44f22019-01-18 14:37:08 +0900750 linkerDeps = append(linkerDeps, deps.EarlySharedLibsDeps...)
Colin Cross26c34ed2016-09-30 17:10:16 -0700751 linkerDeps = append(linkerDeps, deps.SharedLibsDeps...)
752 linkerDeps = append(linkerDeps, deps.LateSharedLibsDeps...)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700753 linkerDeps = append(linkerDeps, objs.tidyFiles...)
Colin Cross26c34ed2016-09-30 17:10:16 -0700754
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700755 TransformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700756 deps.StaticLibs, deps.LateStaticLibs, deps.WholeStaticLibs,
Josh Gaob20200b2019-06-07 12:30:30 -0700757 linkerDeps, deps.CrtBegin, deps.CrtEnd, false, builderFlags, outputFile)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700758
Dan Willemsen581341d2017-02-09 16:16:31 -0800759 objs.coverageFiles = append(objs.coverageFiles, deps.StaticLibObjs.coverageFiles...)
760 objs.coverageFiles = append(objs.coverageFiles, deps.WholeStaticLibObjs.coverageFiles...)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800761
762 objs.sAbiDumpFiles = append(objs.sAbiDumpFiles, deps.StaticLibObjs.sAbiDumpFiles...)
763 objs.sAbiDumpFiles = append(objs.sAbiDumpFiles, deps.WholeStaticLibObjs.sAbiDumpFiles...)
764
Dan Willemsen581341d2017-02-09 16:16:31 -0800765 library.coverageOutputFile = TransformCoverageFilesToLib(ctx, objs, builderFlags, library.getLibName(ctx))
Jayant Chowdhary6ab3d842017-06-26 12:52:58 -0700766 library.linkSAbiDumpFiles(ctx, objs, fileName, ret)
Dan Willemsen581341d2017-02-09 16:16:31 -0800767
Colin Cross4d9c2d12016-07-29 12:48:20 -0700768 return ret
769}
770
Jiyong Parkaf6d8952019-01-31 12:21:23 +0900771func (library *libraryDecorator) unstrippedOutputFilePath() android.Path {
772 return library.unstrippedOutputFile
773}
774
Pirama Arumuga Nainar65c95ff2019-03-25 10:21:31 -0700775func (library *libraryDecorator) nativeCoverage() bool {
776 if library.header() || library.buildStubs() {
777 return false
778 }
779 return true
780}
781
Logan Chien7eefdc42018-07-11 18:10:41 +0800782func getRefAbiDumpFile(ctx ModuleContext, vndkVersion, fileName string) android.Path {
Inseob Kim9516ee92019-05-09 10:56:13 +0900783 isLlndkOrNdk := inList(ctx.baseModuleName(), *llndkLibraries(ctx.Config())) || inList(ctx.baseModuleName(), ndkMigratedLibs)
Logan Chien7eefdc42018-07-11 18:10:41 +0800784
Logan Chien41eabe62019-04-10 13:33:58 +0800785 refAbiDumpTextFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isLlndkOrNdk, ctx.isVndk(), false)
786 refAbiDumpGzipFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isLlndkOrNdk, ctx.isVndk(), true)
Logan Chien7eefdc42018-07-11 18:10:41 +0800787
788 if refAbiDumpTextFile.Valid() {
789 if refAbiDumpGzipFile.Valid() {
790 ctx.ModuleErrorf(
791 "Two reference ABI dump files are found: %q and %q. Please delete the stale one.",
792 refAbiDumpTextFile, refAbiDumpGzipFile)
793 return nil
794 }
795 return refAbiDumpTextFile.Path()
796 }
797 if refAbiDumpGzipFile.Valid() {
798 return UnzipRefDump(ctx, refAbiDumpGzipFile.Path(), fileName)
799 }
800 return nil
801}
802
Jayant Chowdhary6ab3d842017-06-26 12:52:58 -0700803func (library *libraryDecorator) linkSAbiDumpFiles(ctx ModuleContext, objs Objects, fileName string, soFile android.Path) {
Logan Chien41eabe62019-04-10 13:33:58 +0800804 if len(objs.sAbiDumpFiles) > 0 && library.shouldCreateVndkSourceAbiDump(ctx) {
Logan Chiena8f51582018-03-21 11:53:48 +0800805 vndkVersion := ctx.DeviceConfig().PlatformVndkVersion()
806 if ver := ctx.DeviceConfig().VndkVersion(); ver != "" && ver != "current" {
Logan Chienf3511742017-10-31 18:04:35 +0800807 vndkVersion = ver
808 }
809
Jayant Chowdharya4fce192017-09-06 13:10:03 -0700810 exportIncludeDirs := library.flagExporter.exportedIncludes(ctx)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800811 var SourceAbiFlags []string
812 for _, dir := range exportIncludeDirs.Strings() {
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700813 SourceAbiFlags = append(SourceAbiFlags, "-I"+dir)
814 }
Inseob Kim69378442019-06-03 19:10:47 +0900815 for _, reexportedInclude := range library.sabi.Properties.ReexportedIncludes {
816 SourceAbiFlags = append(SourceAbiFlags, "-I"+reexportedInclude)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800817 }
818 exportedHeaderFlags := strings.Join(SourceAbiFlags, " ")
Logan Chiene3d7a0d2019-01-17 00:18:02 +0800819 library.sAbiOutputFile = TransformDumpToLinkedDump(ctx, objs.sAbiDumpFiles, soFile, fileName, exportedHeaderFlags,
820 android.OptionalPathForModuleSrc(ctx, library.Properties.Header_abi_checker.Symbol_file),
821 library.Properties.Header_abi_checker.Exclude_symbol_versions,
822 library.Properties.Header_abi_checker.Exclude_symbol_tags)
Logan Chien2f2b8902018-07-10 15:01:19 +0800823
Logan Chien7eefdc42018-07-11 18:10:41 +0800824 refAbiDumpFile := getRefAbiDumpFile(ctx, vndkVersion, fileName)
825 if refAbiDumpFile != nil {
Logan Chienf3511742017-10-31 18:04:35 +0800826 library.sAbiDiff = SourceAbiDiff(ctx, library.sAbiOutputFile.Path(),
Inseob Kim9516ee92019-05-09 10:56:13 +0900827 refAbiDumpFile, fileName, exportedHeaderFlags, ctx.isLlndk(ctx.Config()), ctx.isNdk(), ctx.isVndkExt())
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800828 }
829 }
830}
831
Colin Crossb916a382016-07-29 17:28:03 -0700832func (library *libraryDecorator) link(ctx ModuleContext,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700833 flags Flags, deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700834
Colin Crossad59e752017-11-16 14:29:11 -0800835 objs = deps.Objs.Copy().Append(objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700836 var out android.Path
Colin Crossa48ab5b2017-02-14 15:28:44 -0800837 if library.static() || library.header() {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700838 out = library.linkStatic(ctx, flags, deps, objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700839 } else {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700840 out = library.linkShared(ctx, flags, deps, objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700841 }
842
Inseob Kim69378442019-06-03 19:10:47 +0900843 library.exportIncludes(ctx)
844 library.reexportDirs(deps.ReexportedDirs...)
845 library.reexportSystemDirs(deps.ReexportedSystemDirs...)
846 library.reexportFlags(deps.ReexportedFlags...)
847 library.reexportDeps(deps.ReexportedDeps...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700848
Nan Zhang0007d812017-11-07 10:57:05 -0800849 if Bool(library.Properties.Aidl.Export_aidl_headers) {
Dan Willemsene1240db2016-11-03 14:28:51 -0700850 if library.baseCompiler.hasSrcExt(".aidl") {
Inseob Kim69378442019-06-03 19:10:47 +0900851 dir := android.PathForModuleGen(ctx, "aidl").String()
852 library.reexportDirs(dir)
853 library.reexportDeps(library.baseCompiler.pathDeps...) // TODO: restrict to aidl deps
Dan Willemsene1240db2016-11-03 14:28:51 -0700854 }
855 }
856
Nan Zhang0007d812017-11-07 10:57:05 -0800857 if Bool(library.Properties.Proto.Export_proto_headers) {
Dan Willemsene1240db2016-11-03 14:28:51 -0700858 if library.baseCompiler.hasSrcExt(".proto") {
Dan Willemsenab9f4262018-02-14 13:58:34 -0800859 includes := []string{}
Colin Cross19878da2019-03-28 14:45:07 -0700860 if flags.proto.CanonicalPathFromRoot {
Inseob Kim69378442019-06-03 19:10:47 +0900861 includes = append(includes, flags.proto.SubDir.String())
Colin Cross10d22312017-05-03 11:01:58 -0700862 }
Inseob Kim69378442019-06-03 19:10:47 +0900863 includes = append(includes, flags.proto.Dir.String())
864 library.reexportDirs(includes...)
865 library.reexportDeps(library.baseCompiler.pathDeps...) // TODO: restrict to proto deps
Colin Cross0c461f12016-10-20 16:11:43 -0700866 }
867 }
868
Inseob Kim21f26902018-09-06 00:55:20 +0900869 if library.baseCompiler.hasSrcExt(".sysprop") {
Inseob Kim69378442019-06-03 19:10:47 +0900870 dir := android.PathForModuleGen(ctx, "sysprop", "include").String()
Inseob Kimc0907f12019-02-08 21:00:45 +0900871 if library.Properties.Sysprop.Platform != nil {
872 isProduct := ctx.ProductSpecific() && !ctx.useVndk()
873 isVendor := ctx.useVndk()
874 isOwnerPlatform := Bool(library.Properties.Sysprop.Platform)
875
876 useSystem := isProduct || (isOwnerPlatform == isVendor)
877
878 if useSystem {
Inseob Kim69378442019-06-03 19:10:47 +0900879 dir = android.PathForModuleGen(ctx, "sysprop/system", "include").String()
Inseob Kimc0907f12019-02-08 21:00:45 +0900880 }
881 }
882
Inseob Kim69378442019-06-03 19:10:47 +0900883 library.reexportDirs(dir)
884 library.reexportDeps(library.baseCompiler.pathDeps...)
Inseob Kim21f26902018-09-06 00:55:20 +0900885 }
886
Jiyong Parkda732bd2018-11-02 18:23:15 +0900887 if library.buildStubs() {
Inseob Kim69378442019-06-03 19:10:47 +0900888 library.reexportFlags("-D" + versioningMacroName(ctx.ModuleName()) + "=" + library.stubsVersion())
Jiyong Parkda732bd2018-11-02 18:23:15 +0900889 }
890
Colin Cross4d9c2d12016-07-29 12:48:20 -0700891 return out
892}
893
Colin Crossb916a382016-07-29 17:28:03 -0700894func (library *libraryDecorator) buildStatic() bool {
Colin Cross38b40df2018-04-10 16:14:46 -0700895 return library.MutatedProperties.BuildStatic && BoolDefault(library.Properties.Static.Enabled, true)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700896}
897
Colin Crossb916a382016-07-29 17:28:03 -0700898func (library *libraryDecorator) buildShared() bool {
Colin Cross38b40df2018-04-10 16:14:46 -0700899 return library.MutatedProperties.BuildShared && BoolDefault(library.Properties.Shared.Enabled, true)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700900}
901
Colin Crossb916a382016-07-29 17:28:03 -0700902func (library *libraryDecorator) getWholeStaticMissingDeps() []string {
Colin Crossd2343a32018-04-30 14:50:01 -0700903 return append([]string(nil), library.wholeStaticMissingDeps...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700904}
905
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700906func (library *libraryDecorator) objs() Objects {
907 return library.objects
Colin Cross4d9c2d12016-07-29 12:48:20 -0700908}
909
Inseob Kim69378442019-06-03 19:10:47 +0900910func (library *libraryDecorator) reuseObjs() (Objects, exportedFlagsProducer) {
911 return library.reuseObjects, &library.flagExporter
Colin Cross4d9c2d12016-07-29 12:48:20 -0700912}
913
Colin Cross26c34ed2016-09-30 17:10:16 -0700914func (library *libraryDecorator) toc() android.OptionalPath {
915 return library.tocFile
916}
917
Jiyong Parkf1194352019-02-25 11:05:47 +0900918func (library *libraryDecorator) installSymlinkToRuntimeApex(ctx ModuleContext, file android.Path) {
919 dir := library.baseInstaller.installDir(ctx)
920 dirOnDevice := android.InstallPathToOnDevicePath(ctx, dir)
921 target := "/" + filepath.Join("apex", "com.android.runtime", dir.Base(), "bionic", file.Base())
922 ctx.InstallAbsoluteSymlink(dir, file.Base(), target)
923 library.post_install_cmds = append(library.post_install_cmds, makeSymlinkCmd(dirOnDevice, file.Base(), target))
924}
925
Colin Crossb916a382016-07-29 17:28:03 -0700926func (library *libraryDecorator) install(ctx ModuleContext, file android.Path) {
Colin Crossc43ae772017-04-14 15:42:53 -0700927 if library.shared() {
Justin Yun8fe12122017-12-07 17:18:15 +0900928 if ctx.Device() && ctx.useVndk() {
929 if ctx.isVndkSp() {
930 library.baseInstaller.subDir = "vndk-sp"
931 } else if ctx.isVndk() {
Vic Yangefd249e2018-11-12 20:19:56 -0800932 if ctx.DeviceConfig().VndkUseCoreVariant() && !ctx.mustUseVendorVariant() {
933 library.useCoreVariant = true
934 }
Justin Yun8fe12122017-12-07 17:18:15 +0900935 library.baseInstaller.subDir = "vndk"
936 }
Logan Chienf3511742017-10-31 18:04:35 +0800937
938 // Append a version to vndk or vndk-sp directories on the system partition.
939 if ctx.isVndk() && !ctx.isVndkExt() {
940 vndkVersion := ctx.DeviceConfig().PlatformVndkVersion()
941 if vndkVersion != "current" && vndkVersion != "" {
942 library.baseInstaller.subDir += "-" + vndkVersion
943 }
Justin Yun8effde42017-06-23 19:24:43 +0900944 }
Peter Collingbourne49a25cb2019-05-21 16:06:09 -0700945 } else if len(library.Properties.Stubs.Versions) > 0 && android.DirectlyInAnyApex(ctx, ctx.ModuleName()) {
Jiyong Parkf1194352019-02-25 11:05:47 +0900946 // Bionic libraries (e.g. libc.so) is installed to the bootstrap subdirectory.
947 // The original path becomes a symlink to the corresponding file in the
948 // runtime APEX.
Peter Collingbourne3478bb22019-04-24 14:41:12 -0700949 if installToBootstrap(ctx.baseModuleName(), ctx.Config()) && !library.buildStubs() && ctx.Arch().Native && !ctx.inRecovery() {
950 if ctx.Device() && isBionic(ctx.baseModuleName()) {
Jiyong Parkc3e2c862019-03-16 01:10:08 +0900951 library.installSymlinkToRuntimeApex(ctx, file)
952 }
Jiyong Park429660f2019-01-16 22:31:11 +0900953 library.baseInstaller.subDir = "bootstrap"
954 }
Justin Yun8effde42017-06-23 19:24:43 +0900955 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700956 library.baseInstaller.install(ctx, file)
957 }
Dan Albertf563d252017-10-13 00:29:00 -0700958
Dan Albert281f22b2017-12-13 15:03:47 -0800959 if Bool(library.Properties.Static_ndk_lib) && library.static() &&
Jiyong Parkf9332f12018-02-01 00:54:12 +0900960 !ctx.useVndk() && !ctx.inRecovery() && ctx.Device() &&
Jiyong Park7ed9de32018-10-15 22:25:07 +0900961 library.baseLinker.sanitize.isUnsanitizedVariant() &&
962 !library.buildStubs() {
Dan Albertf563d252017-10-13 00:29:00 -0700963 installPath := getNdkSysrootBase(ctx).Join(
Dan Albertea4b7b92018-04-25 16:05:30 -0700964 ctx, "usr/lib", config.NDKTriple(ctx.toolchain()), file.Base())
Dan Albertf563d252017-10-13 00:29:00 -0700965
966 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
967 Rule: android.Cp,
968 Description: "install " + installPath.Base(),
969 Output: installPath,
970 Input: file,
971 })
972
Colin Cross0875c522017-11-28 17:34:01 -0800973 library.ndkSysrootPath = installPath
Dan Albertf563d252017-10-13 00:29:00 -0700974 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700975}
976
Colin Crossb916a382016-07-29 17:28:03 -0700977func (library *libraryDecorator) static() bool {
Colin Crossa48ab5b2017-02-14 15:28:44 -0800978 return library.MutatedProperties.VariantIsStatic
Colin Cross4d9c2d12016-07-29 12:48:20 -0700979}
980
Colin Crossa48ab5b2017-02-14 15:28:44 -0800981func (library *libraryDecorator) shared() bool {
982 return library.MutatedProperties.VariantIsShared
983}
984
985func (library *libraryDecorator) header() bool {
986 return !library.static() && !library.shared()
987}
988
989func (library *libraryDecorator) setStatic() {
990 library.MutatedProperties.VariantIsStatic = true
991 library.MutatedProperties.VariantIsShared = false
992}
993
994func (library *libraryDecorator) setShared() {
995 library.MutatedProperties.VariantIsStatic = false
996 library.MutatedProperties.VariantIsShared = true
Colin Crossb916a382016-07-29 17:28:03 -0700997}
998
Colin Crossab3b7322016-12-09 14:46:15 -0800999func (library *libraryDecorator) BuildOnlyStatic() {
Colin Crossa48ab5b2017-02-14 15:28:44 -08001000 library.MutatedProperties.BuildShared = false
Colin Crossab3b7322016-12-09 14:46:15 -08001001}
1002
1003func (library *libraryDecorator) BuildOnlyShared() {
Colin Crossa48ab5b2017-02-14 15:28:44 -08001004 library.MutatedProperties.BuildStatic = false
Colin Crossab3b7322016-12-09 14:46:15 -08001005}
1006
Colin Cross5950f382016-12-13 12:50:57 -08001007func (library *libraryDecorator) HeaderOnly() {
Colin Crossa48ab5b2017-02-14 15:28:44 -08001008 library.MutatedProperties.BuildShared = false
1009 library.MutatedProperties.BuildStatic = false
Colin Cross5950f382016-12-13 12:50:57 -08001010}
1011
Jiyong Park7ed9de32018-10-15 22:25:07 +09001012func (library *libraryDecorator) buildStubs() bool {
1013 return library.MutatedProperties.BuildStubs
1014}
1015
1016func (library *libraryDecorator) stubsVersion() string {
1017 return library.MutatedProperties.StubsVersion
1018}
1019
Colin Cross571cccf2019-02-04 11:22:08 -08001020var versioningMacroNamesListKey = android.NewOnceKey("versioningMacroNamesList")
1021
Jiyong Parkda732bd2018-11-02 18:23:15 +09001022func versioningMacroNamesList(config android.Config) *map[string]string {
Colin Cross571cccf2019-02-04 11:22:08 -08001023 return config.Once(versioningMacroNamesListKey, func() interface{} {
Jiyong Parkda732bd2018-11-02 18:23:15 +09001024 m := make(map[string]string)
1025 return &m
1026 }).(*map[string]string)
1027}
1028
1029// alphanumeric and _ characters are preserved.
1030// other characters are all converted to _
1031var charsNotForMacro = regexp.MustCompile("[^a-zA-Z0-9_]+")
1032
1033func versioningMacroName(moduleName string) string {
1034 macroName := charsNotForMacro.ReplaceAllString(moduleName, "_")
1035 macroName = strings.ToUpper(moduleName)
1036 return "__" + macroName + "_API__"
1037}
1038
Colin Crossab3b7322016-12-09 14:46:15 -08001039func NewLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) {
Colin Cross4d9c2d12016-07-29 12:48:20 -07001040 module := newModule(hod, android.MultilibBoth)
1041
Colin Crossb916a382016-07-29 17:28:03 -07001042 library := &libraryDecorator{
Colin Crossa48ab5b2017-02-14 15:28:44 -08001043 MutatedProperties: LibraryMutatedProperties{
Colin Crossab3b7322016-12-09 14:46:15 -08001044 BuildShared: true,
1045 BuildStatic: true,
Colin Cross4d9c2d12016-07-29 12:48:20 -07001046 },
Colin Crossb916a382016-07-29 17:28:03 -07001047 baseCompiler: NewBaseCompiler(),
Dan Albert61f32122018-07-26 14:00:24 -07001048 baseLinker: NewBaseLinker(module.sanitize),
Colin Crossb916a382016-07-29 17:28:03 -07001049 baseInstaller: NewBaseInstaller("lib", "lib64", InstallInSystem),
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -08001050 sabi: module.sabi,
Colin Cross4d9c2d12016-07-29 12:48:20 -07001051 }
1052
Colin Crossb916a382016-07-29 17:28:03 -07001053 module.compiler = library
1054 module.linker = library
1055 module.installer = library
1056
1057 return module, library
1058}
1059
Colin Cross10d22312017-05-03 11:01:58 -07001060// connects a shared library to a static library in order to reuse its .o files to avoid
1061// compiling source files twice.
1062func reuseStaticLibrary(mctx android.BottomUpMutatorContext, static, shared *Module) {
1063 if staticCompiler, ok := static.compiler.(*libraryDecorator); ok {
1064 sharedCompiler := shared.compiler.(*libraryDecorator)
Dan Willemsen3a26eef2018-12-03 15:25:46 -08001065
1066 // Check libraries in addition to cflags, since libraries may be exporting different
1067 // include directories.
Colin Cross10d22312017-05-03 11:01:58 -07001068 if len(staticCompiler.Properties.Static.Cflags) == 0 &&
Dan Willemsen3a26eef2018-12-03 15:25:46 -08001069 len(sharedCompiler.Properties.Shared.Cflags) == 0 &&
1070 len(staticCompiler.Properties.Static.Whole_static_libs) == 0 &&
1071 len(sharedCompiler.Properties.Shared.Whole_static_libs) == 0 &&
1072 len(staticCompiler.Properties.Static.Static_libs) == 0 &&
1073 len(sharedCompiler.Properties.Shared.Static_libs) == 0 &&
1074 len(staticCompiler.Properties.Static.Shared_libs) == 0 &&
1075 len(sharedCompiler.Properties.Shared.Shared_libs) == 0 &&
1076 staticCompiler.Properties.Static.System_shared_libs == nil &&
1077 sharedCompiler.Properties.Shared.System_shared_libs == nil {
Colin Cross10d22312017-05-03 11:01:58 -07001078
1079 mctx.AddInterVariantDependency(reuseObjTag, shared, static)
1080 sharedCompiler.baseCompiler.Properties.OriginalSrcs =
1081 sharedCompiler.baseCompiler.Properties.Srcs
1082 sharedCompiler.baseCompiler.Properties.Srcs = nil
1083 sharedCompiler.baseCompiler.Properties.Generated_sources = nil
Jiyong Parke4bb9862019-02-01 00:31:10 +09001084 } else {
1085 // This dep is just to reference static variant from shared variant
1086 mctx.AddInterVariantDependency(staticVariantTag, shared, static)
Colin Cross10d22312017-05-03 11:01:58 -07001087 }
1088 }
1089}
1090
Colin Crosse40b4ea2018-10-02 22:25:58 -07001091func LinkageMutator(mctx android.BottomUpMutatorContext) {
Colin Crossb916a382016-07-29 17:28:03 -07001092 if m, ok := mctx.Module().(*Module); ok && m.linker != nil {
Colin Cross33b2fb72019-05-14 14:07:01 -07001093 switch library := m.linker.(type) {
1094 case prebuiltLibraryInterface:
1095 // Always create both the static and shared variants for prebuilt libraries, and then disable the one
1096 // that is not being used. This allows them to share the name of a cc_library module, which requires that
1097 // all the variants of the cc_library also exist on the prebuilt.
1098 modules := mctx.CreateLocalVariations("static", "shared")
1099 static := modules[0].(*Module)
1100 shared := modules[1].(*Module)
1101
1102 static.linker.(prebuiltLibraryInterface).setStatic()
1103 shared.linker.(prebuiltLibraryInterface).setShared()
1104
1105 if !library.buildStatic() {
1106 static.linker.(prebuiltLibraryInterface).disablePrebuilt()
1107 }
1108 if !library.buildShared() {
1109 shared.linker.(prebuiltLibraryInterface).disablePrebuilt()
1110 }
1111
1112 case libraryInterface:
Colin Crossb916a382016-07-29 17:28:03 -07001113 if library.buildStatic() && library.buildShared() {
Colin Cross33b2fb72019-05-14 14:07:01 -07001114 modules := mctx.CreateLocalVariations("static", "shared")
Colin Crossb916a382016-07-29 17:28:03 -07001115 static := modules[0].(*Module)
1116 shared := modules[1].(*Module)
1117
Colin Crossa48ab5b2017-02-14 15:28:44 -08001118 static.linker.(libraryInterface).setStatic()
1119 shared.linker.(libraryInterface).setShared()
Colin Crossb916a382016-07-29 17:28:03 -07001120
Colin Cross10d22312017-05-03 11:01:58 -07001121 reuseStaticLibrary(mctx, static, shared)
1122
Colin Crossb916a382016-07-29 17:28:03 -07001123 } else if library.buildStatic() {
Colin Cross33b2fb72019-05-14 14:07:01 -07001124 modules := mctx.CreateLocalVariations("static")
Colin Crossa48ab5b2017-02-14 15:28:44 -08001125 modules[0].(*Module).linker.(libraryInterface).setStatic()
Colin Crossb916a382016-07-29 17:28:03 -07001126 } else if library.buildShared() {
Colin Cross33b2fb72019-05-14 14:07:01 -07001127 modules := mctx.CreateLocalVariations("shared")
Colin Crossa48ab5b2017-02-14 15:28:44 -08001128 modules[0].(*Module).linker.(libraryInterface).setShared()
Colin Crossb916a382016-07-29 17:28:03 -07001129 }
1130 }
1131 }
Colin Cross4d9c2d12016-07-29 12:48:20 -07001132}
Jiyong Park7ed9de32018-10-15 22:25:07 +09001133
Colin Cross571cccf2019-02-04 11:22:08 -08001134var stubVersionsKey = android.NewOnceKey("stubVersions")
1135
Jiyong Park25fc6a92018-11-18 18:02:45 +09001136// maps a module name to the list of stubs versions available for the module
1137func stubsVersionsFor(config android.Config) map[string][]string {
Colin Cross571cccf2019-02-04 11:22:08 -08001138 return config.Once(stubVersionsKey, func() interface{} {
Jiyong Park25fc6a92018-11-18 18:02:45 +09001139 return make(map[string][]string)
1140 }).(map[string][]string)
1141}
1142
1143var stubsVersionsLock sync.Mutex
1144
1145func latestStubsVersionFor(config android.Config, name string) string {
1146 versions, ok := stubsVersionsFor(config)[name]
1147 if ok && len(versions) > 0 {
1148 // the versions are alreay sorted in ascending order
1149 return versions[len(versions)-1]
1150 }
1151 return ""
1152}
1153
Jiyong Park7ed9de32018-10-15 22:25:07 +09001154// Version mutator splits a module into the mandatory non-stubs variant
Jiyong Park25fc6a92018-11-18 18:02:45 +09001155// (which is unnamed) and zero or more stubs variants.
1156func VersionMutator(mctx android.BottomUpMutatorContext) {
Jiyong Park7ed9de32018-10-15 22:25:07 +09001157 if m, ok := mctx.Module().(*Module); ok && !m.inRecovery() && m.linker != nil {
Jiyong Park25fc6a92018-11-18 18:02:45 +09001158 if library, ok := m.linker.(*libraryDecorator); ok && library.buildShared() &&
1159 len(library.Properties.Stubs.Versions) > 0 {
1160 versions := []string{}
Jiyong Park7ed9de32018-10-15 22:25:07 +09001161 for _, v := range library.Properties.Stubs.Versions {
Jiyong Park25fc6a92018-11-18 18:02:45 +09001162 if _, err := strconv.Atoi(v); err != nil {
1163 mctx.PropertyErrorf("versions", "%q is not a number", v)
1164 }
Jiyong Park7ed9de32018-10-15 22:25:07 +09001165 versions = append(versions, v)
1166 }
Jiyong Park25fc6a92018-11-18 18:02:45 +09001167 sort.Slice(versions, func(i, j int) bool {
1168 left, _ := strconv.Atoi(versions[i])
1169 right, _ := strconv.Atoi(versions[j])
1170 return left < right
1171 })
1172
1173 // save the list of versions for later use
1174 copiedVersions := make([]string, len(versions))
1175 copy(copiedVersions, versions)
1176 stubsVersionsLock.Lock()
1177 defer stubsVersionsLock.Unlock()
1178 stubsVersionsFor(mctx.Config())[mctx.ModuleName()] = copiedVersions
1179
1180 // "" is for the non-stubs variant
Jiyong Park67883b32019-01-03 21:35:58 +09001181 versions = append([]string{""}, versions...)
Jiyong Park25fc6a92018-11-18 18:02:45 +09001182
Jiyong Park7ed9de32018-10-15 22:25:07 +09001183 modules := mctx.CreateVariations(versions...)
1184 for i, m := range modules {
1185 l := m.(*Module).linker.(*libraryDecorator)
Jiyong Park25fc6a92018-11-18 18:02:45 +09001186 if versions[i] != "" {
1187 l.MutatedProperties.BuildStubs = true
1188 l.MutatedProperties.StubsVersion = versions[i]
1189 m.(*Module).Properties.HideFromMake = true
Jiyong Park090d9df2018-12-11 02:47:16 +09001190 m.(*Module).sanitize = nil
1191 m.(*Module).stl = nil
Jiyong Park127d5652018-12-12 10:26:20 +09001192 m.(*Module).Properties.PreventInstall = true
Jiyong Park7ed9de32018-10-15 22:25:07 +09001193 }
Jiyong Park7ed9de32018-10-15 22:25:07 +09001194 }
1195 } else {
1196 mctx.CreateVariations("")
1197 }
1198 return
1199 }
1200 if genrule, ok := mctx.Module().(*genrule.Module); ok {
1201 if props, ok := genrule.Extra.(*GenruleExtraProperties); ok && !props.InRecovery {
1202 mctx.CreateVariations("")
1203 return
1204 }
1205 }
1206}