blob: b193ab7000cca3126518615fc84da8adec8210a6 [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"`
Paul Duffin5213e2b2019-07-25 12:22:47 +010036 Cflags []string `android:"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 }
Vic Yang6cd1be82019-06-24 16:08:48 -0700113
114 // Order symbols in .bss section by their sizes. Only useful for shared libraries.
115 Sort_bss_symbols_by_size *bool
Colin Crossa48ab5b2017-02-14 15:28:44 -0800116}
Colin Cross0c461f12016-10-20 16:11:43 -0700117
Colin Crossa48ab5b2017-02-14 15:28:44 -0800118type LibraryMutatedProperties struct {
Colin Crossb916a382016-07-29 17:28:03 -0700119 // Build a static variant
120 BuildStatic bool `blueprint:"mutated"`
121 // Build a shared variant
122 BuildShared bool `blueprint:"mutated"`
123 // This variant is shared
124 VariantIsShared bool `blueprint:"mutated"`
125 // This variant is static
126 VariantIsStatic bool `blueprint:"mutated"`
Jiyong Park7ed9de32018-10-15 22:25:07 +0900127
128 // This variant is a stubs lib
129 BuildStubs bool `blueprint:"mutated"`
130 // Version of the stubs lib
131 StubsVersion string `blueprint:"mutated"`
Colin Crossb916a382016-07-29 17:28:03 -0700132}
133
134type FlagExporterProperties struct {
135 // list of directories relative to the Blueprints file that will
Dan Willemsen273af7f2016-11-03 15:53:42 -0700136 // be added to the include path (using -I) for this module and any module that links
Colin Cross5d195602017-10-17 16:15:50 -0700137 // against this module. Directories listed in export_include_dirs do not need to be
138 // listed in local_include_dirs.
Colin Crossb916a382016-07-29 17:28:03 -0700139 Export_include_dirs []string `android:"arch_variant"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700140
141 Target struct {
142 Vendor struct {
143 // list of exported include directories, like
144 // export_include_dirs, that will be applied to the
145 // vendor variant of this library. This will overwrite
146 // any other declarations.
Steven Morelandb21df8f2018-01-05 14:42:54 -0800147 Override_export_include_dirs []string
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700148 }
149 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700150}
151
152func init() {
Steven Morelandf9e62162017-11-02 17:00:50 -0700153 android.RegisterModuleType("cc_library_static", LibraryStaticFactory)
154 android.RegisterModuleType("cc_library_shared", LibrarySharedFactory)
155 android.RegisterModuleType("cc_library", LibraryFactory)
156 android.RegisterModuleType("cc_library_host_static", LibraryHostStaticFactory)
157 android.RegisterModuleType("cc_library_host_shared", LibraryHostSharedFactory)
158 android.RegisterModuleType("cc_library_headers", LibraryHeaderFactory)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700159}
160
Patrice Arruda83c89e02019-03-25 15:32:39 -0700161// cc_library creates both static and/or shared libraries for a device and/or
162// host. By default, a cc_library has a single variant that targets the device.
163// Specifying `host_supported: true` also creates a library that targets the
164// host.
Steven Morelandf9e62162017-11-02 17:00:50 -0700165func LibraryFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800166 module, _ := NewLibrary(android.HostAndDeviceSupported)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700167 return module.Init()
168}
169
Patrice Arruda83c89e02019-03-25 15:32:39 -0700170// cc_library_static creates a static library for a device and/or host binary.
Steven Morelandf9e62162017-11-02 17:00:50 -0700171func LibraryStaticFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800172 module, library := NewLibrary(android.HostAndDeviceSupported)
173 library.BuildOnlyStatic()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700174 return module.Init()
175}
176
Patrice Arruda83c89e02019-03-25 15:32:39 -0700177// cc_library_shared creates a shared library for a device and/or host.
Steven Morelandf9e62162017-11-02 17:00:50 -0700178func LibrarySharedFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800179 module, library := NewLibrary(android.HostAndDeviceSupported)
180 library.BuildOnlyShared()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700181 return module.Init()
182}
183
Patrice Arruda83c89e02019-03-25 15:32:39 -0700184// cc_library_host_static creates a static library that is linkable to a host
185// binary.
Steven Morelandf9e62162017-11-02 17:00:50 -0700186func LibraryHostStaticFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800187 module, library := NewLibrary(android.HostSupported)
188 library.BuildOnlyStatic()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700189 return module.Init()
190}
191
Patrice Arruda83c89e02019-03-25 15:32:39 -0700192// cc_library_host_shared creates a shared library that is usable on a host.
Steven Morelandf9e62162017-11-02 17:00:50 -0700193func LibraryHostSharedFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800194 module, library := NewLibrary(android.HostSupported)
195 library.BuildOnlyShared()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700196 return module.Init()
197}
198
Patrice Arruda83c89e02019-03-25 15:32:39 -0700199// cc_library_headers contains a set of c/c++ headers which are imported by
200// other soong cc modules using the header_libs property. For best practices,
201// use export_include_dirs property or LOCAL_EXPORT_C_INCLUDE_DIRS for
202// Make.
Steven Morelandf9e62162017-11-02 17:00:50 -0700203func LibraryHeaderFactory() android.Module {
Colin Cross5950f382016-12-13 12:50:57 -0800204 module, library := NewLibrary(android.HostAndDeviceSupported)
205 library.HeaderOnly()
206 return module.Init()
207}
208
Colin Cross4d9c2d12016-07-29 12:48:20 -0700209type flagExporter struct {
210 Properties FlagExporterProperties
211
Inseob Kim69378442019-06-03 19:10:47 +0900212 dirs []string
213 systemDirs []string
214 flags []string
215 deps android.Paths
Colin Cross4d9c2d12016-07-29 12:48:20 -0700216}
217
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700218func (f *flagExporter) exportedIncludes(ctx ModuleContext) android.Paths {
Steven Morelandb21df8f2018-01-05 14:42:54 -0800219 if ctx.useVndk() && f.Properties.Target.Vendor.Override_export_include_dirs != nil {
220 return android.PathsForModuleSrc(ctx, f.Properties.Target.Vendor.Override_export_include_dirs)
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700221 } else {
222 return android.PathsForModuleSrc(ctx, f.Properties.Export_include_dirs)
223 }
224}
225
Inseob Kim69378442019-06-03 19:10:47 +0900226func (f *flagExporter) exportIncludes(ctx ModuleContext) {
227 f.dirs = append(f.dirs, f.exportedIncludes(ctx).Strings()...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700228}
229
Inseob Kim69378442019-06-03 19:10:47 +0900230func (f *flagExporter) exportIncludesAsSystem(ctx ModuleContext) {
231 f.systemDirs = append(f.systemDirs, f.exportedIncludes(ctx).Strings()...)
232}
233
234func (f *flagExporter) reexportDirs(dirs ...string) {
235 f.dirs = append(f.dirs, dirs...)
236}
237
238func (f *flagExporter) reexportSystemDirs(dirs ...string) {
239 f.systemDirs = append(f.systemDirs, dirs...)
240}
241
242func (f *flagExporter) reexportFlags(flags ...string) {
243 for _, flag := range flags {
244 if strings.HasPrefix(flag, "-I") || strings.HasPrefix(flag, "-isystem") {
245 panic(fmt.Errorf("Exporting invalid flag %q: "+
246 "use reexportDirs or reexportSystemDirs to export directories", flag))
247 }
248 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700249 f.flags = append(f.flags, flags...)
250}
251
Inseob Kim69378442019-06-03 19:10:47 +0900252func (f *flagExporter) reexportDeps(deps ...android.Path) {
253 f.deps = append(f.deps, deps...)
254}
255
256func (f *flagExporter) exportedDirs() []string {
257 return f.dirs
258}
259
260func (f *flagExporter) exportedSystemDirs() []string {
261 return f.systemDirs
Dan Willemsen847dcc72016-09-29 12:13:36 -0700262}
263
Colin Cross4d9c2d12016-07-29 12:48:20 -0700264func (f *flagExporter) exportedFlags() []string {
265 return f.flags
266}
267
Inseob Kim69378442019-06-03 19:10:47 +0900268func (f *flagExporter) exportedDeps() android.Paths {
269 return f.deps
Dan Willemsen847dcc72016-09-29 12:13:36 -0700270}
271
Colin Cross4d9c2d12016-07-29 12:48:20 -0700272type exportedFlagsProducer interface {
Inseob Kim69378442019-06-03 19:10:47 +0900273 exportedDirs() []string
274 exportedSystemDirs() []string
Colin Cross4d9c2d12016-07-29 12:48:20 -0700275 exportedFlags() []string
Inseob Kim69378442019-06-03 19:10:47 +0900276 exportedDeps() android.Paths
Colin Cross4d9c2d12016-07-29 12:48:20 -0700277}
278
279var _ exportedFlagsProducer = (*flagExporter)(nil)
280
Colin Crossb916a382016-07-29 17:28:03 -0700281// libraryDecorator wraps baseCompiler, baseLinker and baseInstaller to provide library-specific
282// functionality: static vs. shared linkage, reusing object files for shared libraries
283type libraryDecorator struct {
Colin Crossa48ab5b2017-02-14 15:28:44 -0800284 Properties LibraryProperties
285 MutatedProperties LibraryMutatedProperties
Colin Cross4d9c2d12016-07-29 12:48:20 -0700286
287 // For reusing static library objects for shared library
Inseob Kim69378442019-06-03 19:10:47 +0900288 reuseObjects Objects
Colin Cross10d22312017-05-03 11:01:58 -0700289
Colin Cross26c34ed2016-09-30 17:10:16 -0700290 // table-of-contents file to optimize out relinking when possible
291 tocFile android.OptionalPath
Colin Cross4d9c2d12016-07-29 12:48:20 -0700292
Colin Cross4d9c2d12016-07-29 12:48:20 -0700293 flagExporter
294 stripper
295
Colin Cross4d9c2d12016-07-29 12:48:20 -0700296 // If we're used as a whole_static_lib, our missing dependencies need
297 // to be given
298 wholeStaticMissingDeps []string
299
300 // For whole_static_libs
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700301 objects Objects
Colin Cross4d9c2d12016-07-29 12:48:20 -0700302
303 // Uses the module's name if empty, but can be overridden. Does not include
304 // shlib suffix.
305 libName string
Colin Crossb916a382016-07-29 17:28:03 -0700306
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800307 sabi *sabi
308
Dan Willemsen581341d2017-02-09 16:16:31 -0800309 // Output archive of gcno coverage information files
310 coverageOutputFile android.OptionalPath
311
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800312 // linked Source Abi Dump
313 sAbiOutputFile android.OptionalPath
314
315 // Source Abi Diff
316 sAbiDiff android.OptionalPath
317
Colin Cross0875c522017-11-28 17:34:01 -0800318 // Location of the static library in the sysroot. Empty if the library is
319 // not included in the NDK.
320 ndkSysrootPath android.Path
321
Colin Crossb60190a2018-09-04 16:28:17 -0700322 // Location of the linked, unstripped library for shared libraries
323 unstrippedOutputFile android.Path
324
Dan Willemsen569edc52018-11-19 09:33:29 -0800325 // Location of the file that should be copied to dist dir when requested
326 distFile android.OptionalPath
327
Jiyong Park7ed9de32018-10-15 22:25:07 +0900328 versionScriptPath android.ModuleGenPath
329
Jiyong Parkf1194352019-02-25 11:05:47 +0900330 post_install_cmds []string
331
Vic Yangefd249e2018-11-12 20:19:56 -0800332 // If useCoreVariant is true, the vendor variant of a VNDK library is
333 // not installed.
334 useCoreVariant bool
335
Colin Crossb916a382016-07-29 17:28:03 -0700336 // Decorated interafaces
337 *baseCompiler
338 *baseLinker
339 *baseInstaller
Colin Cross4d9c2d12016-07-29 12:48:20 -0700340}
341
Colin Crossb916a382016-07-29 17:28:03 -0700342func (library *libraryDecorator) linkerProps() []interface{} {
343 var props []interface{}
344 props = append(props, library.baseLinker.linkerProps()...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700345 return append(props,
346 &library.Properties,
Colin Crossa48ab5b2017-02-14 15:28:44 -0800347 &library.MutatedProperties,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700348 &library.flagExporter.Properties,
Colin Cross22f37952018-09-05 10:43:13 -0700349 &library.stripper.StripProperties)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700350}
351
Colin Crossb916a382016-07-29 17:28:03 -0700352func (library *libraryDecorator) linkerFlags(ctx ModuleContext, flags Flags) Flags {
Colin Cross42742b82016-08-01 13:20:05 -0700353 flags = library.baseLinker.linkerFlags(ctx, flags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700354
Colin Crossb916a382016-07-29 17:28:03 -0700355 // MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
356 // all code is position independent, and then those warnings get promoted to
357 // errors.
Colin Cross3edeee12017-04-04 12:59:48 -0700358 if !ctx.Windows() {
Colin Crossb916a382016-07-29 17:28:03 -0700359 flags.CFlags = append(flags.CFlags, "-fPIC")
360 }
361
362 if library.static() {
363 flags.CFlags = append(flags.CFlags, library.Properties.Static.Cflags...)
Colin Crossa48ab5b2017-02-14 15:28:44 -0800364 } else if library.shared() {
Colin Crossb916a382016-07-29 17:28:03 -0700365 flags.CFlags = append(flags.CFlags, library.Properties.Shared.Cflags...)
366 }
367
Colin Crossa48ab5b2017-02-14 15:28:44 -0800368 if library.shared() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700369 libName := library.getLibName(ctx)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700370 var f []string
Dan Willemsen01a405a2016-06-13 17:19:03 -0700371 if ctx.toolchain().Bionic() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700372 f = append(f,
373 "-nostdlib",
374 "-Wl,--gc-sections",
375 )
376 }
377
378 if ctx.Darwin() {
379 f = append(f,
380 "-dynamiclib",
381 "-single_module",
Colin Cross4d9c2d12016-07-29 12:48:20 -0700382 "-install_name @rpath/"+libName+flags.Toolchain.ShlibSuffix(),
383 )
Colin Cross7863cf52016-10-20 10:47:21 -0700384 if ctx.Arch().ArchType == android.X86 {
385 f = append(f,
386 "-read_only_relocs suppress",
387 )
388 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700389 } else {
Josh Gao75a50a22019-06-07 17:58:59 -0700390 f = append(f, "-shared")
391 if !ctx.Windows() {
392 f = append(f, "-Wl,-soname,"+libName+flags.Toolchain.ShlibSuffix())
393 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700394 }
395
396 flags.LdFlags = append(f, flags.LdFlags...)
397 }
398
399 return flags
400}
401
Colin Crossf18e1102017-11-16 14:33:08 -0800402func (library *libraryDecorator) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags {
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700403 exportIncludeDirs := library.flagExporter.exportedIncludes(ctx)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700404 if len(exportIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700405 f := includeDirsToFlags(exportIncludeDirs)
406 flags.GlobalFlags = append(flags.GlobalFlags, f)
407 flags.YasmFlags = append(flags.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700408 }
409
Jiyong Park7ed9de32018-10-15 22:25:07 +0900410 flags = library.baseCompiler.compilerFlags(ctx, flags, deps)
411 if library.buildStubs() {
Jiyong Park64379952018-12-13 18:37:29 +0900412 // Remove -include <file> when compiling stubs. Otherwise, the force included
413 // headers might cause conflicting types error with the symbols in the
414 // generated stubs source code. e.g.
415 // double acos(double); // in header
416 // void acos() {} // in the generated source code
417 removeInclude := func(flags []string) []string {
418 ret := flags[:0]
419 for _, f := range flags {
420 if strings.HasPrefix(f, "-include ") {
421 continue
422 }
423 ret = append(ret, f)
424 }
425 return ret
426 }
427 flags.GlobalFlags = removeInclude(flags.GlobalFlags)
428 flags.CFlags = removeInclude(flags.CFlags)
429
Jiyong Park7ed9de32018-10-15 22:25:07 +0900430 flags = addStubLibraryCompilerFlags(flags)
431 }
432 return flags
Dan Willemsen273af7f2016-11-03 15:53:42 -0700433}
434
Hsin-Yi Chenaf17d742019-07-29 17:46:59 +0800435func (library *libraryDecorator) shouldCreateSourceAbiDump(ctx ModuleContext) bool {
436 if !ctx.shouldCreateSourceAbiDump() {
437 return false
438 }
Logan Chien41eabe62019-04-10 13:33:58 +0800439 if library.Properties.Header_abi_checker.Enabled != nil {
440 return Bool(library.Properties.Header_abi_checker.Enabled)
441 }
Hsin-Yi Chenaf17d742019-07-29 17:46:59 +0800442 if ctx.isNdk() {
443 return true
444 }
445 if ctx.isLlndkPublic(ctx.Config()) {
446 return true
447 }
448 if ctx.useVndk() && ctx.isVndk() && !ctx.isVndkPrivate(ctx.Config()) {
449 // Return true if this is VNDK-core, VNDK-SP, or VNDK-Ext, and not
450 // VNDK-private.
451 return true
452 }
453 return false
Logan Chien41eabe62019-04-10 13:33:58 +0800454}
455
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700456func (library *libraryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
Jiyong Park7ed9de32018-10-15 22:25:07 +0900457 if library.buildStubs() {
Jiyong Park3fd0baf2018-12-07 16:25:39 +0900458 objs, versionScript := compileStubLibrary(ctx, flags, String(library.Properties.Stubs.Symbol_file), library.MutatedProperties.StubsVersion, "--apex")
Jiyong Park7ed9de32018-10-15 22:25:07 +0900459 library.versionScriptPath = versionScript
460 return objs
461 }
462
Colin Cross5950f382016-12-13 12:50:57 -0800463 if !library.buildShared() && !library.buildStatic() {
464 if len(library.baseCompiler.Properties.Srcs) > 0 {
465 ctx.PropertyErrorf("srcs", "cc_library_headers must not have any srcs")
466 }
467 if len(library.Properties.Static.Srcs) > 0 {
468 ctx.PropertyErrorf("static.srcs", "cc_library_headers must not have any srcs")
469 }
470 if len(library.Properties.Shared.Srcs) > 0 {
471 ctx.PropertyErrorf("shared.srcs", "cc_library_headers must not have any srcs")
472 }
473 return Objects{}
474 }
Hsin-Yi Chenaf17d742019-07-29 17:46:59 +0800475 if library.shouldCreateSourceAbiDump(ctx) || library.sabi.Properties.CreateSAbiDumps {
Jayant Chowdharya4fce192017-09-06 13:10:03 -0700476 exportIncludeDirs := library.flagExporter.exportedIncludes(ctx)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800477 var SourceAbiFlags []string
478 for _, dir := range exportIncludeDirs.Strings() {
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700479 SourceAbiFlags = append(SourceAbiFlags, "-I"+dir)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800480 }
Inseob Kim69378442019-06-03 19:10:47 +0900481 for _, reexportedInclude := range library.sabi.Properties.ReexportedIncludes {
482 SourceAbiFlags = append(SourceAbiFlags, "-I"+reexportedInclude)
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700483 }
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800484 flags.SAbiFlags = SourceAbiFlags
485 total_length := len(library.baseCompiler.Properties.Srcs) + len(deps.GeneratedSources) + len(library.Properties.Shared.Srcs) +
486 len(library.Properties.Static.Srcs)
487 if total_length > 0 {
488 flags.SAbiDump = true
489 }
490 }
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700491 objs := library.baseCompiler.compile(ctx, flags, deps)
492 library.reuseObjects = objs
Colin Cross2f336352016-10-26 10:03:47 -0700493 buildFlags := flagsToBuilderFlags(flags)
Colin Crossb916a382016-07-29 17:28:03 -0700494
Colin Cross4d9c2d12016-07-29 12:48:20 -0700495 if library.static() {
Colin Cross8a497952019-03-05 22:25:09 -0800496 srcs := android.PathsForModuleSrc(ctx, library.Properties.Static.Srcs)
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700497 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceStaticLibrary,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800498 srcs, library.baseCompiler.pathDeps, library.baseCompiler.cFlagsDeps))
Colin Crossa48ab5b2017-02-14 15:28:44 -0800499 } else if library.shared() {
Colin Cross8a497952019-03-05 22:25:09 -0800500 srcs := android.PathsForModuleSrc(ctx, library.Properties.Shared.Srcs)
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700501 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceSharedLibrary,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800502 srcs, library.baseCompiler.pathDeps, library.baseCompiler.cFlagsDeps))
Colin Crossb916a382016-07-29 17:28:03 -0700503 }
504
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700505 return objs
Colin Crossb916a382016-07-29 17:28:03 -0700506}
507
508type libraryInterface interface {
509 getWholeStaticMissingDeps() []string
510 static() bool
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700511 objs() Objects
Inseob Kim69378442019-06-03 19:10:47 +0900512 reuseObjs() (Objects, exportedFlagsProducer)
Colin Cross26c34ed2016-09-30 17:10:16 -0700513 toc() android.OptionalPath
Colin Crossb916a382016-07-29 17:28:03 -0700514
515 // Returns true if the build options for the module have selected a static or shared build
516 buildStatic() bool
517 buildShared() bool
518
519 // Sets whether a specific variant is static or shared
Colin Crossa48ab5b2017-02-14 15:28:44 -0800520 setStatic()
521 setShared()
Logan Chien41eabe62019-04-10 13:33:58 +0800522
523 // Write LOCAL_ADDITIONAL_DEPENDENCIES for ABI diff
524 androidMkWriteAdditionalDependenciesForSourceAbiDiff(w io.Writer)
Colin Crossb916a382016-07-29 17:28:03 -0700525}
526
527func (library *libraryDecorator) getLibName(ctx ModuleContext) string {
528 name := library.libName
529 if name == "" {
dimitryd95964a2018-11-07 13:43:34 +0100530 name = String(library.Properties.Stem)
531 if name == "" {
532 name = ctx.baseModuleName()
533 }
Colin Crossb916a382016-07-29 17:28:03 -0700534 }
535
Logan Chienf3511742017-10-31 18:04:35 +0800536 if ctx.isVndkExt() {
537 name = ctx.getVndkExtendsModuleName()
538 }
539
Colin Crossb916a382016-07-29 17:28:03 -0700540 if ctx.Host() && Bool(library.Properties.Unique_host_soname) {
541 if !strings.HasSuffix(name, "-host") {
542 name = name + "-host"
543 }
544 }
545
Inseob Kim0ce291e2019-07-04 14:38:27 +0900546 return name
Colin Crossb916a382016-07-29 17:28:03 -0700547}
548
Jiyong Parkda732bd2018-11-02 18:23:15 +0900549var versioningMacroNamesListMutex sync.Mutex
550
Colin Crossb916a382016-07-29 17:28:03 -0700551func (library *libraryDecorator) linkerInit(ctx BaseModuleContext) {
552 location := InstallInSystem
Dan Albert61f32122018-07-26 14:00:24 -0700553 if library.baseLinker.sanitize.inSanitizerDir() {
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700554 location = InstallInSanitizerDir
Colin Crossb916a382016-07-29 17:28:03 -0700555 }
556 library.baseInstaller.location = location
Colin Crossb916a382016-07-29 17:28:03 -0700557 library.baseLinker.linkerInit(ctx)
Jiyong Park7ed9de32018-10-15 22:25:07 +0900558 // Let baseLinker know whether this variant is for stubs or not, so that
559 // it can omit things that are not required for linking stubs.
560 library.baseLinker.dynamicProperties.BuildStubs = library.buildStubs()
Jiyong Parkda732bd2018-11-02 18:23:15 +0900561
562 if library.buildStubs() {
563 macroNames := versioningMacroNamesList(ctx.Config())
564 myName := versioningMacroName(ctx.ModuleName())
565 versioningMacroNamesListMutex.Lock()
566 defer versioningMacroNamesListMutex.Unlock()
567 if (*macroNames)[myName] == "" {
568 (*macroNames)[myName] = ctx.ModuleName()
569 } else if (*macroNames)[myName] != ctx.ModuleName() {
570 ctx.ModuleErrorf("Macro name %q for versioning conflicts with macro name from module %q ", myName, (*macroNames)[myName])
571 }
572 }
Colin Crossb916a382016-07-29 17:28:03 -0700573}
574
dimitry0345ad82018-12-05 16:28:14 +0100575func (library *libraryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
576 deps = library.baseCompiler.compilerDeps(ctx, deps)
577
dimitry0345ad82018-12-05 16:28:14 +0100578 return deps
579}
580
Colin Cross37047f12016-12-13 17:06:13 -0800581func (library *libraryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
Dan Willemsen3a26eef2018-12-03 15:25:46 -0800582 if library.static() {
583 if library.Properties.Static.System_shared_libs != nil {
584 library.baseLinker.Properties.System_shared_libs = library.Properties.Static.System_shared_libs
585 }
586 } else if library.shared() {
587 if library.Properties.Shared.System_shared_libs != nil {
588 library.baseLinker.Properties.System_shared_libs = library.Properties.Shared.System_shared_libs
589 }
590 }
591
Colin Crossb916a382016-07-29 17:28:03 -0700592 deps = library.baseLinker.linkerDeps(ctx, deps)
593
594 if library.static() {
595 deps.WholeStaticLibs = append(deps.WholeStaticLibs,
596 library.Properties.Static.Whole_static_libs...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700597 deps.StaticLibs = append(deps.StaticLibs, library.Properties.Static.Static_libs...)
598 deps.SharedLibs = append(deps.SharedLibs, library.Properties.Static.Shared_libs...)
Colin Crosseefe9a32019-01-22 14:41:08 -0800599
600 deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, library.Properties.Static.Export_shared_lib_headers...)
601 deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, library.Properties.Static.Export_static_lib_headers...)
Colin Crossa48ab5b2017-02-14 15:28:44 -0800602 } else if library.shared() {
Dan Willemsen2e47b342016-11-17 01:02:25 -0800603 if ctx.toolchain().Bionic() && !Bool(library.baseLinker.Properties.Nocrt) {
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700604 if !ctx.useSdk() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700605 deps.CrtBegin = "crtbegin_so"
606 deps.CrtEnd = "crtend_so"
607 } else {
Dan Albertebedf672016-11-08 15:06:22 -0800608 // TODO(danalbert): Add generation of crt objects.
609 // For `sdk_version: "current"`, we don't actually have a
610 // freshly generated set of CRT objects. Use the last stable
611 // version.
612 version := ctx.sdkVersion()
613 if version == "current" {
Jayant Chowdhary6e8115a2017-05-09 10:21:52 -0700614 version = getCurrentNdkPrebuiltVersion(ctx)
Dan Albertebedf672016-11-08 15:06:22 -0800615 }
616 deps.CrtBegin = "ndk_crtbegin_so." + version
617 deps.CrtEnd = "ndk_crtend_so." + version
Colin Cross4d9c2d12016-07-29 12:48:20 -0700618 }
619 }
620 deps.WholeStaticLibs = append(deps.WholeStaticLibs, library.Properties.Shared.Whole_static_libs...)
621 deps.StaticLibs = append(deps.StaticLibs, library.Properties.Shared.Static_libs...)
622 deps.SharedLibs = append(deps.SharedLibs, library.Properties.Shared.Shared_libs...)
Colin Crosseefe9a32019-01-22 14:41:08 -0800623
624 deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, library.Properties.Shared.Export_shared_lib_headers...)
625 deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, library.Properties.Shared.Export_static_lib_headers...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700626 }
Jiyong Park52d25bd2017-10-13 09:17:01 +0900627 if ctx.useVndk() {
628 deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, library.baseLinker.Properties.Target.Vendor.Exclude_static_libs)
629 deps.SharedLibs = removeListFromList(deps.SharedLibs, library.baseLinker.Properties.Target.Vendor.Exclude_shared_libs)
630 deps.StaticLibs = removeListFromList(deps.StaticLibs, library.baseLinker.Properties.Target.Vendor.Exclude_static_libs)
Victor Chang51271c12019-01-30 16:02:22 +0000631 deps.ReexportSharedLibHeaders = removeListFromList(deps.ReexportSharedLibHeaders, library.baseLinker.Properties.Target.Vendor.Exclude_shared_libs)
632 deps.ReexportStaticLibHeaders = removeListFromList(deps.ReexportStaticLibHeaders, library.baseLinker.Properties.Target.Vendor.Exclude_static_libs)
Jiyong Park52d25bd2017-10-13 09:17:01 +0900633 }
Jiyong Parkf9332f12018-02-01 00:54:12 +0900634 if ctx.inRecovery() {
635 deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, library.baseLinker.Properties.Target.Recovery.Exclude_static_libs)
636 deps.SharedLibs = removeListFromList(deps.SharedLibs, library.baseLinker.Properties.Target.Recovery.Exclude_shared_libs)
637 deps.StaticLibs = removeListFromList(deps.StaticLibs, library.baseLinker.Properties.Target.Recovery.Exclude_static_libs)
Victor Chang51271c12019-01-30 16:02:22 +0000638 deps.ReexportSharedLibHeaders = removeListFromList(deps.ReexportSharedLibHeaders, library.baseLinker.Properties.Target.Recovery.Exclude_shared_libs)
639 deps.ReexportStaticLibHeaders = removeListFromList(deps.ReexportStaticLibHeaders, library.baseLinker.Properties.Target.Recovery.Exclude_static_libs)
Jiyong Parkf9332f12018-02-01 00:54:12 +0900640 }
Colin Cross2383f3b2018-02-06 14:40:13 -0800641
Colin Cross4d9c2d12016-07-29 12:48:20 -0700642 return deps
643}
644
Colin Crossb916a382016-07-29 17:28:03 -0700645func (library *libraryDecorator) linkStatic(ctx ModuleContext,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700646 flags Flags, deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700647
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700648 library.objects = deps.WholeStaticLibObjs.Copy()
649 library.objects = library.objects.Append(objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700650
Inseob Kim0ce291e2019-07-04 14:38:27 +0900651 fileName := ctx.ModuleName() + staticLibraryExtension
Colin Cross86803cf2018-02-15 14:12:26 -0800652 outputFile := android.PathForModuleOut(ctx, fileName)
Dan Willemsen581341d2017-02-09 16:16:31 -0800653 builderFlags := flagsToBuilderFlags(flags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700654
Dan Willemsen569edc52018-11-19 09:33:29 -0800655 if Bool(library.baseLinker.Properties.Use_version_lib) {
656 if ctx.Host() {
657 versionedOutputFile := outputFile
658 outputFile = android.PathForModuleOut(ctx, "unversioned", fileName)
659 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
660 } else {
661 versionedOutputFile := android.PathForModuleOut(ctx, "versioned", fileName)
662 library.distFile = android.OptionalPathForPath(versionedOutputFile)
663 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
664 }
Colin Cross86803cf2018-02-15 14:12:26 -0800665 }
666
Dan Willemsen581341d2017-02-09 16:16:31 -0800667 TransformObjToStaticLib(ctx, library.objects.objFiles, builderFlags, outputFile, objs.tidyFiles)
668
Inseob Kim0ce291e2019-07-04 14:38:27 +0900669 library.coverageOutputFile = TransformCoverageFilesToZip(ctx, library.objects, ctx.ModuleName())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700670
671 library.wholeStaticMissingDeps = ctx.GetMissingDependencies()
672
673 ctx.CheckbuildFile(outputFile)
674
675 return outputFile
676}
677
Colin Crossb916a382016-07-29 17:28:03 -0700678func (library *libraryDecorator) linkShared(ctx ModuleContext,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700679 flags Flags, deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700680
681 var linkerDeps android.Paths
Pirama Arumuga Nainarada83ec2017-08-31 23:38:27 -0700682 linkerDeps = append(linkerDeps, flags.LdFlagsDeps...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700683
Colin Cross2383f3b2018-02-06 14:40:13 -0800684 unexportedSymbols := ctx.ExpandOptionalSource(library.Properties.Unexported_symbols_list, "unexported_symbols_list")
685 forceNotWeakSymbols := ctx.ExpandOptionalSource(library.Properties.Force_symbols_not_weak_list, "force_symbols_not_weak_list")
686 forceWeakSymbols := ctx.ExpandOptionalSource(library.Properties.Force_symbols_weak_list, "force_symbols_weak_list")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700687 if !ctx.Darwin() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700688 if unexportedSymbols.Valid() {
689 ctx.PropertyErrorf("unexported_symbols_list", "Only supported on Darwin")
690 }
691 if forceNotWeakSymbols.Valid() {
692 ctx.PropertyErrorf("force_symbols_not_weak_list", "Only supported on Darwin")
693 }
694 if forceWeakSymbols.Valid() {
695 ctx.PropertyErrorf("force_symbols_weak_list", "Only supported on Darwin")
696 }
697 } else {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700698 if unexportedSymbols.Valid() {
699 flags.LdFlags = append(flags.LdFlags, "-Wl,-unexported_symbols_list,"+unexportedSymbols.String())
700 linkerDeps = append(linkerDeps, unexportedSymbols.Path())
701 }
702 if forceNotWeakSymbols.Valid() {
703 flags.LdFlags = append(flags.LdFlags, "-Wl,-force_symbols_not_weak_list,"+forceNotWeakSymbols.String())
704 linkerDeps = append(linkerDeps, forceNotWeakSymbols.Path())
705 }
706 if forceWeakSymbols.Valid() {
707 flags.LdFlags = append(flags.LdFlags, "-Wl,-force_symbols_weak_list,"+forceWeakSymbols.String())
708 linkerDeps = append(linkerDeps, forceWeakSymbols.Path())
709 }
710 }
Jiyong Parkc1e7f482019-01-12 13:39:10 +0900711 if library.buildStubs() {
712 linkerScriptFlags := "-Wl,--version-script," + library.versionScriptPath.String()
713 flags.LdFlags = append(flags.LdFlags, linkerScriptFlags)
714 linkerDeps = append(linkerDeps, library.versionScriptPath)
715 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700716
717 fileName := library.getLibName(ctx) + flags.Toolchain.ShlibSuffix()
718 outputFile := android.PathForModuleOut(ctx, fileName)
719 ret := outputFile
720
Josh Gao75a50a22019-06-07 17:58:59 -0700721 var implicitOutputs android.WritablePaths
722 if ctx.Windows() {
723 importLibraryPath := android.PathForModuleOut(ctx, pathtools.ReplaceExtension(fileName, "lib"))
724
725 flags.LdFlags = append(flags.LdFlags, "-Wl,--out-implib="+importLibraryPath.String())
726 implicitOutputs = append(implicitOutputs, importLibraryPath)
727 }
728
Colin Cross4d9c2d12016-07-29 12:48:20 -0700729 builderFlags := flagsToBuilderFlags(flags)
730
Colin Crossb496cfd2018-09-10 16:50:05 -0700731 // Optimize out relinking against shared libraries whose interface hasn't changed by
732 // depending on a table of contents file instead of the library itself.
733 tocPath := outputFile.RelPathString()
734 tocPath = pathtools.ReplaceExtension(tocPath, flags.Toolchain.ShlibSuffix()[1:]+".toc")
735 tocFile := android.PathForOutput(ctx, tocPath)
736 library.tocFile = android.OptionalPathForPath(tocFile)
737 TransformSharedObjectToToc(ctx, outputFile, tocFile, builderFlags)
Colin Cross89562dc2016-10-03 17:47:19 -0700738
Colin Cross4d9c2d12016-07-29 12:48:20 -0700739 if library.stripper.needsStrip(ctx) {
Yi Kongb5c34d72018-11-07 16:28:49 -0800740 if ctx.Darwin() {
741 builderFlags.stripUseGnuStrip = true
742 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700743 strippedOutputFile := outputFile
744 outputFile = android.PathForModuleOut(ctx, "unstripped", fileName)
Ryan Prichardf979d732019-05-30 20:53:29 -0700745 library.stripper.stripExecutableOrSharedLib(ctx, outputFile, strippedOutputFile, builderFlags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700746 }
747
Colin Crossb60190a2018-09-04 16:28:17 -0700748 library.unstrippedOutputFile = outputFile
749
Dan Willemsen569edc52018-11-19 09:33:29 -0800750 if Bool(library.baseLinker.Properties.Use_version_lib) {
751 if ctx.Host() {
752 versionedOutputFile := outputFile
753 outputFile = android.PathForModuleOut(ctx, "unversioned", fileName)
754 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
755 } else {
756 versionedOutputFile := android.PathForModuleOut(ctx, "versioned", fileName)
757 library.distFile = android.OptionalPathForPath(versionedOutputFile)
758
759 if library.stripper.needsStrip(ctx) {
760 out := android.PathForModuleOut(ctx, "versioned-stripped", fileName)
761 library.distFile = android.OptionalPathForPath(out)
Ryan Prichardf979d732019-05-30 20:53:29 -0700762 library.stripper.stripExecutableOrSharedLib(ctx, versionedOutputFile, out, builderFlags)
Dan Willemsen569edc52018-11-19 09:33:29 -0800763 }
764
765 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
766 }
Colin Cross86803cf2018-02-15 14:12:26 -0800767 }
768
Jiyong Park64a44f22019-01-18 14:37:08 +0900769 sharedLibs := deps.EarlySharedLibs
770 sharedLibs = append(sharedLibs, deps.SharedLibs...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700771 sharedLibs = append(sharedLibs, deps.LateSharedLibs...)
772
Jiyong Park64a44f22019-01-18 14:37:08 +0900773 linkerDeps = append(linkerDeps, deps.EarlySharedLibsDeps...)
Colin Cross26c34ed2016-09-30 17:10:16 -0700774 linkerDeps = append(linkerDeps, deps.SharedLibsDeps...)
775 linkerDeps = append(linkerDeps, deps.LateSharedLibsDeps...)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700776 linkerDeps = append(linkerDeps, objs.tidyFiles...)
Colin Cross26c34ed2016-09-30 17:10:16 -0700777
Vic Yang6cd1be82019-06-24 16:08:48 -0700778 if Bool(library.Properties.Sort_bss_symbols_by_size) {
779 unsortedOutputFile := android.PathForModuleOut(ctx, "unsorted", fileName)
780 TransformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs,
781 deps.StaticLibs, deps.LateStaticLibs, deps.WholeStaticLibs,
782 linkerDeps, deps.CrtBegin, deps.CrtEnd, false, builderFlags, unsortedOutputFile, implicitOutputs)
783
784 symbolOrderingFile := android.PathForModuleOut(ctx, "unsorted", fileName+".symbol_order")
785 symbolOrderingFlag := library.baseLinker.sortBssSymbolsBySize(ctx, unsortedOutputFile, symbolOrderingFile, builderFlags)
786 builderFlags.ldFlags += " " + symbolOrderingFlag
787 linkerDeps = append(linkerDeps, symbolOrderingFile)
788 }
789
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700790 TransformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700791 deps.StaticLibs, deps.LateStaticLibs, deps.WholeStaticLibs,
Josh Gao75a50a22019-06-07 17:58:59 -0700792 linkerDeps, deps.CrtBegin, deps.CrtEnd, false, builderFlags, outputFile, implicitOutputs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700793
Dan Willemsen581341d2017-02-09 16:16:31 -0800794 objs.coverageFiles = append(objs.coverageFiles, deps.StaticLibObjs.coverageFiles...)
795 objs.coverageFiles = append(objs.coverageFiles, deps.WholeStaticLibObjs.coverageFiles...)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800796
797 objs.sAbiDumpFiles = append(objs.sAbiDumpFiles, deps.StaticLibObjs.sAbiDumpFiles...)
798 objs.sAbiDumpFiles = append(objs.sAbiDumpFiles, deps.WholeStaticLibObjs.sAbiDumpFiles...)
799
Oliver Nguyenc7434142019-04-24 14:22:25 -0700800 library.coverageOutputFile = TransformCoverageFilesToZip(ctx, objs, library.getLibName(ctx))
Jayant Chowdhary6ab3d842017-06-26 12:52:58 -0700801 library.linkSAbiDumpFiles(ctx, objs, fileName, ret)
Dan Willemsen581341d2017-02-09 16:16:31 -0800802
Colin Cross4d9c2d12016-07-29 12:48:20 -0700803 return ret
804}
805
Jiyong Parkaf6d8952019-01-31 12:21:23 +0900806func (library *libraryDecorator) unstrippedOutputFilePath() android.Path {
807 return library.unstrippedOutputFile
808}
809
Pirama Arumuga Nainar65c95ff2019-03-25 10:21:31 -0700810func (library *libraryDecorator) nativeCoverage() bool {
811 if library.header() || library.buildStubs() {
812 return false
813 }
814 return true
815}
816
Logan Chien7eefdc42018-07-11 18:10:41 +0800817func getRefAbiDumpFile(ctx ModuleContext, vndkVersion, fileName string) android.Path {
Inseob Kim9516ee92019-05-09 10:56:13 +0900818 isLlndkOrNdk := inList(ctx.baseModuleName(), *llndkLibraries(ctx.Config())) || inList(ctx.baseModuleName(), ndkMigratedLibs)
Logan Chien7eefdc42018-07-11 18:10:41 +0800819
Logan Chien41eabe62019-04-10 13:33:58 +0800820 refAbiDumpTextFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isLlndkOrNdk, ctx.isVndk(), false)
821 refAbiDumpGzipFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isLlndkOrNdk, ctx.isVndk(), true)
Logan Chien7eefdc42018-07-11 18:10:41 +0800822
823 if refAbiDumpTextFile.Valid() {
824 if refAbiDumpGzipFile.Valid() {
825 ctx.ModuleErrorf(
826 "Two reference ABI dump files are found: %q and %q. Please delete the stale one.",
827 refAbiDumpTextFile, refAbiDumpGzipFile)
828 return nil
829 }
830 return refAbiDumpTextFile.Path()
831 }
832 if refAbiDumpGzipFile.Valid() {
833 return UnzipRefDump(ctx, refAbiDumpGzipFile.Path(), fileName)
834 }
835 return nil
836}
837
Jayant Chowdhary6ab3d842017-06-26 12:52:58 -0700838func (library *libraryDecorator) linkSAbiDumpFiles(ctx ModuleContext, objs Objects, fileName string, soFile android.Path) {
Hsin-Yi Chenaf17d742019-07-29 17:46:59 +0800839 if library.shouldCreateSourceAbiDump(ctx) {
Logan Chiena8f51582018-03-21 11:53:48 +0800840 vndkVersion := ctx.DeviceConfig().PlatformVndkVersion()
841 if ver := ctx.DeviceConfig().VndkVersion(); ver != "" && ver != "current" {
Logan Chienf3511742017-10-31 18:04:35 +0800842 vndkVersion = ver
843 }
844
Jayant Chowdharya4fce192017-09-06 13:10:03 -0700845 exportIncludeDirs := library.flagExporter.exportedIncludes(ctx)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800846 var SourceAbiFlags []string
847 for _, dir := range exportIncludeDirs.Strings() {
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700848 SourceAbiFlags = append(SourceAbiFlags, "-I"+dir)
849 }
Inseob Kim69378442019-06-03 19:10:47 +0900850 for _, reexportedInclude := range library.sabi.Properties.ReexportedIncludes {
851 SourceAbiFlags = append(SourceAbiFlags, "-I"+reexportedInclude)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800852 }
853 exportedHeaderFlags := strings.Join(SourceAbiFlags, " ")
Logan Chiene3d7a0d2019-01-17 00:18:02 +0800854 library.sAbiOutputFile = TransformDumpToLinkedDump(ctx, objs.sAbiDumpFiles, soFile, fileName, exportedHeaderFlags,
855 android.OptionalPathForModuleSrc(ctx, library.Properties.Header_abi_checker.Symbol_file),
856 library.Properties.Header_abi_checker.Exclude_symbol_versions,
857 library.Properties.Header_abi_checker.Exclude_symbol_tags)
Logan Chien2f2b8902018-07-10 15:01:19 +0800858
Logan Chien7eefdc42018-07-11 18:10:41 +0800859 refAbiDumpFile := getRefAbiDumpFile(ctx, vndkVersion, fileName)
860 if refAbiDumpFile != nil {
Logan Chienf3511742017-10-31 18:04:35 +0800861 library.sAbiDiff = SourceAbiDiff(ctx, library.sAbiOutputFile.Path(),
Inseob Kim9516ee92019-05-09 10:56:13 +0900862 refAbiDumpFile, fileName, exportedHeaderFlags, ctx.isLlndk(ctx.Config()), ctx.isNdk(), ctx.isVndkExt())
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800863 }
864 }
865}
866
Colin Crossb916a382016-07-29 17:28:03 -0700867func (library *libraryDecorator) link(ctx ModuleContext,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700868 flags Flags, deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700869
Colin Crossad59e752017-11-16 14:29:11 -0800870 objs = deps.Objs.Copy().Append(objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700871 var out android.Path
Colin Crossa48ab5b2017-02-14 15:28:44 -0800872 if library.static() || library.header() {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700873 out = library.linkStatic(ctx, flags, deps, objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700874 } else {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700875 out = library.linkShared(ctx, flags, deps, objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700876 }
877
Inseob Kim69378442019-06-03 19:10:47 +0900878 library.exportIncludes(ctx)
879 library.reexportDirs(deps.ReexportedDirs...)
880 library.reexportSystemDirs(deps.ReexportedSystemDirs...)
881 library.reexportFlags(deps.ReexportedFlags...)
882 library.reexportDeps(deps.ReexportedDeps...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700883
Nan Zhang0007d812017-11-07 10:57:05 -0800884 if Bool(library.Properties.Aidl.Export_aidl_headers) {
Dan Willemsene1240db2016-11-03 14:28:51 -0700885 if library.baseCompiler.hasSrcExt(".aidl") {
Inseob Kim69378442019-06-03 19:10:47 +0900886 dir := android.PathForModuleGen(ctx, "aidl").String()
887 library.reexportDirs(dir)
888 library.reexportDeps(library.baseCompiler.pathDeps...) // TODO: restrict to aidl deps
Dan Willemsene1240db2016-11-03 14:28:51 -0700889 }
890 }
891
Nan Zhang0007d812017-11-07 10:57:05 -0800892 if Bool(library.Properties.Proto.Export_proto_headers) {
Dan Willemsene1240db2016-11-03 14:28:51 -0700893 if library.baseCompiler.hasSrcExt(".proto") {
Dan Willemsenab9f4262018-02-14 13:58:34 -0800894 includes := []string{}
Colin Cross19878da2019-03-28 14:45:07 -0700895 if flags.proto.CanonicalPathFromRoot {
Inseob Kim69378442019-06-03 19:10:47 +0900896 includes = append(includes, flags.proto.SubDir.String())
Colin Cross10d22312017-05-03 11:01:58 -0700897 }
Inseob Kim69378442019-06-03 19:10:47 +0900898 includes = append(includes, flags.proto.Dir.String())
899 library.reexportDirs(includes...)
900 library.reexportDeps(library.baseCompiler.pathDeps...) // TODO: restrict to proto deps
Colin Cross0c461f12016-10-20 16:11:43 -0700901 }
902 }
903
Inseob Kim21f26902018-09-06 00:55:20 +0900904 if library.baseCompiler.hasSrcExt(".sysprop") {
Inseob Kim69378442019-06-03 19:10:47 +0900905 dir := android.PathForModuleGen(ctx, "sysprop", "include").String()
Inseob Kimc0907f12019-02-08 21:00:45 +0900906 if library.Properties.Sysprop.Platform != nil {
907 isProduct := ctx.ProductSpecific() && !ctx.useVndk()
908 isVendor := ctx.useVndk()
909 isOwnerPlatform := Bool(library.Properties.Sysprop.Platform)
910
Inseob Kim5cefbd22019-06-08 20:36:59 +0900911 usePublic := isProduct || (isOwnerPlatform == isVendor)
Inseob Kimc0907f12019-02-08 21:00:45 +0900912
Inseob Kim5cefbd22019-06-08 20:36:59 +0900913 if usePublic {
914 dir = android.PathForModuleGen(ctx, "sysprop/public", "include").String()
Inseob Kimc0907f12019-02-08 21:00:45 +0900915 }
916 }
917
Inseob Kim69378442019-06-03 19:10:47 +0900918 library.reexportDirs(dir)
919 library.reexportDeps(library.baseCompiler.pathDeps...)
Inseob Kim21f26902018-09-06 00:55:20 +0900920 }
921
Jiyong Parkda732bd2018-11-02 18:23:15 +0900922 if library.buildStubs() {
Inseob Kim69378442019-06-03 19:10:47 +0900923 library.reexportFlags("-D" + versioningMacroName(ctx.ModuleName()) + "=" + library.stubsVersion())
Jiyong Parkda732bd2018-11-02 18:23:15 +0900924 }
925
Colin Cross4d9c2d12016-07-29 12:48:20 -0700926 return out
927}
928
Colin Crossb916a382016-07-29 17:28:03 -0700929func (library *libraryDecorator) buildStatic() bool {
Colin Cross38b40df2018-04-10 16:14:46 -0700930 return library.MutatedProperties.BuildStatic && BoolDefault(library.Properties.Static.Enabled, true)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700931}
932
Colin Crossb916a382016-07-29 17:28:03 -0700933func (library *libraryDecorator) buildShared() bool {
Colin Cross38b40df2018-04-10 16:14:46 -0700934 return library.MutatedProperties.BuildShared && BoolDefault(library.Properties.Shared.Enabled, true)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700935}
936
Colin Crossb916a382016-07-29 17:28:03 -0700937func (library *libraryDecorator) getWholeStaticMissingDeps() []string {
Colin Crossd2343a32018-04-30 14:50:01 -0700938 return append([]string(nil), library.wholeStaticMissingDeps...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700939}
940
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700941func (library *libraryDecorator) objs() Objects {
942 return library.objects
Colin Cross4d9c2d12016-07-29 12:48:20 -0700943}
944
Inseob Kim69378442019-06-03 19:10:47 +0900945func (library *libraryDecorator) reuseObjs() (Objects, exportedFlagsProducer) {
946 return library.reuseObjects, &library.flagExporter
Colin Cross4d9c2d12016-07-29 12:48:20 -0700947}
948
Colin Cross26c34ed2016-09-30 17:10:16 -0700949func (library *libraryDecorator) toc() android.OptionalPath {
950 return library.tocFile
951}
952
Jiyong Parkf1194352019-02-25 11:05:47 +0900953func (library *libraryDecorator) installSymlinkToRuntimeApex(ctx ModuleContext, file android.Path) {
954 dir := library.baseInstaller.installDir(ctx)
955 dirOnDevice := android.InstallPathToOnDevicePath(ctx, dir)
956 target := "/" + filepath.Join("apex", "com.android.runtime", dir.Base(), "bionic", file.Base())
957 ctx.InstallAbsoluteSymlink(dir, file.Base(), target)
958 library.post_install_cmds = append(library.post_install_cmds, makeSymlinkCmd(dirOnDevice, file.Base(), target))
959}
960
Colin Crossb916a382016-07-29 17:28:03 -0700961func (library *libraryDecorator) install(ctx ModuleContext, file android.Path) {
Colin Crossc43ae772017-04-14 15:42:53 -0700962 if library.shared() {
Justin Yun8fe12122017-12-07 17:18:15 +0900963 if ctx.Device() && ctx.useVndk() {
964 if ctx.isVndkSp() {
965 library.baseInstaller.subDir = "vndk-sp"
966 } else if ctx.isVndk() {
Vic Yangefd249e2018-11-12 20:19:56 -0800967 if ctx.DeviceConfig().VndkUseCoreVariant() && !ctx.mustUseVendorVariant() {
968 library.useCoreVariant = true
969 }
Justin Yun8fe12122017-12-07 17:18:15 +0900970 library.baseInstaller.subDir = "vndk"
971 }
Logan Chienf3511742017-10-31 18:04:35 +0800972
973 // Append a version to vndk or vndk-sp directories on the system partition.
974 if ctx.isVndk() && !ctx.isVndkExt() {
975 vndkVersion := ctx.DeviceConfig().PlatformVndkVersion()
976 if vndkVersion != "current" && vndkVersion != "" {
977 library.baseInstaller.subDir += "-" + vndkVersion
978 }
Justin Yun8effde42017-06-23 19:24:43 +0900979 }
Peter Collingbourne49a25cb2019-05-21 16:06:09 -0700980 } else if len(library.Properties.Stubs.Versions) > 0 && android.DirectlyInAnyApex(ctx, ctx.ModuleName()) {
Jiyong Parkf1194352019-02-25 11:05:47 +0900981 // Bionic libraries (e.g. libc.so) is installed to the bootstrap subdirectory.
982 // The original path becomes a symlink to the corresponding file in the
983 // runtime APEX.
Jiyong Parkacbf6c72019-07-09 16:19:16 +0900984 translatedArch := ctx.Target().NativeBridge == android.NativeBridgeEnabled || !ctx.Arch().Native
985 if installToBootstrap(ctx.baseModuleName(), ctx.Config()) && !library.buildStubs() && !translatedArch && !ctx.inRecovery() {
Peter Collingbourne3478bb22019-04-24 14:41:12 -0700986 if ctx.Device() && isBionic(ctx.baseModuleName()) {
Jiyong Parkc3e2c862019-03-16 01:10:08 +0900987 library.installSymlinkToRuntimeApex(ctx, file)
988 }
Jiyong Park429660f2019-01-16 22:31:11 +0900989 library.baseInstaller.subDir = "bootstrap"
990 }
Przemyslaw Szczepaniake6fc5072019-07-12 14:06:23 +0100991 } else if android.DirectlyInAnyApex(ctx, ctx.ModuleName()) && ctx.isLlndk(ctx.Config()) && !isBionic(ctx.baseModuleName()) {
992 // Skip installing LLNDK (non-bionic) libraries moved to APEX.
993 ctx.Module().SkipInstall()
Justin Yun8effde42017-06-23 19:24:43 +0900994 }
Przemyslaw Szczepaniake6fc5072019-07-12 14:06:23 +0100995
Colin Cross4d9c2d12016-07-29 12:48:20 -0700996 library.baseInstaller.install(ctx, file)
997 }
Dan Albertf563d252017-10-13 00:29:00 -0700998
Dan Albert281f22b2017-12-13 15:03:47 -0800999 if Bool(library.Properties.Static_ndk_lib) && library.static() &&
Jiyong Parkf9332f12018-02-01 00:54:12 +09001000 !ctx.useVndk() && !ctx.inRecovery() && ctx.Device() &&
Jiyong Park7ed9de32018-10-15 22:25:07 +09001001 library.baseLinker.sanitize.isUnsanitizedVariant() &&
1002 !library.buildStubs() {
Dan Albertf563d252017-10-13 00:29:00 -07001003 installPath := getNdkSysrootBase(ctx).Join(
Dan Albertea4b7b92018-04-25 16:05:30 -07001004 ctx, "usr/lib", config.NDKTriple(ctx.toolchain()), file.Base())
Dan Albertf563d252017-10-13 00:29:00 -07001005
1006 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
1007 Rule: android.Cp,
1008 Description: "install " + installPath.Base(),
1009 Output: installPath,
1010 Input: file,
1011 })
1012
Colin Cross0875c522017-11-28 17:34:01 -08001013 library.ndkSysrootPath = installPath
Dan Albertf563d252017-10-13 00:29:00 -07001014 }
Colin Cross4d9c2d12016-07-29 12:48:20 -07001015}
1016
Colin Crossb916a382016-07-29 17:28:03 -07001017func (library *libraryDecorator) static() bool {
Colin Crossa48ab5b2017-02-14 15:28:44 -08001018 return library.MutatedProperties.VariantIsStatic
Colin Cross4d9c2d12016-07-29 12:48:20 -07001019}
1020
Colin Crossa48ab5b2017-02-14 15:28:44 -08001021func (library *libraryDecorator) shared() bool {
1022 return library.MutatedProperties.VariantIsShared
1023}
1024
1025func (library *libraryDecorator) header() bool {
1026 return !library.static() && !library.shared()
1027}
1028
1029func (library *libraryDecorator) setStatic() {
1030 library.MutatedProperties.VariantIsStatic = true
1031 library.MutatedProperties.VariantIsShared = false
1032}
1033
1034func (library *libraryDecorator) setShared() {
1035 library.MutatedProperties.VariantIsStatic = false
1036 library.MutatedProperties.VariantIsShared = true
Colin Crossb916a382016-07-29 17:28:03 -07001037}
1038
Colin Crossab3b7322016-12-09 14:46:15 -08001039func (library *libraryDecorator) BuildOnlyStatic() {
Colin Crossa48ab5b2017-02-14 15:28:44 -08001040 library.MutatedProperties.BuildShared = false
Colin Crossab3b7322016-12-09 14:46:15 -08001041}
1042
1043func (library *libraryDecorator) BuildOnlyShared() {
Colin Crossa48ab5b2017-02-14 15:28:44 -08001044 library.MutatedProperties.BuildStatic = false
Colin Crossab3b7322016-12-09 14:46:15 -08001045}
1046
Colin Cross5950f382016-12-13 12:50:57 -08001047func (library *libraryDecorator) HeaderOnly() {
Colin Crossa48ab5b2017-02-14 15:28:44 -08001048 library.MutatedProperties.BuildShared = false
1049 library.MutatedProperties.BuildStatic = false
Colin Cross5950f382016-12-13 12:50:57 -08001050}
1051
Jiyong Park7ed9de32018-10-15 22:25:07 +09001052func (library *libraryDecorator) buildStubs() bool {
1053 return library.MutatedProperties.BuildStubs
1054}
1055
1056func (library *libraryDecorator) stubsVersion() string {
1057 return library.MutatedProperties.StubsVersion
1058}
1059
Colin Cross571cccf2019-02-04 11:22:08 -08001060var versioningMacroNamesListKey = android.NewOnceKey("versioningMacroNamesList")
1061
Jiyong Parkda732bd2018-11-02 18:23:15 +09001062func versioningMacroNamesList(config android.Config) *map[string]string {
Colin Cross571cccf2019-02-04 11:22:08 -08001063 return config.Once(versioningMacroNamesListKey, func() interface{} {
Jiyong Parkda732bd2018-11-02 18:23:15 +09001064 m := make(map[string]string)
1065 return &m
1066 }).(*map[string]string)
1067}
1068
1069// alphanumeric and _ characters are preserved.
1070// other characters are all converted to _
1071var charsNotForMacro = regexp.MustCompile("[^a-zA-Z0-9_]+")
1072
1073func versioningMacroName(moduleName string) string {
1074 macroName := charsNotForMacro.ReplaceAllString(moduleName, "_")
1075 macroName = strings.ToUpper(moduleName)
1076 return "__" + macroName + "_API__"
1077}
1078
Colin Crossab3b7322016-12-09 14:46:15 -08001079func NewLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) {
Colin Cross4d9c2d12016-07-29 12:48:20 -07001080 module := newModule(hod, android.MultilibBoth)
1081
Colin Crossb916a382016-07-29 17:28:03 -07001082 library := &libraryDecorator{
Colin Crossa48ab5b2017-02-14 15:28:44 -08001083 MutatedProperties: LibraryMutatedProperties{
Colin Crossab3b7322016-12-09 14:46:15 -08001084 BuildShared: true,
1085 BuildStatic: true,
Colin Cross4d9c2d12016-07-29 12:48:20 -07001086 },
Colin Crossb916a382016-07-29 17:28:03 -07001087 baseCompiler: NewBaseCompiler(),
Dan Albert61f32122018-07-26 14:00:24 -07001088 baseLinker: NewBaseLinker(module.sanitize),
Colin Crossb916a382016-07-29 17:28:03 -07001089 baseInstaller: NewBaseInstaller("lib", "lib64", InstallInSystem),
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -08001090 sabi: module.sabi,
Colin Cross4d9c2d12016-07-29 12:48:20 -07001091 }
1092
Colin Crossb916a382016-07-29 17:28:03 -07001093 module.compiler = library
1094 module.linker = library
1095 module.installer = library
1096
1097 return module, library
1098}
1099
Colin Cross10d22312017-05-03 11:01:58 -07001100// connects a shared library to a static library in order to reuse its .o files to avoid
1101// compiling source files twice.
1102func reuseStaticLibrary(mctx android.BottomUpMutatorContext, static, shared *Module) {
1103 if staticCompiler, ok := static.compiler.(*libraryDecorator); ok {
1104 sharedCompiler := shared.compiler.(*libraryDecorator)
Dan Willemsen3a26eef2018-12-03 15:25:46 -08001105
1106 // Check libraries in addition to cflags, since libraries may be exporting different
1107 // include directories.
Colin Cross10d22312017-05-03 11:01:58 -07001108 if len(staticCompiler.Properties.Static.Cflags) == 0 &&
Dan Willemsen3a26eef2018-12-03 15:25:46 -08001109 len(sharedCompiler.Properties.Shared.Cflags) == 0 &&
1110 len(staticCompiler.Properties.Static.Whole_static_libs) == 0 &&
1111 len(sharedCompiler.Properties.Shared.Whole_static_libs) == 0 &&
1112 len(staticCompiler.Properties.Static.Static_libs) == 0 &&
1113 len(sharedCompiler.Properties.Shared.Static_libs) == 0 &&
1114 len(staticCompiler.Properties.Static.Shared_libs) == 0 &&
1115 len(sharedCompiler.Properties.Shared.Shared_libs) == 0 &&
1116 staticCompiler.Properties.Static.System_shared_libs == nil &&
1117 sharedCompiler.Properties.Shared.System_shared_libs == nil {
Colin Cross10d22312017-05-03 11:01:58 -07001118
1119 mctx.AddInterVariantDependency(reuseObjTag, shared, static)
1120 sharedCompiler.baseCompiler.Properties.OriginalSrcs =
1121 sharedCompiler.baseCompiler.Properties.Srcs
1122 sharedCompiler.baseCompiler.Properties.Srcs = nil
1123 sharedCompiler.baseCompiler.Properties.Generated_sources = nil
Jiyong Parke4bb9862019-02-01 00:31:10 +09001124 } else {
1125 // This dep is just to reference static variant from shared variant
1126 mctx.AddInterVariantDependency(staticVariantTag, shared, static)
Colin Cross10d22312017-05-03 11:01:58 -07001127 }
1128 }
1129}
1130
Colin Crosse40b4ea2018-10-02 22:25:58 -07001131func LinkageMutator(mctx android.BottomUpMutatorContext) {
Colin Crossb916a382016-07-29 17:28:03 -07001132 if m, ok := mctx.Module().(*Module); ok && m.linker != nil {
Colin Cross33b2fb72019-05-14 14:07:01 -07001133 switch library := m.linker.(type) {
1134 case prebuiltLibraryInterface:
1135 // Always create both the static and shared variants for prebuilt libraries, and then disable the one
1136 // that is not being used. This allows them to share the name of a cc_library module, which requires that
1137 // all the variants of the cc_library also exist on the prebuilt.
1138 modules := mctx.CreateLocalVariations("static", "shared")
1139 static := modules[0].(*Module)
1140 shared := modules[1].(*Module)
1141
1142 static.linker.(prebuiltLibraryInterface).setStatic()
1143 shared.linker.(prebuiltLibraryInterface).setShared()
1144
1145 if !library.buildStatic() {
1146 static.linker.(prebuiltLibraryInterface).disablePrebuilt()
1147 }
1148 if !library.buildShared() {
1149 shared.linker.(prebuiltLibraryInterface).disablePrebuilt()
1150 }
1151
1152 case libraryInterface:
Colin Crossb916a382016-07-29 17:28:03 -07001153 if library.buildStatic() && library.buildShared() {
Colin Cross33b2fb72019-05-14 14:07:01 -07001154 modules := mctx.CreateLocalVariations("static", "shared")
Colin Crossb916a382016-07-29 17:28:03 -07001155 static := modules[0].(*Module)
1156 shared := modules[1].(*Module)
1157
Colin Crossa48ab5b2017-02-14 15:28:44 -08001158 static.linker.(libraryInterface).setStatic()
1159 shared.linker.(libraryInterface).setShared()
Colin Crossb916a382016-07-29 17:28:03 -07001160
Colin Cross10d22312017-05-03 11:01:58 -07001161 reuseStaticLibrary(mctx, static, shared)
1162
Colin Crossb916a382016-07-29 17:28:03 -07001163 } else if library.buildStatic() {
Colin Cross33b2fb72019-05-14 14:07:01 -07001164 modules := mctx.CreateLocalVariations("static")
Colin Crossa48ab5b2017-02-14 15:28:44 -08001165 modules[0].(*Module).linker.(libraryInterface).setStatic()
Colin Crossb916a382016-07-29 17:28:03 -07001166 } else if library.buildShared() {
Colin Cross33b2fb72019-05-14 14:07:01 -07001167 modules := mctx.CreateLocalVariations("shared")
Colin Crossa48ab5b2017-02-14 15:28:44 -08001168 modules[0].(*Module).linker.(libraryInterface).setShared()
Colin Crossb916a382016-07-29 17:28:03 -07001169 }
1170 }
1171 }
Colin Cross4d9c2d12016-07-29 12:48:20 -07001172}
Jiyong Park7ed9de32018-10-15 22:25:07 +09001173
Colin Cross571cccf2019-02-04 11:22:08 -08001174var stubVersionsKey = android.NewOnceKey("stubVersions")
1175
Jiyong Park25fc6a92018-11-18 18:02:45 +09001176// maps a module name to the list of stubs versions available for the module
1177func stubsVersionsFor(config android.Config) map[string][]string {
Colin Cross571cccf2019-02-04 11:22:08 -08001178 return config.Once(stubVersionsKey, func() interface{} {
Jiyong Park25fc6a92018-11-18 18:02:45 +09001179 return make(map[string][]string)
1180 }).(map[string][]string)
1181}
1182
1183var stubsVersionsLock sync.Mutex
1184
1185func latestStubsVersionFor(config android.Config, name string) string {
1186 versions, ok := stubsVersionsFor(config)[name]
1187 if ok && len(versions) > 0 {
1188 // the versions are alreay sorted in ascending order
1189 return versions[len(versions)-1]
1190 }
1191 return ""
1192}
1193
Jiyong Park7ed9de32018-10-15 22:25:07 +09001194// Version mutator splits a module into the mandatory non-stubs variant
Jiyong Park25fc6a92018-11-18 18:02:45 +09001195// (which is unnamed) and zero or more stubs variants.
1196func VersionMutator(mctx android.BottomUpMutatorContext) {
Jiyong Park7ed9de32018-10-15 22:25:07 +09001197 if m, ok := mctx.Module().(*Module); ok && !m.inRecovery() && m.linker != nil {
Jiyong Park25fc6a92018-11-18 18:02:45 +09001198 if library, ok := m.linker.(*libraryDecorator); ok && library.buildShared() &&
1199 len(library.Properties.Stubs.Versions) > 0 {
1200 versions := []string{}
Jiyong Park7ed9de32018-10-15 22:25:07 +09001201 for _, v := range library.Properties.Stubs.Versions {
Jiyong Park25fc6a92018-11-18 18:02:45 +09001202 if _, err := strconv.Atoi(v); err != nil {
1203 mctx.PropertyErrorf("versions", "%q is not a number", v)
1204 }
Jiyong Park7ed9de32018-10-15 22:25:07 +09001205 versions = append(versions, v)
1206 }
Jiyong Park25fc6a92018-11-18 18:02:45 +09001207 sort.Slice(versions, func(i, j int) bool {
1208 left, _ := strconv.Atoi(versions[i])
1209 right, _ := strconv.Atoi(versions[j])
1210 return left < right
1211 })
1212
1213 // save the list of versions for later use
1214 copiedVersions := make([]string, len(versions))
1215 copy(copiedVersions, versions)
1216 stubsVersionsLock.Lock()
1217 defer stubsVersionsLock.Unlock()
1218 stubsVersionsFor(mctx.Config())[mctx.ModuleName()] = copiedVersions
1219
1220 // "" is for the non-stubs variant
Jiyong Park67883b32019-01-03 21:35:58 +09001221 versions = append([]string{""}, versions...)
Jiyong Park25fc6a92018-11-18 18:02:45 +09001222
Jiyong Park7ed9de32018-10-15 22:25:07 +09001223 modules := mctx.CreateVariations(versions...)
1224 for i, m := range modules {
1225 l := m.(*Module).linker.(*libraryDecorator)
Jiyong Park25fc6a92018-11-18 18:02:45 +09001226 if versions[i] != "" {
1227 l.MutatedProperties.BuildStubs = true
1228 l.MutatedProperties.StubsVersion = versions[i]
1229 m.(*Module).Properties.HideFromMake = true
Jiyong Park090d9df2018-12-11 02:47:16 +09001230 m.(*Module).sanitize = nil
1231 m.(*Module).stl = nil
Jiyong Park127d5652018-12-12 10:26:20 +09001232 m.(*Module).Properties.PreventInstall = true
Jiyong Park7ed9de32018-10-15 22:25:07 +09001233 }
Jiyong Park7ed9de32018-10-15 22:25:07 +09001234 }
1235 } else {
1236 mctx.CreateVariations("")
1237 }
1238 return
1239 }
1240 if genrule, ok := mctx.Module().(*genrule.Module); ok {
1241 if props, ok := genrule.Extra.(*GenruleExtraProperties); ok && !props.InRecovery {
1242 mctx.CreateVariations("")
1243 return
1244 }
1245 }
1246}