blob: 4c2993cb5fc4a0132b99ce407cf76d1e05bc6b2e [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
Pete Bentley803e1612019-08-06 22:19:59 +0100116
117 // Inject boringssl hash into the shared library. This is only intended for use by external/boringssl.
118 Inject_bssl_hash *bool `android:"arch_variant"`
Colin Crossa48ab5b2017-02-14 15:28:44 -0800119}
Colin Cross0c461f12016-10-20 16:11:43 -0700120
Colin Crossa48ab5b2017-02-14 15:28:44 -0800121type LibraryMutatedProperties struct {
Colin Crossb916a382016-07-29 17:28:03 -0700122 // Build a static variant
123 BuildStatic bool `blueprint:"mutated"`
124 // Build a shared variant
125 BuildShared bool `blueprint:"mutated"`
126 // This variant is shared
127 VariantIsShared bool `blueprint:"mutated"`
128 // This variant is static
129 VariantIsStatic bool `blueprint:"mutated"`
Jiyong Park7ed9de32018-10-15 22:25:07 +0900130
131 // This variant is a stubs lib
132 BuildStubs bool `blueprint:"mutated"`
133 // Version of the stubs lib
134 StubsVersion string `blueprint:"mutated"`
Colin Crossb916a382016-07-29 17:28:03 -0700135}
136
137type FlagExporterProperties struct {
138 // list of directories relative to the Blueprints file that will
Dan Willemsen273af7f2016-11-03 15:53:42 -0700139 // be added to the include path (using -I) for this module and any module that links
Colin Cross5d195602017-10-17 16:15:50 -0700140 // against this module. Directories listed in export_include_dirs do not need to be
141 // listed in local_include_dirs.
Colin Crossb916a382016-07-29 17:28:03 -0700142 Export_include_dirs []string `android:"arch_variant"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700143
144 Target struct {
145 Vendor struct {
146 // list of exported include directories, like
147 // export_include_dirs, that will be applied to the
148 // vendor variant of this library. This will overwrite
149 // any other declarations.
Steven Morelandb21df8f2018-01-05 14:42:54 -0800150 Override_export_include_dirs []string
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700151 }
152 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700153}
154
155func init() {
Steven Morelandf9e62162017-11-02 17:00:50 -0700156 android.RegisterModuleType("cc_library_static", LibraryStaticFactory)
157 android.RegisterModuleType("cc_library_shared", LibrarySharedFactory)
158 android.RegisterModuleType("cc_library", LibraryFactory)
159 android.RegisterModuleType("cc_library_host_static", LibraryHostStaticFactory)
160 android.RegisterModuleType("cc_library_host_shared", LibraryHostSharedFactory)
161 android.RegisterModuleType("cc_library_headers", LibraryHeaderFactory)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700162}
163
Patrice Arruda83c89e02019-03-25 15:32:39 -0700164// cc_library creates both static and/or shared libraries for a device and/or
165// host. By default, a cc_library has a single variant that targets the device.
166// Specifying `host_supported: true` also creates a library that targets the
167// host.
Steven Morelandf9e62162017-11-02 17:00:50 -0700168func LibraryFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800169 module, _ := NewLibrary(android.HostAndDeviceSupported)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700170 return module.Init()
171}
172
Patrice Arruda83c89e02019-03-25 15:32:39 -0700173// cc_library_static creates a static library for a device and/or host binary.
Steven Morelandf9e62162017-11-02 17:00:50 -0700174func LibraryStaticFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800175 module, library := NewLibrary(android.HostAndDeviceSupported)
176 library.BuildOnlyStatic()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700177 return module.Init()
178}
179
Patrice Arruda83c89e02019-03-25 15:32:39 -0700180// cc_library_shared creates a shared library for a device and/or host.
Steven Morelandf9e62162017-11-02 17:00:50 -0700181func LibrarySharedFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800182 module, library := NewLibrary(android.HostAndDeviceSupported)
183 library.BuildOnlyShared()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700184 return module.Init()
185}
186
Patrice Arruda83c89e02019-03-25 15:32:39 -0700187// cc_library_host_static creates a static library that is linkable to a host
188// binary.
Steven Morelandf9e62162017-11-02 17:00:50 -0700189func LibraryHostStaticFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800190 module, library := NewLibrary(android.HostSupported)
191 library.BuildOnlyStatic()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700192 return module.Init()
193}
194
Patrice Arruda83c89e02019-03-25 15:32:39 -0700195// cc_library_host_shared creates a shared library that is usable on a host.
Steven Morelandf9e62162017-11-02 17:00:50 -0700196func LibraryHostSharedFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800197 module, library := NewLibrary(android.HostSupported)
198 library.BuildOnlyShared()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700199 return module.Init()
200}
201
Patrice Arruda83c89e02019-03-25 15:32:39 -0700202// cc_library_headers contains a set of c/c++ headers which are imported by
203// other soong cc modules using the header_libs property. For best practices,
204// use export_include_dirs property or LOCAL_EXPORT_C_INCLUDE_DIRS for
205// Make.
Steven Morelandf9e62162017-11-02 17:00:50 -0700206func LibraryHeaderFactory() android.Module {
Colin Cross5950f382016-12-13 12:50:57 -0800207 module, library := NewLibrary(android.HostAndDeviceSupported)
208 library.HeaderOnly()
209 return module.Init()
210}
211
Colin Cross4d9c2d12016-07-29 12:48:20 -0700212type flagExporter struct {
213 Properties FlagExporterProperties
214
Inseob Kim69378442019-06-03 19:10:47 +0900215 dirs []string
216 systemDirs []string
217 flags []string
218 deps android.Paths
Colin Cross4d9c2d12016-07-29 12:48:20 -0700219}
220
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700221func (f *flagExporter) exportedIncludes(ctx ModuleContext) android.Paths {
Steven Morelandb21df8f2018-01-05 14:42:54 -0800222 if ctx.useVndk() && f.Properties.Target.Vendor.Override_export_include_dirs != nil {
223 return android.PathsForModuleSrc(ctx, f.Properties.Target.Vendor.Override_export_include_dirs)
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700224 } else {
225 return android.PathsForModuleSrc(ctx, f.Properties.Export_include_dirs)
226 }
227}
228
Inseob Kim69378442019-06-03 19:10:47 +0900229func (f *flagExporter) exportIncludes(ctx ModuleContext) {
230 f.dirs = append(f.dirs, f.exportedIncludes(ctx).Strings()...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700231}
232
Inseob Kim69378442019-06-03 19:10:47 +0900233func (f *flagExporter) exportIncludesAsSystem(ctx ModuleContext) {
234 f.systemDirs = append(f.systemDirs, f.exportedIncludes(ctx).Strings()...)
235}
236
237func (f *flagExporter) reexportDirs(dirs ...string) {
238 f.dirs = append(f.dirs, dirs...)
239}
240
241func (f *flagExporter) reexportSystemDirs(dirs ...string) {
242 f.systemDirs = append(f.systemDirs, dirs...)
243}
244
245func (f *flagExporter) reexportFlags(flags ...string) {
246 for _, flag := range flags {
247 if strings.HasPrefix(flag, "-I") || strings.HasPrefix(flag, "-isystem") {
248 panic(fmt.Errorf("Exporting invalid flag %q: "+
249 "use reexportDirs or reexportSystemDirs to export directories", flag))
250 }
251 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700252 f.flags = append(f.flags, flags...)
253}
254
Inseob Kim69378442019-06-03 19:10:47 +0900255func (f *flagExporter) reexportDeps(deps ...android.Path) {
256 f.deps = append(f.deps, deps...)
257}
258
259func (f *flagExporter) exportedDirs() []string {
260 return f.dirs
261}
262
263func (f *flagExporter) exportedSystemDirs() []string {
264 return f.systemDirs
Dan Willemsen847dcc72016-09-29 12:13:36 -0700265}
266
Colin Cross4d9c2d12016-07-29 12:48:20 -0700267func (f *flagExporter) exportedFlags() []string {
268 return f.flags
269}
270
Inseob Kim69378442019-06-03 19:10:47 +0900271func (f *flagExporter) exportedDeps() android.Paths {
272 return f.deps
Dan Willemsen847dcc72016-09-29 12:13:36 -0700273}
274
Colin Cross4d9c2d12016-07-29 12:48:20 -0700275type exportedFlagsProducer interface {
Inseob Kim69378442019-06-03 19:10:47 +0900276 exportedDirs() []string
277 exportedSystemDirs() []string
Colin Cross4d9c2d12016-07-29 12:48:20 -0700278 exportedFlags() []string
Inseob Kim69378442019-06-03 19:10:47 +0900279 exportedDeps() android.Paths
Colin Cross4d9c2d12016-07-29 12:48:20 -0700280}
281
282var _ exportedFlagsProducer = (*flagExporter)(nil)
283
Colin Crossb916a382016-07-29 17:28:03 -0700284// libraryDecorator wraps baseCompiler, baseLinker and baseInstaller to provide library-specific
285// functionality: static vs. shared linkage, reusing object files for shared libraries
286type libraryDecorator struct {
Colin Crossa48ab5b2017-02-14 15:28:44 -0800287 Properties LibraryProperties
288 MutatedProperties LibraryMutatedProperties
Colin Cross4d9c2d12016-07-29 12:48:20 -0700289
290 // For reusing static library objects for shared library
Inseob Kim69378442019-06-03 19:10:47 +0900291 reuseObjects Objects
Colin Cross10d22312017-05-03 11:01:58 -0700292
Colin Cross26c34ed2016-09-30 17:10:16 -0700293 // table-of-contents file to optimize out relinking when possible
294 tocFile android.OptionalPath
Colin Cross4d9c2d12016-07-29 12:48:20 -0700295
Colin Cross4d9c2d12016-07-29 12:48:20 -0700296 flagExporter
297 stripper
298
Colin Cross4d9c2d12016-07-29 12:48:20 -0700299 // If we're used as a whole_static_lib, our missing dependencies need
300 // to be given
301 wholeStaticMissingDeps []string
302
303 // For whole_static_libs
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700304 objects Objects
Colin Cross4d9c2d12016-07-29 12:48:20 -0700305
306 // Uses the module's name if empty, but can be overridden. Does not include
307 // shlib suffix.
308 libName string
Colin Crossb916a382016-07-29 17:28:03 -0700309
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800310 sabi *sabi
311
Dan Willemsen581341d2017-02-09 16:16:31 -0800312 // Output archive of gcno coverage information files
313 coverageOutputFile android.OptionalPath
314
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800315 // linked Source Abi Dump
316 sAbiOutputFile android.OptionalPath
317
318 // Source Abi Diff
319 sAbiDiff android.OptionalPath
320
Colin Cross0875c522017-11-28 17:34:01 -0800321 // Location of the static library in the sysroot. Empty if the library is
322 // not included in the NDK.
323 ndkSysrootPath android.Path
324
Colin Crossb60190a2018-09-04 16:28:17 -0700325 // Location of the linked, unstripped library for shared libraries
326 unstrippedOutputFile android.Path
327
Dan Willemsen569edc52018-11-19 09:33:29 -0800328 // Location of the file that should be copied to dist dir when requested
329 distFile android.OptionalPath
330
Jiyong Park7ed9de32018-10-15 22:25:07 +0900331 versionScriptPath android.ModuleGenPath
332
Jiyong Parkf1194352019-02-25 11:05:47 +0900333 post_install_cmds []string
334
Vic Yangefd249e2018-11-12 20:19:56 -0800335 // If useCoreVariant is true, the vendor variant of a VNDK library is
336 // not installed.
337 useCoreVariant bool
338
Colin Crossb916a382016-07-29 17:28:03 -0700339 // Decorated interafaces
340 *baseCompiler
341 *baseLinker
342 *baseInstaller
Colin Cross4d9c2d12016-07-29 12:48:20 -0700343}
344
Colin Crossb916a382016-07-29 17:28:03 -0700345func (library *libraryDecorator) linkerProps() []interface{} {
346 var props []interface{}
347 props = append(props, library.baseLinker.linkerProps()...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700348 return append(props,
349 &library.Properties,
Colin Crossa48ab5b2017-02-14 15:28:44 -0800350 &library.MutatedProperties,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700351 &library.flagExporter.Properties,
Colin Cross22f37952018-09-05 10:43:13 -0700352 &library.stripper.StripProperties)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700353}
354
Colin Crossb916a382016-07-29 17:28:03 -0700355func (library *libraryDecorator) linkerFlags(ctx ModuleContext, flags Flags) Flags {
Colin Cross42742b82016-08-01 13:20:05 -0700356 flags = library.baseLinker.linkerFlags(ctx, flags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700357
Colin Crossb916a382016-07-29 17:28:03 -0700358 // MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
359 // all code is position independent, and then those warnings get promoted to
360 // errors.
Colin Cross3edeee12017-04-04 12:59:48 -0700361 if !ctx.Windows() {
Colin Crossb916a382016-07-29 17:28:03 -0700362 flags.CFlags = append(flags.CFlags, "-fPIC")
363 }
364
365 if library.static() {
366 flags.CFlags = append(flags.CFlags, library.Properties.Static.Cflags...)
Colin Crossa48ab5b2017-02-14 15:28:44 -0800367 } else if library.shared() {
Colin Crossb916a382016-07-29 17:28:03 -0700368 flags.CFlags = append(flags.CFlags, library.Properties.Shared.Cflags...)
369 }
370
Colin Crossa48ab5b2017-02-14 15:28:44 -0800371 if library.shared() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700372 libName := library.getLibName(ctx)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700373 var f []string
Dan Willemsen01a405a2016-06-13 17:19:03 -0700374 if ctx.toolchain().Bionic() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700375 f = append(f,
376 "-nostdlib",
377 "-Wl,--gc-sections",
378 )
379 }
380
381 if ctx.Darwin() {
382 f = append(f,
383 "-dynamiclib",
384 "-single_module",
Colin Cross4d9c2d12016-07-29 12:48:20 -0700385 "-install_name @rpath/"+libName+flags.Toolchain.ShlibSuffix(),
386 )
Colin Cross7863cf52016-10-20 10:47:21 -0700387 if ctx.Arch().ArchType == android.X86 {
388 f = append(f,
389 "-read_only_relocs suppress",
390 )
391 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700392 } else {
Josh Gao75a50a22019-06-07 17:58:59 -0700393 f = append(f, "-shared")
394 if !ctx.Windows() {
395 f = append(f, "-Wl,-soname,"+libName+flags.Toolchain.ShlibSuffix())
396 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700397 }
398
399 flags.LdFlags = append(f, flags.LdFlags...)
400 }
401
402 return flags
403}
404
Colin Crossf18e1102017-11-16 14:33:08 -0800405func (library *libraryDecorator) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags {
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700406 exportIncludeDirs := library.flagExporter.exportedIncludes(ctx)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700407 if len(exportIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700408 f := includeDirsToFlags(exportIncludeDirs)
409 flags.GlobalFlags = append(flags.GlobalFlags, f)
410 flags.YasmFlags = append(flags.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700411 }
412
Jiyong Park7ed9de32018-10-15 22:25:07 +0900413 flags = library.baseCompiler.compilerFlags(ctx, flags, deps)
414 if library.buildStubs() {
Jiyong Park64379952018-12-13 18:37:29 +0900415 // Remove -include <file> when compiling stubs. Otherwise, the force included
416 // headers might cause conflicting types error with the symbols in the
417 // generated stubs source code. e.g.
418 // double acos(double); // in header
419 // void acos() {} // in the generated source code
420 removeInclude := func(flags []string) []string {
421 ret := flags[:0]
422 for _, f := range flags {
423 if strings.HasPrefix(f, "-include ") {
424 continue
425 }
426 ret = append(ret, f)
427 }
428 return ret
429 }
430 flags.GlobalFlags = removeInclude(flags.GlobalFlags)
431 flags.CFlags = removeInclude(flags.CFlags)
432
Jiyong Park7ed9de32018-10-15 22:25:07 +0900433 flags = addStubLibraryCompilerFlags(flags)
434 }
435 return flags
Dan Willemsen273af7f2016-11-03 15:53:42 -0700436}
437
Hsin-Yi Chenaf17d742019-07-29 17:46:59 +0800438func (library *libraryDecorator) shouldCreateSourceAbiDump(ctx ModuleContext) bool {
439 if !ctx.shouldCreateSourceAbiDump() {
440 return false
441 }
Logan Chien41eabe62019-04-10 13:33:58 +0800442 if library.Properties.Header_abi_checker.Enabled != nil {
443 return Bool(library.Properties.Header_abi_checker.Enabled)
444 }
Hsin-Yi Chenaf17d742019-07-29 17:46:59 +0800445 if ctx.isNdk() {
446 return true
447 }
448 if ctx.isLlndkPublic(ctx.Config()) {
449 return true
450 }
451 if ctx.useVndk() && ctx.isVndk() && !ctx.isVndkPrivate(ctx.Config()) {
452 // Return true if this is VNDK-core, VNDK-SP, or VNDK-Ext, and not
453 // VNDK-private.
454 return true
455 }
456 return false
Logan Chien41eabe62019-04-10 13:33:58 +0800457}
458
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700459func (library *libraryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
Jiyong Park7ed9de32018-10-15 22:25:07 +0900460 if library.buildStubs() {
Jiyong Park3fd0baf2018-12-07 16:25:39 +0900461 objs, versionScript := compileStubLibrary(ctx, flags, String(library.Properties.Stubs.Symbol_file), library.MutatedProperties.StubsVersion, "--apex")
Jiyong Park7ed9de32018-10-15 22:25:07 +0900462 library.versionScriptPath = versionScript
463 return objs
464 }
465
Colin Cross5950f382016-12-13 12:50:57 -0800466 if !library.buildShared() && !library.buildStatic() {
467 if len(library.baseCompiler.Properties.Srcs) > 0 {
468 ctx.PropertyErrorf("srcs", "cc_library_headers must not have any srcs")
469 }
470 if len(library.Properties.Static.Srcs) > 0 {
471 ctx.PropertyErrorf("static.srcs", "cc_library_headers must not have any srcs")
472 }
473 if len(library.Properties.Shared.Srcs) > 0 {
474 ctx.PropertyErrorf("shared.srcs", "cc_library_headers must not have any srcs")
475 }
476 return Objects{}
477 }
Hsin-Yi Chenaf17d742019-07-29 17:46:59 +0800478 if library.shouldCreateSourceAbiDump(ctx) || library.sabi.Properties.CreateSAbiDumps {
Jayant Chowdharya4fce192017-09-06 13:10:03 -0700479 exportIncludeDirs := library.flagExporter.exportedIncludes(ctx)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800480 var SourceAbiFlags []string
481 for _, dir := range exportIncludeDirs.Strings() {
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700482 SourceAbiFlags = append(SourceAbiFlags, "-I"+dir)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800483 }
Inseob Kim69378442019-06-03 19:10:47 +0900484 for _, reexportedInclude := range library.sabi.Properties.ReexportedIncludes {
485 SourceAbiFlags = append(SourceAbiFlags, "-I"+reexportedInclude)
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700486 }
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800487 flags.SAbiFlags = SourceAbiFlags
488 total_length := len(library.baseCompiler.Properties.Srcs) + len(deps.GeneratedSources) + len(library.Properties.Shared.Srcs) +
489 len(library.Properties.Static.Srcs)
490 if total_length > 0 {
491 flags.SAbiDump = true
492 }
493 }
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700494 objs := library.baseCompiler.compile(ctx, flags, deps)
495 library.reuseObjects = objs
Colin Cross2f336352016-10-26 10:03:47 -0700496 buildFlags := flagsToBuilderFlags(flags)
Colin Crossb916a382016-07-29 17:28:03 -0700497
Colin Cross4d9c2d12016-07-29 12:48:20 -0700498 if library.static() {
Colin Cross8a497952019-03-05 22:25:09 -0800499 srcs := android.PathsForModuleSrc(ctx, library.Properties.Static.Srcs)
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700500 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceStaticLibrary,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800501 srcs, library.baseCompiler.pathDeps, library.baseCompiler.cFlagsDeps))
Colin Crossa48ab5b2017-02-14 15:28:44 -0800502 } else if library.shared() {
Colin Cross8a497952019-03-05 22:25:09 -0800503 srcs := android.PathsForModuleSrc(ctx, library.Properties.Shared.Srcs)
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700504 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceSharedLibrary,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800505 srcs, library.baseCompiler.pathDeps, library.baseCompiler.cFlagsDeps))
Colin Crossb916a382016-07-29 17:28:03 -0700506 }
507
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700508 return objs
Colin Crossb916a382016-07-29 17:28:03 -0700509}
510
511type libraryInterface interface {
512 getWholeStaticMissingDeps() []string
513 static() bool
Inseob Kimae553032019-05-14 18:52:49 +0900514 shared() bool
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700515 objs() Objects
Inseob Kim69378442019-06-03 19:10:47 +0900516 reuseObjs() (Objects, exportedFlagsProducer)
Colin Cross26c34ed2016-09-30 17:10:16 -0700517 toc() android.OptionalPath
Colin Crossb916a382016-07-29 17:28:03 -0700518
519 // Returns true if the build options for the module have selected a static or shared build
520 buildStatic() bool
521 buildShared() bool
522
523 // Sets whether a specific variant is static or shared
Colin Crossa48ab5b2017-02-14 15:28:44 -0800524 setStatic()
525 setShared()
Logan Chien41eabe62019-04-10 13:33:58 +0800526
527 // Write LOCAL_ADDITIONAL_DEPENDENCIES for ABI diff
528 androidMkWriteAdditionalDependenciesForSourceAbiDiff(w io.Writer)
Colin Crossb916a382016-07-29 17:28:03 -0700529}
530
531func (library *libraryDecorator) getLibName(ctx ModuleContext) string {
532 name := library.libName
533 if name == "" {
dimitryd95964a2018-11-07 13:43:34 +0100534 name = String(library.Properties.Stem)
535 if name == "" {
536 name = ctx.baseModuleName()
537 }
Colin Crossb916a382016-07-29 17:28:03 -0700538 }
539
Logan Chienf3511742017-10-31 18:04:35 +0800540 if ctx.isVndkExt() {
541 name = ctx.getVndkExtendsModuleName()
542 }
543
Colin Crossb916a382016-07-29 17:28:03 -0700544 if ctx.Host() && Bool(library.Properties.Unique_host_soname) {
545 if !strings.HasSuffix(name, "-host") {
546 name = name + "-host"
547 }
548 }
549
Inseob Kim0ce291e2019-07-04 14:38:27 +0900550 return name
Colin Crossb916a382016-07-29 17:28:03 -0700551}
552
Jiyong Parkda732bd2018-11-02 18:23:15 +0900553var versioningMacroNamesListMutex sync.Mutex
554
Colin Crossb916a382016-07-29 17:28:03 -0700555func (library *libraryDecorator) linkerInit(ctx BaseModuleContext) {
556 location := InstallInSystem
Dan Albert61f32122018-07-26 14:00:24 -0700557 if library.baseLinker.sanitize.inSanitizerDir() {
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700558 location = InstallInSanitizerDir
Colin Crossb916a382016-07-29 17:28:03 -0700559 }
560 library.baseInstaller.location = location
Colin Crossb916a382016-07-29 17:28:03 -0700561 library.baseLinker.linkerInit(ctx)
Jiyong Park7ed9de32018-10-15 22:25:07 +0900562 // Let baseLinker know whether this variant is for stubs or not, so that
563 // it can omit things that are not required for linking stubs.
564 library.baseLinker.dynamicProperties.BuildStubs = library.buildStubs()
Jiyong Parkda732bd2018-11-02 18:23:15 +0900565
566 if library.buildStubs() {
567 macroNames := versioningMacroNamesList(ctx.Config())
568 myName := versioningMacroName(ctx.ModuleName())
569 versioningMacroNamesListMutex.Lock()
570 defer versioningMacroNamesListMutex.Unlock()
571 if (*macroNames)[myName] == "" {
572 (*macroNames)[myName] = ctx.ModuleName()
573 } else if (*macroNames)[myName] != ctx.ModuleName() {
574 ctx.ModuleErrorf("Macro name %q for versioning conflicts with macro name from module %q ", myName, (*macroNames)[myName])
575 }
576 }
Colin Crossb916a382016-07-29 17:28:03 -0700577}
578
dimitry0345ad82018-12-05 16:28:14 +0100579func (library *libraryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
580 deps = library.baseCompiler.compilerDeps(ctx, deps)
581
dimitry0345ad82018-12-05 16:28:14 +0100582 return deps
583}
584
Colin Cross37047f12016-12-13 17:06:13 -0800585func (library *libraryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
Dan Willemsen3a26eef2018-12-03 15:25:46 -0800586 if library.static() {
587 if library.Properties.Static.System_shared_libs != nil {
588 library.baseLinker.Properties.System_shared_libs = library.Properties.Static.System_shared_libs
589 }
590 } else if library.shared() {
591 if library.Properties.Shared.System_shared_libs != nil {
592 library.baseLinker.Properties.System_shared_libs = library.Properties.Shared.System_shared_libs
593 }
594 }
595
Colin Crossb916a382016-07-29 17:28:03 -0700596 deps = library.baseLinker.linkerDeps(ctx, deps)
597
598 if library.static() {
599 deps.WholeStaticLibs = append(deps.WholeStaticLibs,
600 library.Properties.Static.Whole_static_libs...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700601 deps.StaticLibs = append(deps.StaticLibs, library.Properties.Static.Static_libs...)
602 deps.SharedLibs = append(deps.SharedLibs, library.Properties.Static.Shared_libs...)
Colin Crosseefe9a32019-01-22 14:41:08 -0800603
604 deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, library.Properties.Static.Export_shared_lib_headers...)
605 deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, library.Properties.Static.Export_static_lib_headers...)
Colin Crossa48ab5b2017-02-14 15:28:44 -0800606 } else if library.shared() {
Dan Willemsen2e47b342016-11-17 01:02:25 -0800607 if ctx.toolchain().Bionic() && !Bool(library.baseLinker.Properties.Nocrt) {
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700608 if !ctx.useSdk() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700609 deps.CrtBegin = "crtbegin_so"
610 deps.CrtEnd = "crtend_so"
611 } else {
Dan Albertebedf672016-11-08 15:06:22 -0800612 // TODO(danalbert): Add generation of crt objects.
613 // For `sdk_version: "current"`, we don't actually have a
614 // freshly generated set of CRT objects. Use the last stable
615 // version.
616 version := ctx.sdkVersion()
617 if version == "current" {
Jayant Chowdhary6e8115a2017-05-09 10:21:52 -0700618 version = getCurrentNdkPrebuiltVersion(ctx)
Dan Albertebedf672016-11-08 15:06:22 -0800619 }
620 deps.CrtBegin = "ndk_crtbegin_so." + version
621 deps.CrtEnd = "ndk_crtend_so." + version
Colin Cross4d9c2d12016-07-29 12:48:20 -0700622 }
623 }
624 deps.WholeStaticLibs = append(deps.WholeStaticLibs, library.Properties.Shared.Whole_static_libs...)
625 deps.StaticLibs = append(deps.StaticLibs, library.Properties.Shared.Static_libs...)
626 deps.SharedLibs = append(deps.SharedLibs, library.Properties.Shared.Shared_libs...)
Colin Crosseefe9a32019-01-22 14:41:08 -0800627
628 deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, library.Properties.Shared.Export_shared_lib_headers...)
629 deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, library.Properties.Shared.Export_static_lib_headers...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700630 }
Jiyong Park52d25bd2017-10-13 09:17:01 +0900631 if ctx.useVndk() {
632 deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, library.baseLinker.Properties.Target.Vendor.Exclude_static_libs)
633 deps.SharedLibs = removeListFromList(deps.SharedLibs, library.baseLinker.Properties.Target.Vendor.Exclude_shared_libs)
634 deps.StaticLibs = removeListFromList(deps.StaticLibs, library.baseLinker.Properties.Target.Vendor.Exclude_static_libs)
Victor Chang51271c12019-01-30 16:02:22 +0000635 deps.ReexportSharedLibHeaders = removeListFromList(deps.ReexportSharedLibHeaders, library.baseLinker.Properties.Target.Vendor.Exclude_shared_libs)
636 deps.ReexportStaticLibHeaders = removeListFromList(deps.ReexportStaticLibHeaders, library.baseLinker.Properties.Target.Vendor.Exclude_static_libs)
Jiyong Park52d25bd2017-10-13 09:17:01 +0900637 }
Jiyong Parkf9332f12018-02-01 00:54:12 +0900638 if ctx.inRecovery() {
639 deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, library.baseLinker.Properties.Target.Recovery.Exclude_static_libs)
640 deps.SharedLibs = removeListFromList(deps.SharedLibs, library.baseLinker.Properties.Target.Recovery.Exclude_shared_libs)
641 deps.StaticLibs = removeListFromList(deps.StaticLibs, library.baseLinker.Properties.Target.Recovery.Exclude_static_libs)
Victor Chang51271c12019-01-30 16:02:22 +0000642 deps.ReexportSharedLibHeaders = removeListFromList(deps.ReexportSharedLibHeaders, library.baseLinker.Properties.Target.Recovery.Exclude_shared_libs)
643 deps.ReexportStaticLibHeaders = removeListFromList(deps.ReexportStaticLibHeaders, library.baseLinker.Properties.Target.Recovery.Exclude_static_libs)
Jiyong Parkf9332f12018-02-01 00:54:12 +0900644 }
Colin Cross2383f3b2018-02-06 14:40:13 -0800645
Colin Cross4d9c2d12016-07-29 12:48:20 -0700646 return deps
647}
648
Colin Crossb916a382016-07-29 17:28:03 -0700649func (library *libraryDecorator) linkStatic(ctx ModuleContext,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700650 flags Flags, deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700651
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700652 library.objects = deps.WholeStaticLibObjs.Copy()
653 library.objects = library.objects.Append(objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700654
Inseob Kim0ce291e2019-07-04 14:38:27 +0900655 fileName := ctx.ModuleName() + staticLibraryExtension
Colin Cross86803cf2018-02-15 14:12:26 -0800656 outputFile := android.PathForModuleOut(ctx, fileName)
Dan Willemsen581341d2017-02-09 16:16:31 -0800657 builderFlags := flagsToBuilderFlags(flags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700658
Dan Willemsen569edc52018-11-19 09:33:29 -0800659 if Bool(library.baseLinker.Properties.Use_version_lib) {
660 if ctx.Host() {
661 versionedOutputFile := outputFile
662 outputFile = android.PathForModuleOut(ctx, "unversioned", fileName)
663 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
664 } else {
665 versionedOutputFile := android.PathForModuleOut(ctx, "versioned", fileName)
666 library.distFile = android.OptionalPathForPath(versionedOutputFile)
667 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
668 }
Colin Cross86803cf2018-02-15 14:12:26 -0800669 }
670
Dan Willemsen581341d2017-02-09 16:16:31 -0800671 TransformObjToStaticLib(ctx, library.objects.objFiles, builderFlags, outputFile, objs.tidyFiles)
672
Inseob Kim0ce291e2019-07-04 14:38:27 +0900673 library.coverageOutputFile = TransformCoverageFilesToZip(ctx, library.objects, ctx.ModuleName())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700674
675 library.wholeStaticMissingDeps = ctx.GetMissingDependencies()
676
677 ctx.CheckbuildFile(outputFile)
678
679 return outputFile
680}
681
Colin Crossb916a382016-07-29 17:28:03 -0700682func (library *libraryDecorator) linkShared(ctx ModuleContext,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700683 flags Flags, deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700684
685 var linkerDeps android.Paths
Pirama Arumuga Nainarada83ec2017-08-31 23:38:27 -0700686 linkerDeps = append(linkerDeps, flags.LdFlagsDeps...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700687
Colin Cross2383f3b2018-02-06 14:40:13 -0800688 unexportedSymbols := ctx.ExpandOptionalSource(library.Properties.Unexported_symbols_list, "unexported_symbols_list")
689 forceNotWeakSymbols := ctx.ExpandOptionalSource(library.Properties.Force_symbols_not_weak_list, "force_symbols_not_weak_list")
690 forceWeakSymbols := ctx.ExpandOptionalSource(library.Properties.Force_symbols_weak_list, "force_symbols_weak_list")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700691 if !ctx.Darwin() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700692 if unexportedSymbols.Valid() {
693 ctx.PropertyErrorf("unexported_symbols_list", "Only supported on Darwin")
694 }
695 if forceNotWeakSymbols.Valid() {
696 ctx.PropertyErrorf("force_symbols_not_weak_list", "Only supported on Darwin")
697 }
698 if forceWeakSymbols.Valid() {
699 ctx.PropertyErrorf("force_symbols_weak_list", "Only supported on Darwin")
700 }
701 } else {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700702 if unexportedSymbols.Valid() {
703 flags.LdFlags = append(flags.LdFlags, "-Wl,-unexported_symbols_list,"+unexportedSymbols.String())
704 linkerDeps = append(linkerDeps, unexportedSymbols.Path())
705 }
706 if forceNotWeakSymbols.Valid() {
707 flags.LdFlags = append(flags.LdFlags, "-Wl,-force_symbols_not_weak_list,"+forceNotWeakSymbols.String())
708 linkerDeps = append(linkerDeps, forceNotWeakSymbols.Path())
709 }
710 if forceWeakSymbols.Valid() {
711 flags.LdFlags = append(flags.LdFlags, "-Wl,-force_symbols_weak_list,"+forceWeakSymbols.String())
712 linkerDeps = append(linkerDeps, forceWeakSymbols.Path())
713 }
714 }
Jiyong Parkc1e7f482019-01-12 13:39:10 +0900715 if library.buildStubs() {
716 linkerScriptFlags := "-Wl,--version-script," + library.versionScriptPath.String()
717 flags.LdFlags = append(flags.LdFlags, linkerScriptFlags)
718 linkerDeps = append(linkerDeps, library.versionScriptPath)
719 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700720
721 fileName := library.getLibName(ctx) + flags.Toolchain.ShlibSuffix()
722 outputFile := android.PathForModuleOut(ctx, fileName)
723 ret := outputFile
724
Josh Gao75a50a22019-06-07 17:58:59 -0700725 var implicitOutputs android.WritablePaths
726 if ctx.Windows() {
727 importLibraryPath := android.PathForModuleOut(ctx, pathtools.ReplaceExtension(fileName, "lib"))
728
729 flags.LdFlags = append(flags.LdFlags, "-Wl,--out-implib="+importLibraryPath.String())
730 implicitOutputs = append(implicitOutputs, importLibraryPath)
731 }
732
Colin Cross4d9c2d12016-07-29 12:48:20 -0700733 builderFlags := flagsToBuilderFlags(flags)
734
Colin Crossb496cfd2018-09-10 16:50:05 -0700735 // Optimize out relinking against shared libraries whose interface hasn't changed by
736 // depending on a table of contents file instead of the library itself.
737 tocPath := outputFile.RelPathString()
738 tocPath = pathtools.ReplaceExtension(tocPath, flags.Toolchain.ShlibSuffix()[1:]+".toc")
739 tocFile := android.PathForOutput(ctx, tocPath)
740 library.tocFile = android.OptionalPathForPath(tocFile)
741 TransformSharedObjectToToc(ctx, outputFile, tocFile, builderFlags)
Colin Cross89562dc2016-10-03 17:47:19 -0700742
Colin Cross4d9c2d12016-07-29 12:48:20 -0700743 if library.stripper.needsStrip(ctx) {
Yi Kongb5c34d72018-11-07 16:28:49 -0800744 if ctx.Darwin() {
745 builderFlags.stripUseGnuStrip = true
746 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700747 strippedOutputFile := outputFile
748 outputFile = android.PathForModuleOut(ctx, "unstripped", fileName)
Ryan Prichardf979d732019-05-30 20:53:29 -0700749 library.stripper.stripExecutableOrSharedLib(ctx, outputFile, strippedOutputFile, builderFlags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700750 }
Colin Crossb60190a2018-09-04 16:28:17 -0700751 library.unstrippedOutputFile = outputFile
752
Pete Bentley803e1612019-08-06 22:19:59 +0100753 // TODO(b/137267623): Remove this in favor of a cc_genrule when they support operating on shared libraries.
754 if Bool(library.Properties.Inject_bssl_hash) {
755 hashedOutputfile := outputFile
756 outputFile = android.PathForModuleOut(ctx, "unhashed", fileName)
757
758 rule := android.NewRuleBuilder()
759 rule.Command().
760 BuiltTool(ctx, "bssl_inject_hash").
761 FlagWithInput("-in-object ", outputFile).
762 FlagWithOutput("-o ", hashedOutputfile)
763 rule.Build(pctx, ctx, "injectCryptoHash", "inject crypto hash")
764 }
765
Dan Willemsen569edc52018-11-19 09:33:29 -0800766 if Bool(library.baseLinker.Properties.Use_version_lib) {
767 if ctx.Host() {
768 versionedOutputFile := outputFile
769 outputFile = android.PathForModuleOut(ctx, "unversioned", fileName)
770 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
771 } else {
772 versionedOutputFile := android.PathForModuleOut(ctx, "versioned", fileName)
773 library.distFile = android.OptionalPathForPath(versionedOutputFile)
774
775 if library.stripper.needsStrip(ctx) {
776 out := android.PathForModuleOut(ctx, "versioned-stripped", fileName)
777 library.distFile = android.OptionalPathForPath(out)
Ryan Prichardf979d732019-05-30 20:53:29 -0700778 library.stripper.stripExecutableOrSharedLib(ctx, versionedOutputFile, out, builderFlags)
Dan Willemsen569edc52018-11-19 09:33:29 -0800779 }
780
781 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
782 }
Colin Cross86803cf2018-02-15 14:12:26 -0800783 }
784
Jiyong Park64a44f22019-01-18 14:37:08 +0900785 sharedLibs := deps.EarlySharedLibs
786 sharedLibs = append(sharedLibs, deps.SharedLibs...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700787 sharedLibs = append(sharedLibs, deps.LateSharedLibs...)
788
Jiyong Park64a44f22019-01-18 14:37:08 +0900789 linkerDeps = append(linkerDeps, deps.EarlySharedLibsDeps...)
Colin Cross26c34ed2016-09-30 17:10:16 -0700790 linkerDeps = append(linkerDeps, deps.SharedLibsDeps...)
791 linkerDeps = append(linkerDeps, deps.LateSharedLibsDeps...)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700792 linkerDeps = append(linkerDeps, objs.tidyFiles...)
Colin Cross26c34ed2016-09-30 17:10:16 -0700793
Vic Yang6cd1be82019-06-24 16:08:48 -0700794 if Bool(library.Properties.Sort_bss_symbols_by_size) {
795 unsortedOutputFile := android.PathForModuleOut(ctx, "unsorted", fileName)
796 TransformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs,
797 deps.StaticLibs, deps.LateStaticLibs, deps.WholeStaticLibs,
798 linkerDeps, deps.CrtBegin, deps.CrtEnd, false, builderFlags, unsortedOutputFile, implicitOutputs)
799
800 symbolOrderingFile := android.PathForModuleOut(ctx, "unsorted", fileName+".symbol_order")
801 symbolOrderingFlag := library.baseLinker.sortBssSymbolsBySize(ctx, unsortedOutputFile, symbolOrderingFile, builderFlags)
802 builderFlags.ldFlags += " " + symbolOrderingFlag
803 linkerDeps = append(linkerDeps, symbolOrderingFile)
804 }
805
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700806 TransformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700807 deps.StaticLibs, deps.LateStaticLibs, deps.WholeStaticLibs,
Josh Gao75a50a22019-06-07 17:58:59 -0700808 linkerDeps, deps.CrtBegin, deps.CrtEnd, false, builderFlags, outputFile, implicitOutputs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700809
Dan Willemsen581341d2017-02-09 16:16:31 -0800810 objs.coverageFiles = append(objs.coverageFiles, deps.StaticLibObjs.coverageFiles...)
811 objs.coverageFiles = append(objs.coverageFiles, deps.WholeStaticLibObjs.coverageFiles...)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800812
813 objs.sAbiDumpFiles = append(objs.sAbiDumpFiles, deps.StaticLibObjs.sAbiDumpFiles...)
814 objs.sAbiDumpFiles = append(objs.sAbiDumpFiles, deps.WholeStaticLibObjs.sAbiDumpFiles...)
815
Oliver Nguyenc7434142019-04-24 14:22:25 -0700816 library.coverageOutputFile = TransformCoverageFilesToZip(ctx, objs, library.getLibName(ctx))
Jayant Chowdhary6ab3d842017-06-26 12:52:58 -0700817 library.linkSAbiDumpFiles(ctx, objs, fileName, ret)
Dan Willemsen581341d2017-02-09 16:16:31 -0800818
Colin Cross4d9c2d12016-07-29 12:48:20 -0700819 return ret
820}
821
Jiyong Parkaf6d8952019-01-31 12:21:23 +0900822func (library *libraryDecorator) unstrippedOutputFilePath() android.Path {
823 return library.unstrippedOutputFile
824}
825
Pirama Arumuga Nainar65c95ff2019-03-25 10:21:31 -0700826func (library *libraryDecorator) nativeCoverage() bool {
827 if library.header() || library.buildStubs() {
828 return false
829 }
830 return true
831}
832
Logan Chien7eefdc42018-07-11 18:10:41 +0800833func getRefAbiDumpFile(ctx ModuleContext, vndkVersion, fileName string) android.Path {
Inseob Kim9516ee92019-05-09 10:56:13 +0900834 isLlndkOrNdk := inList(ctx.baseModuleName(), *llndkLibraries(ctx.Config())) || inList(ctx.baseModuleName(), ndkMigratedLibs)
Logan Chien7eefdc42018-07-11 18:10:41 +0800835
Logan Chien41eabe62019-04-10 13:33:58 +0800836 refAbiDumpTextFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isLlndkOrNdk, ctx.isVndk(), false)
837 refAbiDumpGzipFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isLlndkOrNdk, ctx.isVndk(), true)
Logan Chien7eefdc42018-07-11 18:10:41 +0800838
839 if refAbiDumpTextFile.Valid() {
840 if refAbiDumpGzipFile.Valid() {
841 ctx.ModuleErrorf(
842 "Two reference ABI dump files are found: %q and %q. Please delete the stale one.",
843 refAbiDumpTextFile, refAbiDumpGzipFile)
844 return nil
845 }
846 return refAbiDumpTextFile.Path()
847 }
848 if refAbiDumpGzipFile.Valid() {
849 return UnzipRefDump(ctx, refAbiDumpGzipFile.Path(), fileName)
850 }
851 return nil
852}
853
Jayant Chowdhary6ab3d842017-06-26 12:52:58 -0700854func (library *libraryDecorator) linkSAbiDumpFiles(ctx ModuleContext, objs Objects, fileName string, soFile android.Path) {
Hsin-Yi Chenaf17d742019-07-29 17:46:59 +0800855 if library.shouldCreateSourceAbiDump(ctx) {
Logan Chiena8f51582018-03-21 11:53:48 +0800856 vndkVersion := ctx.DeviceConfig().PlatformVndkVersion()
857 if ver := ctx.DeviceConfig().VndkVersion(); ver != "" && ver != "current" {
Logan Chienf3511742017-10-31 18:04:35 +0800858 vndkVersion = ver
859 }
860
Jayant Chowdharya4fce192017-09-06 13:10:03 -0700861 exportIncludeDirs := library.flagExporter.exportedIncludes(ctx)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800862 var SourceAbiFlags []string
863 for _, dir := range exportIncludeDirs.Strings() {
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700864 SourceAbiFlags = append(SourceAbiFlags, "-I"+dir)
865 }
Inseob Kim69378442019-06-03 19:10:47 +0900866 for _, reexportedInclude := range library.sabi.Properties.ReexportedIncludes {
867 SourceAbiFlags = append(SourceAbiFlags, "-I"+reexportedInclude)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800868 }
869 exportedHeaderFlags := strings.Join(SourceAbiFlags, " ")
Logan Chiene3d7a0d2019-01-17 00:18:02 +0800870 library.sAbiOutputFile = TransformDumpToLinkedDump(ctx, objs.sAbiDumpFiles, soFile, fileName, exportedHeaderFlags,
871 android.OptionalPathForModuleSrc(ctx, library.Properties.Header_abi_checker.Symbol_file),
872 library.Properties.Header_abi_checker.Exclude_symbol_versions,
873 library.Properties.Header_abi_checker.Exclude_symbol_tags)
Logan Chien2f2b8902018-07-10 15:01:19 +0800874
Logan Chien7eefdc42018-07-11 18:10:41 +0800875 refAbiDumpFile := getRefAbiDumpFile(ctx, vndkVersion, fileName)
876 if refAbiDumpFile != nil {
Logan Chienf3511742017-10-31 18:04:35 +0800877 library.sAbiDiff = SourceAbiDiff(ctx, library.sAbiOutputFile.Path(),
Inseob Kim9516ee92019-05-09 10:56:13 +0900878 refAbiDumpFile, fileName, exportedHeaderFlags, ctx.isLlndk(ctx.Config()), ctx.isNdk(), ctx.isVndkExt())
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800879 }
880 }
881}
882
Colin Crossb916a382016-07-29 17:28:03 -0700883func (library *libraryDecorator) link(ctx ModuleContext,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700884 flags Flags, deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700885
Colin Crossad59e752017-11-16 14:29:11 -0800886 objs = deps.Objs.Copy().Append(objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700887 var out android.Path
Colin Crossa48ab5b2017-02-14 15:28:44 -0800888 if library.static() || library.header() {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700889 out = library.linkStatic(ctx, flags, deps, objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700890 } else {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700891 out = library.linkShared(ctx, flags, deps, objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700892 }
893
Inseob Kim69378442019-06-03 19:10:47 +0900894 library.exportIncludes(ctx)
895 library.reexportDirs(deps.ReexportedDirs...)
896 library.reexportSystemDirs(deps.ReexportedSystemDirs...)
897 library.reexportFlags(deps.ReexportedFlags...)
898 library.reexportDeps(deps.ReexportedDeps...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700899
Nan Zhang0007d812017-11-07 10:57:05 -0800900 if Bool(library.Properties.Aidl.Export_aidl_headers) {
Dan Willemsene1240db2016-11-03 14:28:51 -0700901 if library.baseCompiler.hasSrcExt(".aidl") {
Inseob Kim69378442019-06-03 19:10:47 +0900902 dir := android.PathForModuleGen(ctx, "aidl").String()
903 library.reexportDirs(dir)
904 library.reexportDeps(library.baseCompiler.pathDeps...) // TODO: restrict to aidl deps
Dan Willemsene1240db2016-11-03 14:28:51 -0700905 }
906 }
907
Nan Zhang0007d812017-11-07 10:57:05 -0800908 if Bool(library.Properties.Proto.Export_proto_headers) {
Dan Willemsene1240db2016-11-03 14:28:51 -0700909 if library.baseCompiler.hasSrcExt(".proto") {
Dan Willemsenab9f4262018-02-14 13:58:34 -0800910 includes := []string{}
Colin Cross19878da2019-03-28 14:45:07 -0700911 if flags.proto.CanonicalPathFromRoot {
Inseob Kim69378442019-06-03 19:10:47 +0900912 includes = append(includes, flags.proto.SubDir.String())
Colin Cross10d22312017-05-03 11:01:58 -0700913 }
Inseob Kim69378442019-06-03 19:10:47 +0900914 includes = append(includes, flags.proto.Dir.String())
915 library.reexportDirs(includes...)
916 library.reexportDeps(library.baseCompiler.pathDeps...) // TODO: restrict to proto deps
Colin Cross0c461f12016-10-20 16:11:43 -0700917 }
918 }
919
Inseob Kim21f26902018-09-06 00:55:20 +0900920 if library.baseCompiler.hasSrcExt(".sysprop") {
Inseob Kim69378442019-06-03 19:10:47 +0900921 dir := android.PathForModuleGen(ctx, "sysprop", "include").String()
Inseob Kimc0907f12019-02-08 21:00:45 +0900922 if library.Properties.Sysprop.Platform != nil {
923 isProduct := ctx.ProductSpecific() && !ctx.useVndk()
924 isVendor := ctx.useVndk()
925 isOwnerPlatform := Bool(library.Properties.Sysprop.Platform)
926
Inseob Kim5cefbd22019-06-08 20:36:59 +0900927 usePublic := isProduct || (isOwnerPlatform == isVendor)
Inseob Kimc0907f12019-02-08 21:00:45 +0900928
Inseob Kim5cefbd22019-06-08 20:36:59 +0900929 if usePublic {
930 dir = android.PathForModuleGen(ctx, "sysprop/public", "include").String()
Inseob Kimc0907f12019-02-08 21:00:45 +0900931 }
932 }
933
Inseob Kim69378442019-06-03 19:10:47 +0900934 library.reexportDirs(dir)
935 library.reexportDeps(library.baseCompiler.pathDeps...)
Inseob Kim21f26902018-09-06 00:55:20 +0900936 }
937
Jiyong Parkda732bd2018-11-02 18:23:15 +0900938 if library.buildStubs() {
Inseob Kim69378442019-06-03 19:10:47 +0900939 library.reexportFlags("-D" + versioningMacroName(ctx.ModuleName()) + "=" + library.stubsVersion())
Jiyong Parkda732bd2018-11-02 18:23:15 +0900940 }
941
Colin Cross4d9c2d12016-07-29 12:48:20 -0700942 return out
943}
944
Colin Crossb916a382016-07-29 17:28:03 -0700945func (library *libraryDecorator) buildStatic() bool {
Colin Cross38b40df2018-04-10 16:14:46 -0700946 return library.MutatedProperties.BuildStatic && BoolDefault(library.Properties.Static.Enabled, true)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700947}
948
Colin Crossb916a382016-07-29 17:28:03 -0700949func (library *libraryDecorator) buildShared() bool {
Colin Cross38b40df2018-04-10 16:14:46 -0700950 return library.MutatedProperties.BuildShared && BoolDefault(library.Properties.Shared.Enabled, true)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700951}
952
Colin Crossb916a382016-07-29 17:28:03 -0700953func (library *libraryDecorator) getWholeStaticMissingDeps() []string {
Colin Crossd2343a32018-04-30 14:50:01 -0700954 return append([]string(nil), library.wholeStaticMissingDeps...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700955}
956
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700957func (library *libraryDecorator) objs() Objects {
958 return library.objects
Colin Cross4d9c2d12016-07-29 12:48:20 -0700959}
960
Inseob Kim69378442019-06-03 19:10:47 +0900961func (library *libraryDecorator) reuseObjs() (Objects, exportedFlagsProducer) {
962 return library.reuseObjects, &library.flagExporter
Colin Cross4d9c2d12016-07-29 12:48:20 -0700963}
964
Colin Cross26c34ed2016-09-30 17:10:16 -0700965func (library *libraryDecorator) toc() android.OptionalPath {
966 return library.tocFile
967}
968
Jiyong Parkf1194352019-02-25 11:05:47 +0900969func (library *libraryDecorator) installSymlinkToRuntimeApex(ctx ModuleContext, file android.Path) {
970 dir := library.baseInstaller.installDir(ctx)
971 dirOnDevice := android.InstallPathToOnDevicePath(ctx, dir)
972 target := "/" + filepath.Join("apex", "com.android.runtime", dir.Base(), "bionic", file.Base())
973 ctx.InstallAbsoluteSymlink(dir, file.Base(), target)
974 library.post_install_cmds = append(library.post_install_cmds, makeSymlinkCmd(dirOnDevice, file.Base(), target))
975}
976
Colin Crossb916a382016-07-29 17:28:03 -0700977func (library *libraryDecorator) install(ctx ModuleContext, file android.Path) {
Colin Crossc43ae772017-04-14 15:42:53 -0700978 if library.shared() {
Justin Yun8fe12122017-12-07 17:18:15 +0900979 if ctx.Device() && ctx.useVndk() {
980 if ctx.isVndkSp() {
981 library.baseInstaller.subDir = "vndk-sp"
982 } else if ctx.isVndk() {
Vic Yangefd249e2018-11-12 20:19:56 -0800983 if ctx.DeviceConfig().VndkUseCoreVariant() && !ctx.mustUseVendorVariant() {
984 library.useCoreVariant = true
985 }
Justin Yun8fe12122017-12-07 17:18:15 +0900986 library.baseInstaller.subDir = "vndk"
987 }
Logan Chienf3511742017-10-31 18:04:35 +0800988
989 // Append a version to vndk or vndk-sp directories on the system partition.
990 if ctx.isVndk() && !ctx.isVndkExt() {
991 vndkVersion := ctx.DeviceConfig().PlatformVndkVersion()
992 if vndkVersion != "current" && vndkVersion != "" {
993 library.baseInstaller.subDir += "-" + vndkVersion
994 }
Justin Yun8effde42017-06-23 19:24:43 +0900995 }
Peter Collingbourne49a25cb2019-05-21 16:06:09 -0700996 } else if len(library.Properties.Stubs.Versions) > 0 && android.DirectlyInAnyApex(ctx, ctx.ModuleName()) {
Jiyong Parkf1194352019-02-25 11:05:47 +0900997 // Bionic libraries (e.g. libc.so) is installed to the bootstrap subdirectory.
998 // The original path becomes a symlink to the corresponding file in the
999 // runtime APEX.
Jiyong Parkacbf6c72019-07-09 16:19:16 +09001000 translatedArch := ctx.Target().NativeBridge == android.NativeBridgeEnabled || !ctx.Arch().Native
1001 if installToBootstrap(ctx.baseModuleName(), ctx.Config()) && !library.buildStubs() && !translatedArch && !ctx.inRecovery() {
Peter Collingbourne3478bb22019-04-24 14:41:12 -07001002 if ctx.Device() && isBionic(ctx.baseModuleName()) {
Jiyong Parkc3e2c862019-03-16 01:10:08 +09001003 library.installSymlinkToRuntimeApex(ctx, file)
1004 }
Jiyong Park429660f2019-01-16 22:31:11 +09001005 library.baseInstaller.subDir = "bootstrap"
1006 }
Przemyslaw Szczepaniake6fc5072019-07-12 14:06:23 +01001007 } else if android.DirectlyInAnyApex(ctx, ctx.ModuleName()) && ctx.isLlndk(ctx.Config()) && !isBionic(ctx.baseModuleName()) {
1008 // Skip installing LLNDK (non-bionic) libraries moved to APEX.
1009 ctx.Module().SkipInstall()
Justin Yun8effde42017-06-23 19:24:43 +09001010 }
Przemyslaw Szczepaniake6fc5072019-07-12 14:06:23 +01001011
Colin Cross4d9c2d12016-07-29 12:48:20 -07001012 library.baseInstaller.install(ctx, file)
1013 }
Dan Albertf563d252017-10-13 00:29:00 -07001014
Dan Albert281f22b2017-12-13 15:03:47 -08001015 if Bool(library.Properties.Static_ndk_lib) && library.static() &&
Jiyong Parkf9332f12018-02-01 00:54:12 +09001016 !ctx.useVndk() && !ctx.inRecovery() && ctx.Device() &&
Jiyong Park7ed9de32018-10-15 22:25:07 +09001017 library.baseLinker.sanitize.isUnsanitizedVariant() &&
1018 !library.buildStubs() {
Dan Albertf563d252017-10-13 00:29:00 -07001019 installPath := getNdkSysrootBase(ctx).Join(
Dan Albertea4b7b92018-04-25 16:05:30 -07001020 ctx, "usr/lib", config.NDKTriple(ctx.toolchain()), file.Base())
Dan Albertf563d252017-10-13 00:29:00 -07001021
1022 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
1023 Rule: android.Cp,
1024 Description: "install " + installPath.Base(),
1025 Output: installPath,
1026 Input: file,
1027 })
1028
Colin Cross0875c522017-11-28 17:34:01 -08001029 library.ndkSysrootPath = installPath
Dan Albertf563d252017-10-13 00:29:00 -07001030 }
Colin Cross4d9c2d12016-07-29 12:48:20 -07001031}
1032
Colin Crossb916a382016-07-29 17:28:03 -07001033func (library *libraryDecorator) static() bool {
Colin Crossa48ab5b2017-02-14 15:28:44 -08001034 return library.MutatedProperties.VariantIsStatic
Colin Cross4d9c2d12016-07-29 12:48:20 -07001035}
1036
Colin Crossa48ab5b2017-02-14 15:28:44 -08001037func (library *libraryDecorator) shared() bool {
1038 return library.MutatedProperties.VariantIsShared
1039}
1040
1041func (library *libraryDecorator) header() bool {
1042 return !library.static() && !library.shared()
1043}
1044
1045func (library *libraryDecorator) setStatic() {
1046 library.MutatedProperties.VariantIsStatic = true
1047 library.MutatedProperties.VariantIsShared = false
1048}
1049
1050func (library *libraryDecorator) setShared() {
1051 library.MutatedProperties.VariantIsStatic = false
1052 library.MutatedProperties.VariantIsShared = true
Colin Crossb916a382016-07-29 17:28:03 -07001053}
1054
Colin Crossab3b7322016-12-09 14:46:15 -08001055func (library *libraryDecorator) BuildOnlyStatic() {
Colin Crossa48ab5b2017-02-14 15:28:44 -08001056 library.MutatedProperties.BuildShared = false
Colin Crossab3b7322016-12-09 14:46:15 -08001057}
1058
1059func (library *libraryDecorator) BuildOnlyShared() {
Colin Crossa48ab5b2017-02-14 15:28:44 -08001060 library.MutatedProperties.BuildStatic = false
Colin Crossab3b7322016-12-09 14:46:15 -08001061}
1062
Colin Cross5950f382016-12-13 12:50:57 -08001063func (library *libraryDecorator) HeaderOnly() {
Colin Crossa48ab5b2017-02-14 15:28:44 -08001064 library.MutatedProperties.BuildShared = false
1065 library.MutatedProperties.BuildStatic = false
Colin Cross5950f382016-12-13 12:50:57 -08001066}
1067
Jiyong Park7ed9de32018-10-15 22:25:07 +09001068func (library *libraryDecorator) buildStubs() bool {
1069 return library.MutatedProperties.BuildStubs
1070}
1071
1072func (library *libraryDecorator) stubsVersion() string {
1073 return library.MutatedProperties.StubsVersion
1074}
1075
Colin Cross571cccf2019-02-04 11:22:08 -08001076var versioningMacroNamesListKey = android.NewOnceKey("versioningMacroNamesList")
1077
Jiyong Parkda732bd2018-11-02 18:23:15 +09001078func versioningMacroNamesList(config android.Config) *map[string]string {
Colin Cross571cccf2019-02-04 11:22:08 -08001079 return config.Once(versioningMacroNamesListKey, func() interface{} {
Jiyong Parkda732bd2018-11-02 18:23:15 +09001080 m := make(map[string]string)
1081 return &m
1082 }).(*map[string]string)
1083}
1084
1085// alphanumeric and _ characters are preserved.
1086// other characters are all converted to _
1087var charsNotForMacro = regexp.MustCompile("[^a-zA-Z0-9_]+")
1088
1089func versioningMacroName(moduleName string) string {
1090 macroName := charsNotForMacro.ReplaceAllString(moduleName, "_")
1091 macroName = strings.ToUpper(moduleName)
1092 return "__" + macroName + "_API__"
1093}
1094
Colin Crossab3b7322016-12-09 14:46:15 -08001095func NewLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) {
Colin Cross4d9c2d12016-07-29 12:48:20 -07001096 module := newModule(hod, android.MultilibBoth)
1097
Colin Crossb916a382016-07-29 17:28:03 -07001098 library := &libraryDecorator{
Colin Crossa48ab5b2017-02-14 15:28:44 -08001099 MutatedProperties: LibraryMutatedProperties{
Colin Crossab3b7322016-12-09 14:46:15 -08001100 BuildShared: true,
1101 BuildStatic: true,
Colin Cross4d9c2d12016-07-29 12:48:20 -07001102 },
Colin Crossb916a382016-07-29 17:28:03 -07001103 baseCompiler: NewBaseCompiler(),
Dan Albert61f32122018-07-26 14:00:24 -07001104 baseLinker: NewBaseLinker(module.sanitize),
Colin Crossb916a382016-07-29 17:28:03 -07001105 baseInstaller: NewBaseInstaller("lib", "lib64", InstallInSystem),
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -08001106 sabi: module.sabi,
Colin Cross4d9c2d12016-07-29 12:48:20 -07001107 }
1108
Colin Crossb916a382016-07-29 17:28:03 -07001109 module.compiler = library
1110 module.linker = library
1111 module.installer = library
1112
1113 return module, library
1114}
1115
Colin Cross10d22312017-05-03 11:01:58 -07001116// connects a shared library to a static library in order to reuse its .o files to avoid
1117// compiling source files twice.
1118func reuseStaticLibrary(mctx android.BottomUpMutatorContext, static, shared *Module) {
1119 if staticCompiler, ok := static.compiler.(*libraryDecorator); ok {
1120 sharedCompiler := shared.compiler.(*libraryDecorator)
Dan Willemsen3a26eef2018-12-03 15:25:46 -08001121
1122 // Check libraries in addition to cflags, since libraries may be exporting different
1123 // include directories.
Colin Cross10d22312017-05-03 11:01:58 -07001124 if len(staticCompiler.Properties.Static.Cflags) == 0 &&
Dan Willemsen3a26eef2018-12-03 15:25:46 -08001125 len(sharedCompiler.Properties.Shared.Cflags) == 0 &&
1126 len(staticCompiler.Properties.Static.Whole_static_libs) == 0 &&
1127 len(sharedCompiler.Properties.Shared.Whole_static_libs) == 0 &&
1128 len(staticCompiler.Properties.Static.Static_libs) == 0 &&
1129 len(sharedCompiler.Properties.Shared.Static_libs) == 0 &&
1130 len(staticCompiler.Properties.Static.Shared_libs) == 0 &&
1131 len(sharedCompiler.Properties.Shared.Shared_libs) == 0 &&
1132 staticCompiler.Properties.Static.System_shared_libs == nil &&
1133 sharedCompiler.Properties.Shared.System_shared_libs == nil {
Colin Cross10d22312017-05-03 11:01:58 -07001134
1135 mctx.AddInterVariantDependency(reuseObjTag, shared, static)
1136 sharedCompiler.baseCompiler.Properties.OriginalSrcs =
1137 sharedCompiler.baseCompiler.Properties.Srcs
1138 sharedCompiler.baseCompiler.Properties.Srcs = nil
1139 sharedCompiler.baseCompiler.Properties.Generated_sources = nil
Jiyong Parke4bb9862019-02-01 00:31:10 +09001140 } else {
1141 // This dep is just to reference static variant from shared variant
1142 mctx.AddInterVariantDependency(staticVariantTag, shared, static)
Colin Cross10d22312017-05-03 11:01:58 -07001143 }
1144 }
1145}
1146
Colin Crosse40b4ea2018-10-02 22:25:58 -07001147func LinkageMutator(mctx android.BottomUpMutatorContext) {
Colin Crossb916a382016-07-29 17:28:03 -07001148 if m, ok := mctx.Module().(*Module); ok && m.linker != nil {
Colin Cross33b2fb72019-05-14 14:07:01 -07001149 switch library := m.linker.(type) {
1150 case prebuiltLibraryInterface:
1151 // Always create both the static and shared variants for prebuilt libraries, and then disable the one
1152 // that is not being used. This allows them to share the name of a cc_library module, which requires that
1153 // all the variants of the cc_library also exist on the prebuilt.
1154 modules := mctx.CreateLocalVariations("static", "shared")
1155 static := modules[0].(*Module)
1156 shared := modules[1].(*Module)
1157
1158 static.linker.(prebuiltLibraryInterface).setStatic()
1159 shared.linker.(prebuiltLibraryInterface).setShared()
1160
1161 if !library.buildStatic() {
1162 static.linker.(prebuiltLibraryInterface).disablePrebuilt()
1163 }
1164 if !library.buildShared() {
1165 shared.linker.(prebuiltLibraryInterface).disablePrebuilt()
1166 }
1167
1168 case libraryInterface:
Colin Crossb916a382016-07-29 17:28:03 -07001169 if library.buildStatic() && library.buildShared() {
Colin Cross33b2fb72019-05-14 14:07:01 -07001170 modules := mctx.CreateLocalVariations("static", "shared")
Colin Crossb916a382016-07-29 17:28:03 -07001171 static := modules[0].(*Module)
1172 shared := modules[1].(*Module)
1173
Colin Crossa48ab5b2017-02-14 15:28:44 -08001174 static.linker.(libraryInterface).setStatic()
1175 shared.linker.(libraryInterface).setShared()
Colin Crossb916a382016-07-29 17:28:03 -07001176
Colin Cross10d22312017-05-03 11:01:58 -07001177 reuseStaticLibrary(mctx, static, shared)
1178
Colin Crossb916a382016-07-29 17:28:03 -07001179 } else if library.buildStatic() {
Colin Cross33b2fb72019-05-14 14:07:01 -07001180 modules := mctx.CreateLocalVariations("static")
Colin Crossa48ab5b2017-02-14 15:28:44 -08001181 modules[0].(*Module).linker.(libraryInterface).setStatic()
Colin Crossb916a382016-07-29 17:28:03 -07001182 } else if library.buildShared() {
Colin Cross33b2fb72019-05-14 14:07:01 -07001183 modules := mctx.CreateLocalVariations("shared")
Colin Crossa48ab5b2017-02-14 15:28:44 -08001184 modules[0].(*Module).linker.(libraryInterface).setShared()
Colin Crossb916a382016-07-29 17:28:03 -07001185 }
1186 }
1187 }
Colin Cross4d9c2d12016-07-29 12:48:20 -07001188}
Jiyong Park7ed9de32018-10-15 22:25:07 +09001189
Colin Cross571cccf2019-02-04 11:22:08 -08001190var stubVersionsKey = android.NewOnceKey("stubVersions")
1191
Jiyong Park25fc6a92018-11-18 18:02:45 +09001192// maps a module name to the list of stubs versions available for the module
1193func stubsVersionsFor(config android.Config) map[string][]string {
Colin Cross571cccf2019-02-04 11:22:08 -08001194 return config.Once(stubVersionsKey, func() interface{} {
Jiyong Park25fc6a92018-11-18 18:02:45 +09001195 return make(map[string][]string)
1196 }).(map[string][]string)
1197}
1198
1199var stubsVersionsLock sync.Mutex
1200
1201func latestStubsVersionFor(config android.Config, name string) string {
1202 versions, ok := stubsVersionsFor(config)[name]
1203 if ok && len(versions) > 0 {
1204 // the versions are alreay sorted in ascending order
1205 return versions[len(versions)-1]
1206 }
1207 return ""
1208}
1209
Jiyong Park7ed9de32018-10-15 22:25:07 +09001210// Version mutator splits a module into the mandatory non-stubs variant
Jiyong Park25fc6a92018-11-18 18:02:45 +09001211// (which is unnamed) and zero or more stubs variants.
1212func VersionMutator(mctx android.BottomUpMutatorContext) {
Jiyong Park7ed9de32018-10-15 22:25:07 +09001213 if m, ok := mctx.Module().(*Module); ok && !m.inRecovery() && m.linker != nil {
Jiyong Park25fc6a92018-11-18 18:02:45 +09001214 if library, ok := m.linker.(*libraryDecorator); ok && library.buildShared() &&
1215 len(library.Properties.Stubs.Versions) > 0 {
1216 versions := []string{}
Jiyong Park7ed9de32018-10-15 22:25:07 +09001217 for _, v := range library.Properties.Stubs.Versions {
Jiyong Park25fc6a92018-11-18 18:02:45 +09001218 if _, err := strconv.Atoi(v); err != nil {
1219 mctx.PropertyErrorf("versions", "%q is not a number", v)
1220 }
Jiyong Park7ed9de32018-10-15 22:25:07 +09001221 versions = append(versions, v)
1222 }
Jiyong Park25fc6a92018-11-18 18:02:45 +09001223 sort.Slice(versions, func(i, j int) bool {
1224 left, _ := strconv.Atoi(versions[i])
1225 right, _ := strconv.Atoi(versions[j])
1226 return left < right
1227 })
1228
1229 // save the list of versions for later use
1230 copiedVersions := make([]string, len(versions))
1231 copy(copiedVersions, versions)
1232 stubsVersionsLock.Lock()
1233 defer stubsVersionsLock.Unlock()
1234 stubsVersionsFor(mctx.Config())[mctx.ModuleName()] = copiedVersions
1235
1236 // "" is for the non-stubs variant
Jiyong Park67883b32019-01-03 21:35:58 +09001237 versions = append([]string{""}, versions...)
Jiyong Park25fc6a92018-11-18 18:02:45 +09001238
Jiyong Park7ed9de32018-10-15 22:25:07 +09001239 modules := mctx.CreateVariations(versions...)
1240 for i, m := range modules {
1241 l := m.(*Module).linker.(*libraryDecorator)
Jiyong Park25fc6a92018-11-18 18:02:45 +09001242 if versions[i] != "" {
1243 l.MutatedProperties.BuildStubs = true
1244 l.MutatedProperties.StubsVersion = versions[i]
1245 m.(*Module).Properties.HideFromMake = true
Jiyong Park090d9df2018-12-11 02:47:16 +09001246 m.(*Module).sanitize = nil
1247 m.(*Module).stl = nil
Jiyong Park127d5652018-12-12 10:26:20 +09001248 m.(*Module).Properties.PreventInstall = true
Jiyong Park7ed9de32018-10-15 22:25:07 +09001249 }
Jiyong Park7ed9de32018-10-15 22:25:07 +09001250 }
1251 } else {
1252 mctx.CreateVariations("")
1253 }
1254 return
1255 }
1256 if genrule, ok := mctx.Module().(*genrule.Module); ok {
1257 if props, ok := genrule.Extra.(*GenruleExtraProperties); ok && !props.InRecovery {
1258 mctx.CreateVariations("")
1259 return
1260 }
1261 }
1262}