blob: ad07db47c6cc15ad8d79d1dd358f6ce4868ba734 [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 (
Jiyong Parkda732bd2018-11-02 18:23:15 +090018 "regexp"
Jiyong Park25fc6a92018-11-18 18:02:45 +090019 "sort"
20 "strconv"
Colin Cross4d9c2d12016-07-29 12:48:20 -070021 "strings"
Jiyong Parkda732bd2018-11-02 18:23:15 +090022 "sync"
Colin Cross4d9c2d12016-07-29 12:48:20 -070023
24 "github.com/google/blueprint"
Colin Cross26c34ed2016-09-30 17:10:16 -070025 "github.com/google/blueprint/pathtools"
Colin Cross4d9c2d12016-07-29 12:48:20 -070026
Colin Cross4d9c2d12016-07-29 12:48:20 -070027 "android/soong/android"
Dan Albertea4b7b92018-04-25 16:05:30 -070028 "android/soong/cc/config"
Jiyong Park7ed9de32018-10-15 22:25:07 +090029 "android/soong/genrule"
Colin Cross4d9c2d12016-07-29 12:48:20 -070030)
31
Colin Crosseefe9a32019-01-22 14:41:08 -080032type StaticSharedLibraryProperties struct {
33 Srcs []string `android:"arch_variant"`
34 Cflags []string `android:"arch_variant"`
35
36 Enabled *bool `android:"arch_variant"`
37 Whole_static_libs []string `android:"arch_variant"`
38 Static_libs []string `android:"arch_variant"`
39 Shared_libs []string `android:"arch_variant"`
40 System_shared_libs []string `android:"arch_variant"`
41
42 Export_shared_lib_headers []string `android:"arch_variant"`
43 Export_static_lib_headers []string `android:"arch_variant"`
44}
45
Colin Crossb916a382016-07-29 17:28:03 -070046type LibraryProperties struct {
Colin Crosseefe9a32019-01-22 14:41:08 -080047 Static StaticSharedLibraryProperties `android:"arch_variant"`
48 Shared StaticSharedLibraryProperties `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070049
Colin Cross4d9c2d12016-07-29 12:48:20 -070050 // local file name to pass to the linker as -unexported_symbols_list
51 Unexported_symbols_list *string `android:"arch_variant"`
52 // local file name to pass to the linker as -force_symbols_not_weak_list
53 Force_symbols_not_weak_list *string `android:"arch_variant"`
54 // local file name to pass to the linker as -force_symbols_weak_list
55 Force_symbols_weak_list *string `android:"arch_variant"`
56
57 // rename host libraries to prevent overlap with system installed libraries
58 Unique_host_soname *bool
59
Dan Willemsene1240db2016-11-03 14:28:51 -070060 Aidl struct {
61 // export headers generated from .aidl sources
Nan Zhang0007d812017-11-07 10:57:05 -080062 Export_aidl_headers *bool
Dan Willemsene1240db2016-11-03 14:28:51 -070063 }
64
Colin Cross0c461f12016-10-20 16:11:43 -070065 Proto struct {
66 // export headers generated from .proto sources
Nan Zhang0007d812017-11-07 10:57:05 -080067 Export_proto_headers *bool
Colin Cross0c461f12016-10-20 16:11:43 -070068 }
Dan Albertf563d252017-10-13 00:29:00 -070069
Nan Zhang0007d812017-11-07 10:57:05 -080070 Static_ndk_lib *bool
Jiyong Park7ed9de32018-10-15 22:25:07 +090071
72 Stubs struct {
73 // Relative path to the symbol map. The symbol map provides the list of
74 // symbols that are exported for stubs variant of this library.
75 Symbol_file *string
76
77 // List versions to generate stubs libs for.
78 Versions []string
79 }
dimitryd95964a2018-11-07 13:43:34 +010080
81 // set the name of the output
82 Stem *string `android:"arch_variant"`
83
84 // Names of modules to be overridden. Listed modules can only be other shared libraries
85 // (in Make or Soong).
86 // This does not completely prevent installation of the overridden libraries, but if both
87 // binaries would be installed by default (in PRODUCT_PACKAGES) the other library will be removed
88 // from PRODUCT_PACKAGES.
89 Overrides []string
Colin Crossa48ab5b2017-02-14 15:28:44 -080090}
Colin Cross0c461f12016-10-20 16:11:43 -070091
Colin Crossa48ab5b2017-02-14 15:28:44 -080092type LibraryMutatedProperties struct {
Colin Cross4d9c2d12016-07-29 12:48:20 -070093 VariantName string `blueprint:"mutated"`
Colin Crossb916a382016-07-29 17:28:03 -070094
95 // Build a static variant
96 BuildStatic bool `blueprint:"mutated"`
97 // Build a shared variant
98 BuildShared bool `blueprint:"mutated"`
99 // This variant is shared
100 VariantIsShared bool `blueprint:"mutated"`
101 // This variant is static
102 VariantIsStatic bool `blueprint:"mutated"`
Jiyong Park7ed9de32018-10-15 22:25:07 +0900103
104 // This variant is a stubs lib
105 BuildStubs bool `blueprint:"mutated"`
106 // Version of the stubs lib
107 StubsVersion string `blueprint:"mutated"`
Colin Crossb916a382016-07-29 17:28:03 -0700108}
109
110type FlagExporterProperties struct {
111 // list of directories relative to the Blueprints file that will
Dan Willemsen273af7f2016-11-03 15:53:42 -0700112 // be added to the include path (using -I) for this module and any module that links
Colin Cross5d195602017-10-17 16:15:50 -0700113 // against this module. Directories listed in export_include_dirs do not need to be
114 // listed in local_include_dirs.
Colin Crossb916a382016-07-29 17:28:03 -0700115 Export_include_dirs []string `android:"arch_variant"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700116
117 Target struct {
118 Vendor struct {
119 // list of exported include directories, like
120 // export_include_dirs, that will be applied to the
121 // vendor variant of this library. This will overwrite
122 // any other declarations.
Steven Morelandb21df8f2018-01-05 14:42:54 -0800123 Override_export_include_dirs []string
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700124 }
125 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700126}
127
128func init() {
Steven Morelandf9e62162017-11-02 17:00:50 -0700129 android.RegisterModuleType("cc_library_static", LibraryStaticFactory)
130 android.RegisterModuleType("cc_library_shared", LibrarySharedFactory)
131 android.RegisterModuleType("cc_library", LibraryFactory)
132 android.RegisterModuleType("cc_library_host_static", LibraryHostStaticFactory)
133 android.RegisterModuleType("cc_library_host_shared", LibraryHostSharedFactory)
134 android.RegisterModuleType("cc_library_headers", LibraryHeaderFactory)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700135}
136
137// Module factory for combined static + shared libraries, device by default but with possible host
138// support
Steven Morelandf9e62162017-11-02 17:00:50 -0700139func LibraryFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800140 module, _ := NewLibrary(android.HostAndDeviceSupported)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700141 return module.Init()
142}
143
144// Module factory for static libraries
Steven Morelandf9e62162017-11-02 17:00:50 -0700145func LibraryStaticFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800146 module, library := NewLibrary(android.HostAndDeviceSupported)
147 library.BuildOnlyStatic()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700148 return module.Init()
149}
150
151// Module factory for shared libraries
Steven Morelandf9e62162017-11-02 17:00:50 -0700152func LibrarySharedFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800153 module, library := NewLibrary(android.HostAndDeviceSupported)
154 library.BuildOnlyShared()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700155 return module.Init()
156}
157
158// Module factory for host static libraries
Steven Morelandf9e62162017-11-02 17:00:50 -0700159func LibraryHostStaticFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800160 module, library := NewLibrary(android.HostSupported)
161 library.BuildOnlyStatic()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700162 return module.Init()
163}
164
165// Module factory for host shared libraries
Steven Morelandf9e62162017-11-02 17:00:50 -0700166func LibraryHostSharedFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800167 module, library := NewLibrary(android.HostSupported)
168 library.BuildOnlyShared()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700169 return module.Init()
170}
171
Colin Cross5950f382016-12-13 12:50:57 -0800172// Module factory for header-only libraries
Steven Morelandf9e62162017-11-02 17:00:50 -0700173func LibraryHeaderFactory() android.Module {
Colin Cross5950f382016-12-13 12:50:57 -0800174 module, library := NewLibrary(android.HostAndDeviceSupported)
175 library.HeaderOnly()
176 return module.Init()
177}
178
Colin Cross4d9c2d12016-07-29 12:48:20 -0700179type flagExporter struct {
180 Properties FlagExporterProperties
181
Dan Willemsen847dcc72016-09-29 12:13:36 -0700182 flags []string
183 flagsDeps android.Paths
Colin Cross4d9c2d12016-07-29 12:48:20 -0700184}
185
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700186func (f *flagExporter) exportedIncludes(ctx ModuleContext) android.Paths {
Steven Morelandb21df8f2018-01-05 14:42:54 -0800187 if ctx.useVndk() && f.Properties.Target.Vendor.Override_export_include_dirs != nil {
188 return android.PathsForModuleSrc(ctx, f.Properties.Target.Vendor.Override_export_include_dirs)
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700189 } else {
190 return android.PathsForModuleSrc(ctx, f.Properties.Export_include_dirs)
191 }
192}
193
Colin Cross4d9c2d12016-07-29 12:48:20 -0700194func (f *flagExporter) exportIncludes(ctx ModuleContext, inc string) {
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700195 includeDirs := f.exportedIncludes(ctx)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700196 for _, dir := range includeDirs.Strings() {
197 f.flags = append(f.flags, inc+dir)
198 }
199}
200
201func (f *flagExporter) reexportFlags(flags []string) {
202 f.flags = append(f.flags, flags...)
203}
204
Dan Willemsen847dcc72016-09-29 12:13:36 -0700205func (f *flagExporter) reexportDeps(deps android.Paths) {
206 f.flagsDeps = append(f.flagsDeps, deps...)
207}
208
Colin Cross4d9c2d12016-07-29 12:48:20 -0700209func (f *flagExporter) exportedFlags() []string {
210 return f.flags
211}
212
Dan Willemsen847dcc72016-09-29 12:13:36 -0700213func (f *flagExporter) exportedFlagsDeps() android.Paths {
214 return f.flagsDeps
215}
216
Colin Cross4d9c2d12016-07-29 12:48:20 -0700217type exportedFlagsProducer interface {
218 exportedFlags() []string
Dan Willemsen847dcc72016-09-29 12:13:36 -0700219 exportedFlagsDeps() android.Paths
Colin Cross4d9c2d12016-07-29 12:48:20 -0700220}
221
222var _ exportedFlagsProducer = (*flagExporter)(nil)
223
Colin Crossb916a382016-07-29 17:28:03 -0700224// libraryDecorator wraps baseCompiler, baseLinker and baseInstaller to provide library-specific
225// functionality: static vs. shared linkage, reusing object files for shared libraries
226type libraryDecorator struct {
Colin Crossa48ab5b2017-02-14 15:28:44 -0800227 Properties LibraryProperties
228 MutatedProperties LibraryMutatedProperties
Colin Cross4d9c2d12016-07-29 12:48:20 -0700229
230 // For reusing static library objects for shared library
Colin Cross10d22312017-05-03 11:01:58 -0700231 reuseObjects Objects
232 reuseExportedFlags []string
Colin Crossbbc9f4d2017-05-03 16:24:55 -0700233 reuseExportedDeps android.Paths
Colin Cross10d22312017-05-03 11:01:58 -0700234
Colin Cross26c34ed2016-09-30 17:10:16 -0700235 // table-of-contents file to optimize out relinking when possible
236 tocFile android.OptionalPath
Colin Cross4d9c2d12016-07-29 12:48:20 -0700237
Colin Cross4d9c2d12016-07-29 12:48:20 -0700238 flagExporter
239 stripper
240
Colin Cross4d9c2d12016-07-29 12:48:20 -0700241 // If we're used as a whole_static_lib, our missing dependencies need
242 // to be given
243 wholeStaticMissingDeps []string
244
245 // For whole_static_libs
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700246 objects Objects
Colin Cross4d9c2d12016-07-29 12:48:20 -0700247
248 // Uses the module's name if empty, but can be overridden. Does not include
249 // shlib suffix.
250 libName string
Colin Crossb916a382016-07-29 17:28:03 -0700251
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800252 sabi *sabi
253
Dan Willemsen581341d2017-02-09 16:16:31 -0800254 // Output archive of gcno coverage information files
255 coverageOutputFile android.OptionalPath
256
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800257 // linked Source Abi Dump
258 sAbiOutputFile android.OptionalPath
259
260 // Source Abi Diff
261 sAbiDiff android.OptionalPath
262
Colin Cross0875c522017-11-28 17:34:01 -0800263 // Location of the static library in the sysroot. Empty if the library is
264 // not included in the NDK.
265 ndkSysrootPath android.Path
266
Colin Crossb60190a2018-09-04 16:28:17 -0700267 // Location of the linked, unstripped library for shared libraries
268 unstrippedOutputFile android.Path
269
Dan Willemsen569edc52018-11-19 09:33:29 -0800270 // Location of the file that should be copied to dist dir when requested
271 distFile android.OptionalPath
272
Jiyong Park7ed9de32018-10-15 22:25:07 +0900273 versionScriptPath android.ModuleGenPath
274
Colin Crossb916a382016-07-29 17:28:03 -0700275 // Decorated interafaces
276 *baseCompiler
277 *baseLinker
278 *baseInstaller
Colin Cross4d9c2d12016-07-29 12:48:20 -0700279}
280
Colin Crossb916a382016-07-29 17:28:03 -0700281func (library *libraryDecorator) linkerProps() []interface{} {
282 var props []interface{}
283 props = append(props, library.baseLinker.linkerProps()...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700284 return append(props,
285 &library.Properties,
Colin Crossa48ab5b2017-02-14 15:28:44 -0800286 &library.MutatedProperties,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700287 &library.flagExporter.Properties,
Colin Cross22f37952018-09-05 10:43:13 -0700288 &library.stripper.StripProperties)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700289}
290
Colin Crossb916a382016-07-29 17:28:03 -0700291func (library *libraryDecorator) linkerFlags(ctx ModuleContext, flags Flags) Flags {
Colin Cross42742b82016-08-01 13:20:05 -0700292 flags = library.baseLinker.linkerFlags(ctx, flags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700293
Colin Crossb916a382016-07-29 17:28:03 -0700294 // MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
295 // all code is position independent, and then those warnings get promoted to
296 // errors.
Colin Cross3edeee12017-04-04 12:59:48 -0700297 if !ctx.Windows() {
Colin Crossb916a382016-07-29 17:28:03 -0700298 flags.CFlags = append(flags.CFlags, "-fPIC")
299 }
300
301 if library.static() {
302 flags.CFlags = append(flags.CFlags, library.Properties.Static.Cflags...)
Colin Crossa48ab5b2017-02-14 15:28:44 -0800303 } else if library.shared() {
Colin Crossb916a382016-07-29 17:28:03 -0700304 flags.CFlags = append(flags.CFlags, library.Properties.Shared.Cflags...)
305 }
306
Colin Crossa48ab5b2017-02-14 15:28:44 -0800307 if library.shared() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700308 libName := library.getLibName(ctx)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700309 var f []string
Dan Willemsen01a405a2016-06-13 17:19:03 -0700310 if ctx.toolchain().Bionic() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700311 f = append(f,
312 "-nostdlib",
313 "-Wl,--gc-sections",
314 )
315 }
316
317 if ctx.Darwin() {
318 f = append(f,
319 "-dynamiclib",
320 "-single_module",
Colin Cross4d9c2d12016-07-29 12:48:20 -0700321 "-install_name @rpath/"+libName+flags.Toolchain.ShlibSuffix(),
322 )
Colin Cross7863cf52016-10-20 10:47:21 -0700323 if ctx.Arch().ArchType == android.X86 {
324 f = append(f,
325 "-read_only_relocs suppress",
326 )
327 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700328 } else {
329 f = append(f,
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700330 "-shared",
Colin Cross4d9c2d12016-07-29 12:48:20 -0700331 "-Wl,-soname,"+libName+flags.Toolchain.ShlibSuffix())
332 }
333
334 flags.LdFlags = append(f, flags.LdFlags...)
335 }
336
337 return flags
338}
339
Colin Crossf18e1102017-11-16 14:33:08 -0800340func (library *libraryDecorator) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags {
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700341 exportIncludeDirs := library.flagExporter.exportedIncludes(ctx)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700342 if len(exportIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700343 f := includeDirsToFlags(exportIncludeDirs)
344 flags.GlobalFlags = append(flags.GlobalFlags, f)
345 flags.YasmFlags = append(flags.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700346 }
347
Jiyong Park7ed9de32018-10-15 22:25:07 +0900348 flags = library.baseCompiler.compilerFlags(ctx, flags, deps)
349 if library.buildStubs() {
Jiyong Park64379952018-12-13 18:37:29 +0900350 // Remove -include <file> when compiling stubs. Otherwise, the force included
351 // headers might cause conflicting types error with the symbols in the
352 // generated stubs source code. e.g.
353 // double acos(double); // in header
354 // void acos() {} // in the generated source code
355 removeInclude := func(flags []string) []string {
356 ret := flags[:0]
357 for _, f := range flags {
358 if strings.HasPrefix(f, "-include ") {
359 continue
360 }
361 ret = append(ret, f)
362 }
363 return ret
364 }
365 flags.GlobalFlags = removeInclude(flags.GlobalFlags)
366 flags.CFlags = removeInclude(flags.CFlags)
367
Jiyong Park7ed9de32018-10-15 22:25:07 +0900368 flags = addStubLibraryCompilerFlags(flags)
369 }
370 return flags
Dan Willemsen273af7f2016-11-03 15:53:42 -0700371}
372
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700373func extractExportIncludesFromFlags(flags []string) []string {
374 // This method is used in the generation of rules which produce
375 // abi-dumps for source files. Exported headers are needed to infer the
376 // abi exported by a library and filter out the rest of the abi dumped
377 // from a source. We extract the include flags exported by a library.
378 // This includes the flags exported which are re-exported from static
379 // library dependencies, exported header library dependencies and
Jayant Chowdharyaf6eb712017-08-23 16:08:29 -0700380 // generated header dependencies. -isystem headers are not included
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700381 // since for bionic libraries, abi-filtering is taken care of by version
382 // scripts.
383 var exportedIncludes []string
384 for _, flag := range flags {
385 if strings.HasPrefix(flag, "-I") {
386 exportedIncludes = append(exportedIncludes, flag)
387 }
388 }
389 return exportedIncludes
390}
391
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700392func (library *libraryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
Jiyong Park7ed9de32018-10-15 22:25:07 +0900393 if library.buildStubs() {
Jiyong Park3fd0baf2018-12-07 16:25:39 +0900394 objs, versionScript := compileStubLibrary(ctx, flags, String(library.Properties.Stubs.Symbol_file), library.MutatedProperties.StubsVersion, "--apex")
Jiyong Park7ed9de32018-10-15 22:25:07 +0900395 library.versionScriptPath = versionScript
396 return objs
397 }
398
Colin Cross5950f382016-12-13 12:50:57 -0800399 if !library.buildShared() && !library.buildStatic() {
400 if len(library.baseCompiler.Properties.Srcs) > 0 {
401 ctx.PropertyErrorf("srcs", "cc_library_headers must not have any srcs")
402 }
403 if len(library.Properties.Static.Srcs) > 0 {
404 ctx.PropertyErrorf("static.srcs", "cc_library_headers must not have any srcs")
405 }
406 if len(library.Properties.Shared.Srcs) > 0 {
407 ctx.PropertyErrorf("shared.srcs", "cc_library_headers must not have any srcs")
408 }
409 return Objects{}
410 }
Logan Chien2f2b8902018-07-10 15:01:19 +0800411 if ctx.shouldCreateVndkSourceAbiDump() || library.sabi.Properties.CreateSAbiDumps {
Jayant Chowdharya4fce192017-09-06 13:10:03 -0700412 exportIncludeDirs := library.flagExporter.exportedIncludes(ctx)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800413 var SourceAbiFlags []string
414 for _, dir := range exportIncludeDirs.Strings() {
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700415 SourceAbiFlags = append(SourceAbiFlags, "-I"+dir)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800416 }
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700417 for _, reexportedInclude := range extractExportIncludesFromFlags(library.sabi.Properties.ReexportedIncludeFlags) {
418 SourceAbiFlags = append(SourceAbiFlags, reexportedInclude)
419 }
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800420 flags.SAbiFlags = SourceAbiFlags
421 total_length := len(library.baseCompiler.Properties.Srcs) + len(deps.GeneratedSources) + len(library.Properties.Shared.Srcs) +
422 len(library.Properties.Static.Srcs)
423 if total_length > 0 {
424 flags.SAbiDump = true
425 }
426 }
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700427 objs := library.baseCompiler.compile(ctx, flags, deps)
428 library.reuseObjects = objs
Colin Cross2f336352016-10-26 10:03:47 -0700429 buildFlags := flagsToBuilderFlags(flags)
Colin Crossb916a382016-07-29 17:28:03 -0700430
Colin Cross4d9c2d12016-07-29 12:48:20 -0700431 if library.static() {
dimitry0345ad82018-12-05 16:28:14 +0100432 srcs := ctx.ExpandSources(library.Properties.Static.Srcs, nil)
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700433 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceStaticLibrary,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800434 srcs, library.baseCompiler.pathDeps, library.baseCompiler.cFlagsDeps))
Colin Crossa48ab5b2017-02-14 15:28:44 -0800435 } else if library.shared() {
dimitry0345ad82018-12-05 16:28:14 +0100436 srcs := ctx.ExpandSources(library.Properties.Shared.Srcs, nil)
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700437 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceSharedLibrary,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800438 srcs, library.baseCompiler.pathDeps, library.baseCompiler.cFlagsDeps))
Colin Crossb916a382016-07-29 17:28:03 -0700439 }
440
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700441 return objs
Colin Crossb916a382016-07-29 17:28:03 -0700442}
443
444type libraryInterface interface {
445 getWholeStaticMissingDeps() []string
446 static() bool
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700447 objs() Objects
Colin Crossbbc9f4d2017-05-03 16:24:55 -0700448 reuseObjs() (Objects, []string, android.Paths)
Colin Cross26c34ed2016-09-30 17:10:16 -0700449 toc() android.OptionalPath
Colin Crossb916a382016-07-29 17:28:03 -0700450
451 // Returns true if the build options for the module have selected a static or shared build
452 buildStatic() bool
453 buildShared() bool
454
455 // Sets whether a specific variant is static or shared
Colin Crossa48ab5b2017-02-14 15:28:44 -0800456 setStatic()
457 setShared()
Colin Crossb916a382016-07-29 17:28:03 -0700458}
459
460func (library *libraryDecorator) getLibName(ctx ModuleContext) string {
461 name := library.libName
462 if name == "" {
dimitryd95964a2018-11-07 13:43:34 +0100463 name = String(library.Properties.Stem)
464 if name == "" {
465 name = ctx.baseModuleName()
466 }
Colin Crossb916a382016-07-29 17:28:03 -0700467 }
468
Logan Chienf3511742017-10-31 18:04:35 +0800469 if ctx.isVndkExt() {
470 name = ctx.getVndkExtendsModuleName()
471 }
472
Colin Crossb916a382016-07-29 17:28:03 -0700473 if ctx.Host() && Bool(library.Properties.Unique_host_soname) {
474 if !strings.HasSuffix(name, "-host") {
475 name = name + "-host"
476 }
477 }
478
Colin Crossa48ab5b2017-02-14 15:28:44 -0800479 return name + library.MutatedProperties.VariantName
Colin Crossb916a382016-07-29 17:28:03 -0700480}
481
Jiyong Parkda732bd2018-11-02 18:23:15 +0900482var versioningMacroNamesListMutex sync.Mutex
483
Colin Crossb916a382016-07-29 17:28:03 -0700484func (library *libraryDecorator) linkerInit(ctx BaseModuleContext) {
485 location := InstallInSystem
Dan Albert61f32122018-07-26 14:00:24 -0700486 if library.baseLinker.sanitize.inSanitizerDir() {
Vishwath Mohan1dd88392017-03-29 22:00:18 -0700487 location = InstallInSanitizerDir
Colin Crossb916a382016-07-29 17:28:03 -0700488 }
489 library.baseInstaller.location = location
Colin Crossb916a382016-07-29 17:28:03 -0700490 library.baseLinker.linkerInit(ctx)
Jiyong Park7ed9de32018-10-15 22:25:07 +0900491 // Let baseLinker know whether this variant is for stubs or not, so that
492 // it can omit things that are not required for linking stubs.
493 library.baseLinker.dynamicProperties.BuildStubs = library.buildStubs()
Jiyong Parkda732bd2018-11-02 18:23:15 +0900494
495 if library.buildStubs() {
496 macroNames := versioningMacroNamesList(ctx.Config())
497 myName := versioningMacroName(ctx.ModuleName())
498 versioningMacroNamesListMutex.Lock()
499 defer versioningMacroNamesListMutex.Unlock()
500 if (*macroNames)[myName] == "" {
501 (*macroNames)[myName] = ctx.ModuleName()
502 } else if (*macroNames)[myName] != ctx.ModuleName() {
503 ctx.ModuleErrorf("Macro name %q for versioning conflicts with macro name from module %q ", myName, (*macroNames)[myName])
504 }
505 }
Colin Crossb916a382016-07-29 17:28:03 -0700506}
507
dimitry0345ad82018-12-05 16:28:14 +0100508func (library *libraryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
509 deps = library.baseCompiler.compilerDeps(ctx, deps)
510
511 if library.static() {
512 android.ExtractSourcesDeps(ctx, library.Properties.Static.Srcs)
513 } else if library.shared() {
514 android.ExtractSourcesDeps(ctx, library.Properties.Shared.Srcs)
515 }
516
517 return deps
518}
519
Colin Cross37047f12016-12-13 17:06:13 -0800520func (library *libraryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
Dan Willemsen3a26eef2018-12-03 15:25:46 -0800521 if library.static() {
522 if library.Properties.Static.System_shared_libs != nil {
523 library.baseLinker.Properties.System_shared_libs = library.Properties.Static.System_shared_libs
524 }
525 } else if library.shared() {
526 if library.Properties.Shared.System_shared_libs != nil {
527 library.baseLinker.Properties.System_shared_libs = library.Properties.Shared.System_shared_libs
528 }
529 }
530
Colin Crossb916a382016-07-29 17:28:03 -0700531 deps = library.baseLinker.linkerDeps(ctx, deps)
532
533 if library.static() {
534 deps.WholeStaticLibs = append(deps.WholeStaticLibs,
535 library.Properties.Static.Whole_static_libs...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700536 deps.StaticLibs = append(deps.StaticLibs, library.Properties.Static.Static_libs...)
537 deps.SharedLibs = append(deps.SharedLibs, library.Properties.Static.Shared_libs...)
Colin Crosseefe9a32019-01-22 14:41:08 -0800538
539 deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, library.Properties.Static.Export_shared_lib_headers...)
540 deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, library.Properties.Static.Export_static_lib_headers...)
Colin Crossa48ab5b2017-02-14 15:28:44 -0800541 } else if library.shared() {
Dan Willemsen2e47b342016-11-17 01:02:25 -0800542 if ctx.toolchain().Bionic() && !Bool(library.baseLinker.Properties.Nocrt) {
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700543 if !ctx.useSdk() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700544 deps.CrtBegin = "crtbegin_so"
545 deps.CrtEnd = "crtend_so"
546 } else {
Dan Albertebedf672016-11-08 15:06:22 -0800547 // TODO(danalbert): Add generation of crt objects.
548 // For `sdk_version: "current"`, we don't actually have a
549 // freshly generated set of CRT objects. Use the last stable
550 // version.
551 version := ctx.sdkVersion()
552 if version == "current" {
Jayant Chowdhary6e8115a2017-05-09 10:21:52 -0700553 version = getCurrentNdkPrebuiltVersion(ctx)
Dan Albertebedf672016-11-08 15:06:22 -0800554 }
555 deps.CrtBegin = "ndk_crtbegin_so." + version
556 deps.CrtEnd = "ndk_crtend_so." + version
Colin Cross4d9c2d12016-07-29 12:48:20 -0700557 }
558 }
559 deps.WholeStaticLibs = append(deps.WholeStaticLibs, library.Properties.Shared.Whole_static_libs...)
560 deps.StaticLibs = append(deps.StaticLibs, library.Properties.Shared.Static_libs...)
561 deps.SharedLibs = append(deps.SharedLibs, library.Properties.Shared.Shared_libs...)
Colin Crosseefe9a32019-01-22 14:41:08 -0800562
563 deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, library.Properties.Shared.Export_shared_lib_headers...)
564 deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, library.Properties.Shared.Export_static_lib_headers...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700565 }
Jiyong Park52d25bd2017-10-13 09:17:01 +0900566 if ctx.useVndk() {
567 deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, library.baseLinker.Properties.Target.Vendor.Exclude_static_libs)
568 deps.SharedLibs = removeListFromList(deps.SharedLibs, library.baseLinker.Properties.Target.Vendor.Exclude_shared_libs)
569 deps.StaticLibs = removeListFromList(deps.StaticLibs, library.baseLinker.Properties.Target.Vendor.Exclude_static_libs)
570 }
Jiyong Parkf9332f12018-02-01 00:54:12 +0900571 if ctx.inRecovery() {
572 deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, library.baseLinker.Properties.Target.Recovery.Exclude_static_libs)
573 deps.SharedLibs = removeListFromList(deps.SharedLibs, library.baseLinker.Properties.Target.Recovery.Exclude_shared_libs)
574 deps.StaticLibs = removeListFromList(deps.StaticLibs, library.baseLinker.Properties.Target.Recovery.Exclude_static_libs)
575 }
Colin Cross2383f3b2018-02-06 14:40:13 -0800576
Colin Cross2383f3b2018-02-06 14:40:13 -0800577 android.ExtractSourceDeps(ctx, library.Properties.Unexported_symbols_list)
578 android.ExtractSourceDeps(ctx, library.Properties.Force_symbols_not_weak_list)
579 android.ExtractSourceDeps(ctx, library.Properties.Force_symbols_weak_list)
Colin Cross2383f3b2018-02-06 14:40:13 -0800580
Colin Cross4d9c2d12016-07-29 12:48:20 -0700581 return deps
582}
583
Colin Crossb916a382016-07-29 17:28:03 -0700584func (library *libraryDecorator) linkStatic(ctx ModuleContext,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700585 flags Flags, deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700586
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700587 library.objects = deps.WholeStaticLibObjs.Copy()
588 library.objects = library.objects.Append(objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700589
Colin Cross86803cf2018-02-15 14:12:26 -0800590 fileName := ctx.ModuleName() + library.MutatedProperties.VariantName + staticLibraryExtension
591 outputFile := android.PathForModuleOut(ctx, fileName)
Dan Willemsen581341d2017-02-09 16:16:31 -0800592 builderFlags := flagsToBuilderFlags(flags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700593
Dan Willemsen569edc52018-11-19 09:33:29 -0800594 if Bool(library.baseLinker.Properties.Use_version_lib) {
595 if ctx.Host() {
596 versionedOutputFile := outputFile
597 outputFile = android.PathForModuleOut(ctx, "unversioned", fileName)
598 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
599 } else {
600 versionedOutputFile := android.PathForModuleOut(ctx, "versioned", fileName)
601 library.distFile = android.OptionalPathForPath(versionedOutputFile)
602 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
603 }
Colin Cross86803cf2018-02-15 14:12:26 -0800604 }
605
Dan Willemsen581341d2017-02-09 16:16:31 -0800606 TransformObjToStaticLib(ctx, library.objects.objFiles, builderFlags, outputFile, objs.tidyFiles)
607
608 library.coverageOutputFile = TransformCoverageFilesToLib(ctx, library.objects, builderFlags,
Colin Crossa48ab5b2017-02-14 15:28:44 -0800609 ctx.ModuleName()+library.MutatedProperties.VariantName)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700610
611 library.wholeStaticMissingDeps = ctx.GetMissingDependencies()
612
613 ctx.CheckbuildFile(outputFile)
614
615 return outputFile
616}
617
Colin Crossb916a382016-07-29 17:28:03 -0700618func (library *libraryDecorator) linkShared(ctx ModuleContext,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700619 flags Flags, deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700620
621 var linkerDeps android.Paths
Pirama Arumuga Nainarada83ec2017-08-31 23:38:27 -0700622 linkerDeps = append(linkerDeps, flags.LdFlagsDeps...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700623
Colin Cross2383f3b2018-02-06 14:40:13 -0800624 unexportedSymbols := ctx.ExpandOptionalSource(library.Properties.Unexported_symbols_list, "unexported_symbols_list")
625 forceNotWeakSymbols := ctx.ExpandOptionalSource(library.Properties.Force_symbols_not_weak_list, "force_symbols_not_weak_list")
626 forceWeakSymbols := ctx.ExpandOptionalSource(library.Properties.Force_symbols_weak_list, "force_symbols_weak_list")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700627 if !ctx.Darwin() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700628 if unexportedSymbols.Valid() {
629 ctx.PropertyErrorf("unexported_symbols_list", "Only supported on Darwin")
630 }
631 if forceNotWeakSymbols.Valid() {
632 ctx.PropertyErrorf("force_symbols_not_weak_list", "Only supported on Darwin")
633 }
634 if forceWeakSymbols.Valid() {
635 ctx.PropertyErrorf("force_symbols_weak_list", "Only supported on Darwin")
636 }
637 } else {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700638 if unexportedSymbols.Valid() {
639 flags.LdFlags = append(flags.LdFlags, "-Wl,-unexported_symbols_list,"+unexportedSymbols.String())
640 linkerDeps = append(linkerDeps, unexportedSymbols.Path())
641 }
642 if forceNotWeakSymbols.Valid() {
643 flags.LdFlags = append(flags.LdFlags, "-Wl,-force_symbols_not_weak_list,"+forceNotWeakSymbols.String())
644 linkerDeps = append(linkerDeps, forceNotWeakSymbols.Path())
645 }
646 if forceWeakSymbols.Valid() {
647 flags.LdFlags = append(flags.LdFlags, "-Wl,-force_symbols_weak_list,"+forceWeakSymbols.String())
648 linkerDeps = append(linkerDeps, forceWeakSymbols.Path())
649 }
650 }
Jiyong Parkc1e7f482019-01-12 13:39:10 +0900651 if library.buildStubs() {
652 linkerScriptFlags := "-Wl,--version-script," + library.versionScriptPath.String()
653 flags.LdFlags = append(flags.LdFlags, linkerScriptFlags)
654 linkerDeps = append(linkerDeps, library.versionScriptPath)
655 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700656
657 fileName := library.getLibName(ctx) + flags.Toolchain.ShlibSuffix()
658 outputFile := android.PathForModuleOut(ctx, fileName)
659 ret := outputFile
660
661 builderFlags := flagsToBuilderFlags(flags)
662
Colin Crossb496cfd2018-09-10 16:50:05 -0700663 // Optimize out relinking against shared libraries whose interface hasn't changed by
664 // depending on a table of contents file instead of the library itself.
665 tocPath := outputFile.RelPathString()
666 tocPath = pathtools.ReplaceExtension(tocPath, flags.Toolchain.ShlibSuffix()[1:]+".toc")
667 tocFile := android.PathForOutput(ctx, tocPath)
668 library.tocFile = android.OptionalPathForPath(tocFile)
669 TransformSharedObjectToToc(ctx, outputFile, tocFile, builderFlags)
Colin Cross89562dc2016-10-03 17:47:19 -0700670
Colin Cross4d9c2d12016-07-29 12:48:20 -0700671 if library.stripper.needsStrip(ctx) {
Chih-Hung Hsieh30485c92018-06-04 10:37:43 -0700672 // b/80093681, GNU strip/objcopy bug.
673 // Use llvm-{strip,objcopy} when clang lld is used.
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700674 builderFlags.stripUseLlvmStrip = library.baseLinker.useClangLld(ctx)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700675 strippedOutputFile := outputFile
676 outputFile = android.PathForModuleOut(ctx, "unstripped", fileName)
677 library.stripper.strip(ctx, outputFile, strippedOutputFile, builderFlags)
678 }
679
Colin Crossb60190a2018-09-04 16:28:17 -0700680 library.unstrippedOutputFile = outputFile
681
Dan Willemsen569edc52018-11-19 09:33:29 -0800682 if Bool(library.baseLinker.Properties.Use_version_lib) {
683 if ctx.Host() {
684 versionedOutputFile := outputFile
685 outputFile = android.PathForModuleOut(ctx, "unversioned", fileName)
686 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
687 } else {
688 versionedOutputFile := android.PathForModuleOut(ctx, "versioned", fileName)
689 library.distFile = android.OptionalPathForPath(versionedOutputFile)
690
691 if library.stripper.needsStrip(ctx) {
692 out := android.PathForModuleOut(ctx, "versioned-stripped", fileName)
693 library.distFile = android.OptionalPathForPath(out)
694 library.stripper.strip(ctx, versionedOutputFile, out, builderFlags)
695 }
696
697 library.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
698 }
Colin Cross86803cf2018-02-15 14:12:26 -0800699 }
700
Jiyong Park64a44f22019-01-18 14:37:08 +0900701 sharedLibs := deps.EarlySharedLibs
702 sharedLibs = append(sharedLibs, deps.SharedLibs...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700703 sharedLibs = append(sharedLibs, deps.LateSharedLibs...)
704
Jiyong Park64a44f22019-01-18 14:37:08 +0900705 linkerDeps = append(linkerDeps, deps.EarlySharedLibsDeps...)
Colin Cross26c34ed2016-09-30 17:10:16 -0700706 linkerDeps = append(linkerDeps, deps.SharedLibsDeps...)
707 linkerDeps = append(linkerDeps, deps.LateSharedLibsDeps...)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700708 linkerDeps = append(linkerDeps, objs.tidyFiles...)
Colin Cross26c34ed2016-09-30 17:10:16 -0700709
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700710 TransformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700711 deps.StaticLibs, deps.LateStaticLibs, deps.WholeStaticLibs,
712 linkerDeps, deps.CrtBegin, deps.CrtEnd, false, builderFlags, outputFile)
713
Dan Willemsen581341d2017-02-09 16:16:31 -0800714 objs.coverageFiles = append(objs.coverageFiles, deps.StaticLibObjs.coverageFiles...)
715 objs.coverageFiles = append(objs.coverageFiles, deps.WholeStaticLibObjs.coverageFiles...)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800716
717 objs.sAbiDumpFiles = append(objs.sAbiDumpFiles, deps.StaticLibObjs.sAbiDumpFiles...)
718 objs.sAbiDumpFiles = append(objs.sAbiDumpFiles, deps.WholeStaticLibObjs.sAbiDumpFiles...)
719
Dan Willemsen581341d2017-02-09 16:16:31 -0800720 library.coverageOutputFile = TransformCoverageFilesToLib(ctx, objs, builderFlags, library.getLibName(ctx))
Jayant Chowdhary6ab3d842017-06-26 12:52:58 -0700721 library.linkSAbiDumpFiles(ctx, objs, fileName, ret)
Dan Willemsen581341d2017-02-09 16:16:31 -0800722
Colin Cross4d9c2d12016-07-29 12:48:20 -0700723 return ret
724}
725
Logan Chien7eefdc42018-07-11 18:10:41 +0800726func getRefAbiDumpFile(ctx ModuleContext, vndkVersion, fileName string) android.Path {
Logan Chienf4b79c62018-08-02 02:27:02 +0800727 isLlndk := inList(ctx.baseModuleName(), llndkLibraries) || inList(ctx.baseModuleName(), ndkMigratedLibs)
Logan Chien7eefdc42018-07-11 18:10:41 +0800728
729 refAbiDumpTextFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isLlndk, false)
730 refAbiDumpGzipFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isLlndk, true)
731
732 if refAbiDumpTextFile.Valid() {
733 if refAbiDumpGzipFile.Valid() {
734 ctx.ModuleErrorf(
735 "Two reference ABI dump files are found: %q and %q. Please delete the stale one.",
736 refAbiDumpTextFile, refAbiDumpGzipFile)
737 return nil
738 }
739 return refAbiDumpTextFile.Path()
740 }
741 if refAbiDumpGzipFile.Valid() {
742 return UnzipRefDump(ctx, refAbiDumpGzipFile.Path(), fileName)
743 }
744 return nil
745}
746
Jayant Chowdhary6ab3d842017-06-26 12:52:58 -0700747func (library *libraryDecorator) linkSAbiDumpFiles(ctx ModuleContext, objs Objects, fileName string, soFile android.Path) {
Logan Chien2f2b8902018-07-10 15:01:19 +0800748 if len(objs.sAbiDumpFiles) > 0 && ctx.shouldCreateVndkSourceAbiDump() {
Logan Chiena8f51582018-03-21 11:53:48 +0800749 vndkVersion := ctx.DeviceConfig().PlatformVndkVersion()
750 if ver := ctx.DeviceConfig().VndkVersion(); ver != "" && ver != "current" {
Logan Chienf3511742017-10-31 18:04:35 +0800751 vndkVersion = ver
752 }
753
Jayant Chowdharya4fce192017-09-06 13:10:03 -0700754 exportIncludeDirs := library.flagExporter.exportedIncludes(ctx)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800755 var SourceAbiFlags []string
756 for _, dir := range exportIncludeDirs.Strings() {
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700757 SourceAbiFlags = append(SourceAbiFlags, "-I"+dir)
758 }
759 for _, reexportedInclude := range extractExportIncludesFromFlags(library.sabi.Properties.ReexportedIncludeFlags) {
760 SourceAbiFlags = append(SourceAbiFlags, reexportedInclude)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800761 }
762 exportedHeaderFlags := strings.Join(SourceAbiFlags, " ")
Jayant Chowdharydf344d52018-01-17 11:11:42 -0800763 library.sAbiOutputFile = TransformDumpToLinkedDump(ctx, objs.sAbiDumpFiles, soFile, fileName, exportedHeaderFlags)
Logan Chien2f2b8902018-07-10 15:01:19 +0800764
Logan Chien7eefdc42018-07-11 18:10:41 +0800765 refAbiDumpFile := getRefAbiDumpFile(ctx, vndkVersion, fileName)
766 if refAbiDumpFile != nil {
Logan Chienf3511742017-10-31 18:04:35 +0800767 library.sAbiDiff = SourceAbiDiff(ctx, library.sAbiOutputFile.Path(),
Logan Chien7eefdc42018-07-11 18:10:41 +0800768 refAbiDumpFile, fileName, exportedHeaderFlags, ctx.isVndkExt())
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800769 }
770 }
771}
772
Colin Crossb916a382016-07-29 17:28:03 -0700773func (library *libraryDecorator) link(ctx ModuleContext,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700774 flags Flags, deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700775
Colin Crossad59e752017-11-16 14:29:11 -0800776 objs = deps.Objs.Copy().Append(objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700777 var out android.Path
Colin Crossa48ab5b2017-02-14 15:28:44 -0800778 if library.static() || library.header() {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700779 out = library.linkStatic(ctx, flags, deps, objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700780 } else {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700781 out = library.linkShared(ctx, flags, deps, objs)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700782 }
783
784 library.exportIncludes(ctx, "-I")
785 library.reexportFlags(deps.ReexportedFlags)
Dan Willemsen847dcc72016-09-29 12:13:36 -0700786 library.reexportDeps(deps.ReexportedFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700787
Nan Zhang0007d812017-11-07 10:57:05 -0800788 if Bool(library.Properties.Aidl.Export_aidl_headers) {
Dan Willemsene1240db2016-11-03 14:28:51 -0700789 if library.baseCompiler.hasSrcExt(".aidl") {
Colin Cross10d22312017-05-03 11:01:58 -0700790 flags := []string{
Dan Willemsene1240db2016-11-03 14:28:51 -0700791 "-I" + android.PathForModuleGen(ctx, "aidl").String(),
Colin Cross10d22312017-05-03 11:01:58 -0700792 }
793 library.reexportFlags(flags)
794 library.reuseExportedFlags = append(library.reuseExportedFlags, flags...)
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800795 library.reexportDeps(library.baseCompiler.pathDeps) // TODO: restrict to aidl deps
796 library.reuseExportedDeps = append(library.reuseExportedDeps, library.baseCompiler.pathDeps...)
Dan Willemsene1240db2016-11-03 14:28:51 -0700797 }
798 }
799
Nan Zhang0007d812017-11-07 10:57:05 -0800800 if Bool(library.Properties.Proto.Export_proto_headers) {
Dan Willemsene1240db2016-11-03 14:28:51 -0700801 if library.baseCompiler.hasSrcExt(".proto") {
Dan Willemsenab9f4262018-02-14 13:58:34 -0800802 includes := []string{}
803 if flags.ProtoRoot {
804 includes = append(includes, "-I"+android.ProtoSubDir(ctx).String())
Colin Cross10d22312017-05-03 11:01:58 -0700805 }
Dan Willemsenab9f4262018-02-14 13:58:34 -0800806 includes = append(includes, "-I"+android.ProtoDir(ctx).String())
807 library.reexportFlags(includes)
808 library.reuseExportedFlags = append(library.reuseExportedFlags, includes...)
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800809 library.reexportDeps(library.baseCompiler.pathDeps) // TODO: restrict to proto deps
810 library.reuseExportedDeps = append(library.reuseExportedDeps, library.baseCompiler.pathDeps...)
Colin Cross0c461f12016-10-20 16:11:43 -0700811 }
812 }
813
Inseob Kim21f26902018-09-06 00:55:20 +0900814 if library.baseCompiler.hasSrcExt(".sysprop") {
815 flags := []string{
816 "-I" + android.PathForModuleGen(ctx, "sysprop", "include").String(),
817 }
818 library.reexportFlags(flags)
Sundong Ahn5b73f312018-12-19 14:39:29 +0900819 library.reexportDeps(library.baseCompiler.pathDeps)
Inseob Kim21f26902018-09-06 00:55:20 +0900820 library.reuseExportedFlags = append(library.reuseExportedFlags, flags...)
821 }
822
Jiyong Parkda732bd2018-11-02 18:23:15 +0900823 if library.buildStubs() {
824 library.reexportFlags([]string{"-D" + versioningMacroName(ctx.ModuleName()) + "=" + library.stubsVersion()})
825 }
826
Colin Cross4d9c2d12016-07-29 12:48:20 -0700827 return out
828}
829
Colin Crossb916a382016-07-29 17:28:03 -0700830func (library *libraryDecorator) buildStatic() bool {
Colin Cross38b40df2018-04-10 16:14:46 -0700831 return library.MutatedProperties.BuildStatic && BoolDefault(library.Properties.Static.Enabled, true)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700832}
833
Colin Crossb916a382016-07-29 17:28:03 -0700834func (library *libraryDecorator) buildShared() bool {
Colin Cross38b40df2018-04-10 16:14:46 -0700835 return library.MutatedProperties.BuildShared && BoolDefault(library.Properties.Shared.Enabled, true)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700836}
837
Colin Crossb916a382016-07-29 17:28:03 -0700838func (library *libraryDecorator) getWholeStaticMissingDeps() []string {
Colin Crossd2343a32018-04-30 14:50:01 -0700839 return append([]string(nil), library.wholeStaticMissingDeps...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700840}
841
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700842func (library *libraryDecorator) objs() Objects {
843 return library.objects
Colin Cross4d9c2d12016-07-29 12:48:20 -0700844}
845
Colin Crossbbc9f4d2017-05-03 16:24:55 -0700846func (library *libraryDecorator) reuseObjs() (Objects, []string, android.Paths) {
847 return library.reuseObjects, library.reuseExportedFlags, library.reuseExportedDeps
Colin Cross4d9c2d12016-07-29 12:48:20 -0700848}
849
Colin Cross26c34ed2016-09-30 17:10:16 -0700850func (library *libraryDecorator) toc() android.OptionalPath {
851 return library.tocFile
852}
853
Colin Crossb916a382016-07-29 17:28:03 -0700854func (library *libraryDecorator) install(ctx ModuleContext, file android.Path) {
Colin Crossc43ae772017-04-14 15:42:53 -0700855 if library.shared() {
Justin Yun8fe12122017-12-07 17:18:15 +0900856 if ctx.Device() && ctx.useVndk() {
857 if ctx.isVndkSp() {
858 library.baseInstaller.subDir = "vndk-sp"
859 } else if ctx.isVndk() {
860 library.baseInstaller.subDir = "vndk"
861 }
Logan Chienf3511742017-10-31 18:04:35 +0800862
863 // Append a version to vndk or vndk-sp directories on the system partition.
864 if ctx.isVndk() && !ctx.isVndkExt() {
865 vndkVersion := ctx.DeviceConfig().PlatformVndkVersion()
866 if vndkVersion != "current" && vndkVersion != "" {
867 library.baseInstaller.subDir += "-" + vndkVersion
868 }
Justin Yun8effde42017-06-23 19:24:43 +0900869 }
870 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700871 library.baseInstaller.install(ctx, file)
872 }
Dan Albertf563d252017-10-13 00:29:00 -0700873
Dan Albert281f22b2017-12-13 15:03:47 -0800874 if Bool(library.Properties.Static_ndk_lib) && library.static() &&
Jiyong Parkf9332f12018-02-01 00:54:12 +0900875 !ctx.useVndk() && !ctx.inRecovery() && ctx.Device() &&
Jiyong Park7ed9de32018-10-15 22:25:07 +0900876 library.baseLinker.sanitize.isUnsanitizedVariant() &&
877 !library.buildStubs() {
Dan Albertf563d252017-10-13 00:29:00 -0700878 installPath := getNdkSysrootBase(ctx).Join(
Dan Albertea4b7b92018-04-25 16:05:30 -0700879 ctx, "usr/lib", config.NDKTriple(ctx.toolchain()), file.Base())
Dan Albertf563d252017-10-13 00:29:00 -0700880
881 ctx.ModuleBuild(pctx, android.ModuleBuildParams{
882 Rule: android.Cp,
883 Description: "install " + installPath.Base(),
884 Output: installPath,
885 Input: file,
886 })
887
Colin Cross0875c522017-11-28 17:34:01 -0800888 library.ndkSysrootPath = installPath
Dan Albertf563d252017-10-13 00:29:00 -0700889 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700890}
891
Colin Crossb916a382016-07-29 17:28:03 -0700892func (library *libraryDecorator) static() bool {
Colin Crossa48ab5b2017-02-14 15:28:44 -0800893 return library.MutatedProperties.VariantIsStatic
Colin Cross4d9c2d12016-07-29 12:48:20 -0700894}
895
Colin Crossa48ab5b2017-02-14 15:28:44 -0800896func (library *libraryDecorator) shared() bool {
897 return library.MutatedProperties.VariantIsShared
898}
899
900func (library *libraryDecorator) header() bool {
901 return !library.static() && !library.shared()
902}
903
904func (library *libraryDecorator) setStatic() {
905 library.MutatedProperties.VariantIsStatic = true
906 library.MutatedProperties.VariantIsShared = false
907}
908
909func (library *libraryDecorator) setShared() {
910 library.MutatedProperties.VariantIsStatic = false
911 library.MutatedProperties.VariantIsShared = true
Colin Crossb916a382016-07-29 17:28:03 -0700912}
913
Colin Crossab3b7322016-12-09 14:46:15 -0800914func (library *libraryDecorator) BuildOnlyStatic() {
Colin Crossa48ab5b2017-02-14 15:28:44 -0800915 library.MutatedProperties.BuildShared = false
Colin Crossab3b7322016-12-09 14:46:15 -0800916}
917
918func (library *libraryDecorator) BuildOnlyShared() {
Colin Crossa48ab5b2017-02-14 15:28:44 -0800919 library.MutatedProperties.BuildStatic = false
Colin Crossab3b7322016-12-09 14:46:15 -0800920}
921
Colin Cross5950f382016-12-13 12:50:57 -0800922func (library *libraryDecorator) HeaderOnly() {
Colin Crossa48ab5b2017-02-14 15:28:44 -0800923 library.MutatedProperties.BuildShared = false
924 library.MutatedProperties.BuildStatic = false
Colin Cross5950f382016-12-13 12:50:57 -0800925}
926
Jiyong Park7ed9de32018-10-15 22:25:07 +0900927func (library *libraryDecorator) buildStubs() bool {
928 return library.MutatedProperties.BuildStubs
929}
930
931func (library *libraryDecorator) stubsVersion() string {
932 return library.MutatedProperties.StubsVersion
933}
934
Jiyong Parkda732bd2018-11-02 18:23:15 +0900935func versioningMacroNamesList(config android.Config) *map[string]string {
936 return config.Once("versioningMacroNamesList", func() interface{} {
937 m := make(map[string]string)
938 return &m
939 }).(*map[string]string)
940}
941
942// alphanumeric and _ characters are preserved.
943// other characters are all converted to _
944var charsNotForMacro = regexp.MustCompile("[^a-zA-Z0-9_]+")
945
946func versioningMacroName(moduleName string) string {
947 macroName := charsNotForMacro.ReplaceAllString(moduleName, "_")
948 macroName = strings.ToUpper(moduleName)
949 return "__" + macroName + "_API__"
950}
951
Colin Crossab3b7322016-12-09 14:46:15 -0800952func NewLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700953 module := newModule(hod, android.MultilibBoth)
954
Colin Crossb916a382016-07-29 17:28:03 -0700955 library := &libraryDecorator{
Colin Crossa48ab5b2017-02-14 15:28:44 -0800956 MutatedProperties: LibraryMutatedProperties{
Colin Crossab3b7322016-12-09 14:46:15 -0800957 BuildShared: true,
958 BuildStatic: true,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700959 },
Colin Crossb916a382016-07-29 17:28:03 -0700960 baseCompiler: NewBaseCompiler(),
Dan Albert61f32122018-07-26 14:00:24 -0700961 baseLinker: NewBaseLinker(module.sanitize),
Colin Crossb916a382016-07-29 17:28:03 -0700962 baseInstaller: NewBaseInstaller("lib", "lib64", InstallInSystem),
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800963 sabi: module.sabi,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700964 }
965
Colin Crossb916a382016-07-29 17:28:03 -0700966 module.compiler = library
967 module.linker = library
968 module.installer = library
969
970 return module, library
971}
972
Colin Cross10d22312017-05-03 11:01:58 -0700973// connects a shared library to a static library in order to reuse its .o files to avoid
974// compiling source files twice.
975func reuseStaticLibrary(mctx android.BottomUpMutatorContext, static, shared *Module) {
976 if staticCompiler, ok := static.compiler.(*libraryDecorator); ok {
977 sharedCompiler := shared.compiler.(*libraryDecorator)
Dan Willemsen3a26eef2018-12-03 15:25:46 -0800978
979 // Check libraries in addition to cflags, since libraries may be exporting different
980 // include directories.
Colin Cross10d22312017-05-03 11:01:58 -0700981 if len(staticCompiler.Properties.Static.Cflags) == 0 &&
Dan Willemsen3a26eef2018-12-03 15:25:46 -0800982 len(sharedCompiler.Properties.Shared.Cflags) == 0 &&
983 len(staticCompiler.Properties.Static.Whole_static_libs) == 0 &&
984 len(sharedCompiler.Properties.Shared.Whole_static_libs) == 0 &&
985 len(staticCompiler.Properties.Static.Static_libs) == 0 &&
986 len(sharedCompiler.Properties.Shared.Static_libs) == 0 &&
987 len(staticCompiler.Properties.Static.Shared_libs) == 0 &&
988 len(sharedCompiler.Properties.Shared.Shared_libs) == 0 &&
989 staticCompiler.Properties.Static.System_shared_libs == nil &&
990 sharedCompiler.Properties.Shared.System_shared_libs == nil {
Colin Cross10d22312017-05-03 11:01:58 -0700991
992 mctx.AddInterVariantDependency(reuseObjTag, shared, static)
993 sharedCompiler.baseCompiler.Properties.OriginalSrcs =
994 sharedCompiler.baseCompiler.Properties.Srcs
995 sharedCompiler.baseCompiler.Properties.Srcs = nil
996 sharedCompiler.baseCompiler.Properties.Generated_sources = nil
997 }
998 }
999}
1000
Colin Crosse40b4ea2018-10-02 22:25:58 -07001001func LinkageMutator(mctx android.BottomUpMutatorContext) {
Colin Crossb916a382016-07-29 17:28:03 -07001002 if m, ok := mctx.Module().(*Module); ok && m.linker != nil {
1003 if library, ok := m.linker.(libraryInterface); ok {
1004 var modules []blueprint.Module
1005 if library.buildStatic() && library.buildShared() {
1006 modules = mctx.CreateLocalVariations("static", "shared")
1007 static := modules[0].(*Module)
1008 shared := modules[1].(*Module)
1009
Colin Crossa48ab5b2017-02-14 15:28:44 -08001010 static.linker.(libraryInterface).setStatic()
1011 shared.linker.(libraryInterface).setShared()
Colin Crossb916a382016-07-29 17:28:03 -07001012
Colin Cross10d22312017-05-03 11:01:58 -07001013 reuseStaticLibrary(mctx, static, shared)
1014
Colin Crossb916a382016-07-29 17:28:03 -07001015 } else if library.buildStatic() {
1016 modules = mctx.CreateLocalVariations("static")
Colin Crossa48ab5b2017-02-14 15:28:44 -08001017 modules[0].(*Module).linker.(libraryInterface).setStatic()
Colin Crossb916a382016-07-29 17:28:03 -07001018 } else if library.buildShared() {
1019 modules = mctx.CreateLocalVariations("shared")
Colin Crossa48ab5b2017-02-14 15:28:44 -08001020 modules[0].(*Module).linker.(libraryInterface).setShared()
Colin Crossb916a382016-07-29 17:28:03 -07001021 }
1022 }
1023 }
Colin Cross4d9c2d12016-07-29 12:48:20 -07001024}
Jiyong Park7ed9de32018-10-15 22:25:07 +09001025
Jiyong Park25fc6a92018-11-18 18:02:45 +09001026// maps a module name to the list of stubs versions available for the module
1027func stubsVersionsFor(config android.Config) map[string][]string {
1028 return config.Once("stubVersions", func() interface{} {
1029 return make(map[string][]string)
1030 }).(map[string][]string)
1031}
1032
1033var stubsVersionsLock sync.Mutex
1034
1035func latestStubsVersionFor(config android.Config, name string) string {
1036 versions, ok := stubsVersionsFor(config)[name]
1037 if ok && len(versions) > 0 {
1038 // the versions are alreay sorted in ascending order
1039 return versions[len(versions)-1]
1040 }
1041 return ""
1042}
1043
Jiyong Park7ed9de32018-10-15 22:25:07 +09001044// Version mutator splits a module into the mandatory non-stubs variant
Jiyong Park25fc6a92018-11-18 18:02:45 +09001045// (which is unnamed) and zero or more stubs variants.
1046func VersionMutator(mctx android.BottomUpMutatorContext) {
Jiyong Park7ed9de32018-10-15 22:25:07 +09001047 if m, ok := mctx.Module().(*Module); ok && !m.inRecovery() && m.linker != nil {
Jiyong Park25fc6a92018-11-18 18:02:45 +09001048 if library, ok := m.linker.(*libraryDecorator); ok && library.buildShared() &&
1049 len(library.Properties.Stubs.Versions) > 0 {
1050 versions := []string{}
Jiyong Park7ed9de32018-10-15 22:25:07 +09001051 for _, v := range library.Properties.Stubs.Versions {
Jiyong Park25fc6a92018-11-18 18:02:45 +09001052 if _, err := strconv.Atoi(v); err != nil {
1053 mctx.PropertyErrorf("versions", "%q is not a number", v)
1054 }
Jiyong Park7ed9de32018-10-15 22:25:07 +09001055 versions = append(versions, v)
1056 }
Jiyong Park25fc6a92018-11-18 18:02:45 +09001057 sort.Slice(versions, func(i, j int) bool {
1058 left, _ := strconv.Atoi(versions[i])
1059 right, _ := strconv.Atoi(versions[j])
1060 return left < right
1061 })
1062
1063 // save the list of versions for later use
1064 copiedVersions := make([]string, len(versions))
1065 copy(copiedVersions, versions)
1066 stubsVersionsLock.Lock()
1067 defer stubsVersionsLock.Unlock()
1068 stubsVersionsFor(mctx.Config())[mctx.ModuleName()] = copiedVersions
1069
1070 // "" is for the non-stubs variant
Jiyong Park67883b32019-01-03 21:35:58 +09001071 versions = append([]string{""}, versions...)
Jiyong Park25fc6a92018-11-18 18:02:45 +09001072
Jiyong Park7ed9de32018-10-15 22:25:07 +09001073 modules := mctx.CreateVariations(versions...)
1074 for i, m := range modules {
1075 l := m.(*Module).linker.(*libraryDecorator)
Jiyong Park25fc6a92018-11-18 18:02:45 +09001076 if versions[i] != "" {
1077 l.MutatedProperties.BuildStubs = true
1078 l.MutatedProperties.StubsVersion = versions[i]
1079 m.(*Module).Properties.HideFromMake = true
Jiyong Park090d9df2018-12-11 02:47:16 +09001080 m.(*Module).sanitize = nil
1081 m.(*Module).stl = nil
Jiyong Park127d5652018-12-12 10:26:20 +09001082 m.(*Module).Properties.PreventInstall = true
Jiyong Park7ed9de32018-10-15 22:25:07 +09001083 }
Jiyong Park7ed9de32018-10-15 22:25:07 +09001084 }
1085 } else {
1086 mctx.CreateVariations("")
1087 }
1088 return
1089 }
1090 if genrule, ok := mctx.Module().(*genrule.Module); ok {
1091 if props, ok := genrule.Extra.(*GenruleExtraProperties); ok && !props.InRecovery {
1092 mctx.CreateVariations("")
1093 return
1094 }
1095 }
1096}