Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 1 | // 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 | |
| 15 | package cc |
| 16 | |
| 17 | import ( |
Jiyong Park | da732bd | 2018-11-02 18:23:15 +0900 | [diff] [blame] | 18 | "regexp" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 19 | "strings" |
Jiyong Park | da732bd | 2018-11-02 18:23:15 +0900 | [diff] [blame] | 20 | "sync" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 21 | |
| 22 | "github.com/google/blueprint" |
Colin Cross | 26c34ed | 2016-09-30 17:10:16 -0700 | [diff] [blame] | 23 | "github.com/google/blueprint/pathtools" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 24 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 25 | "android/soong/android" |
Dan Albert | ea4b7b9 | 2018-04-25 16:05:30 -0700 | [diff] [blame] | 26 | "android/soong/cc/config" |
Jiyong Park | 7ed9de3 | 2018-10-15 22:25:07 +0900 | [diff] [blame] | 27 | "android/soong/genrule" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 28 | ) |
| 29 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 30 | type LibraryProperties struct { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 31 | Static struct { |
Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 32 | Srcs []string `android:"arch_variant"` |
| 33 | Cflags []string `android:"arch_variant"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 34 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 35 | Enabled *bool `android:"arch_variant"` |
| 36 | Whole_static_libs []string `android:"arch_variant"` |
| 37 | Static_libs []string `android:"arch_variant"` |
| 38 | Shared_libs []string `android:"arch_variant"` |
| 39 | } `android:"arch_variant"` |
| 40 | Shared struct { |
Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 41 | Srcs []string `android:"arch_variant"` |
| 42 | Cflags []string `android:"arch_variant"` |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 43 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 44 | Enabled *bool `android:"arch_variant"` |
| 45 | Whole_static_libs []string `android:"arch_variant"` |
| 46 | Static_libs []string `android:"arch_variant"` |
| 47 | Shared_libs []string `android:"arch_variant"` |
| 48 | } `android:"arch_variant"` |
| 49 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 50 | // 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 Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 60 | Aidl struct { |
| 61 | // export headers generated from .aidl sources |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 62 | Export_aidl_headers *bool |
Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Colin Cross | 0c461f1 | 2016-10-20 16:11:43 -0700 | [diff] [blame] | 65 | Proto struct { |
| 66 | // export headers generated from .proto sources |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 67 | Export_proto_headers *bool |
Colin Cross | 0c461f1 | 2016-10-20 16:11:43 -0700 | [diff] [blame] | 68 | } |
Dan Albert | f563d25 | 2017-10-13 00:29:00 -0700 | [diff] [blame] | 69 | |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 70 | Static_ndk_lib *bool |
Jiyong Park | 7ed9de3 | 2018-10-15 22:25:07 +0900 | [diff] [blame] | 71 | |
| 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 | } |
dimitry | d95964a | 2018-11-07 13:43:34 +0100 | [diff] [blame] | 80 | |
| 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 Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 90 | } |
Colin Cross | 0c461f1 | 2016-10-20 16:11:43 -0700 | [diff] [blame] | 91 | |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 92 | type LibraryMutatedProperties struct { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 93 | VariantName string `blueprint:"mutated"` |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 94 | |
| 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 Park | 7ed9de3 | 2018-10-15 22:25:07 +0900 | [diff] [blame] | 103 | |
| 104 | // This variant is a stubs lib |
| 105 | BuildStubs bool `blueprint:"mutated"` |
| 106 | // Version of the stubs lib |
| 107 | StubsVersion string `blueprint:"mutated"` |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | type FlagExporterProperties struct { |
| 111 | // list of directories relative to the Blueprints file that will |
Dan Willemsen | 273af7f | 2016-11-03 15:53:42 -0700 | [diff] [blame] | 112 | // be added to the include path (using -I) for this module and any module that links |
Colin Cross | 5d19560 | 2017-10-17 16:15:50 -0700 | [diff] [blame] | 113 | // against this module. Directories listed in export_include_dirs do not need to be |
| 114 | // listed in local_include_dirs. |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 115 | Export_include_dirs []string `android:"arch_variant"` |
Dan Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 116 | |
| 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 Moreland | b21df8f | 2018-01-05 14:42:54 -0800 | [diff] [blame] | 123 | Override_export_include_dirs []string |
Dan Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 124 | } |
| 125 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | func init() { |
Steven Moreland | f9e6216 | 2017-11-02 17:00:50 -0700 | [diff] [blame] | 129 | 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 Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | // Module factory for combined static + shared libraries, device by default but with possible host |
| 138 | // support |
Steven Moreland | f9e6216 | 2017-11-02 17:00:50 -0700 | [diff] [blame] | 139 | func LibraryFactory() android.Module { |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 140 | module, _ := NewLibrary(android.HostAndDeviceSupported) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 141 | return module.Init() |
| 142 | } |
| 143 | |
| 144 | // Module factory for static libraries |
Steven Moreland | f9e6216 | 2017-11-02 17:00:50 -0700 | [diff] [blame] | 145 | func LibraryStaticFactory() android.Module { |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 146 | module, library := NewLibrary(android.HostAndDeviceSupported) |
| 147 | library.BuildOnlyStatic() |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 148 | return module.Init() |
| 149 | } |
| 150 | |
| 151 | // Module factory for shared libraries |
Steven Moreland | f9e6216 | 2017-11-02 17:00:50 -0700 | [diff] [blame] | 152 | func LibrarySharedFactory() android.Module { |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 153 | module, library := NewLibrary(android.HostAndDeviceSupported) |
| 154 | library.BuildOnlyShared() |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 155 | return module.Init() |
| 156 | } |
| 157 | |
| 158 | // Module factory for host static libraries |
Steven Moreland | f9e6216 | 2017-11-02 17:00:50 -0700 | [diff] [blame] | 159 | func LibraryHostStaticFactory() android.Module { |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 160 | module, library := NewLibrary(android.HostSupported) |
| 161 | library.BuildOnlyStatic() |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 162 | return module.Init() |
| 163 | } |
| 164 | |
| 165 | // Module factory for host shared libraries |
Steven Moreland | f9e6216 | 2017-11-02 17:00:50 -0700 | [diff] [blame] | 166 | func LibraryHostSharedFactory() android.Module { |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 167 | module, library := NewLibrary(android.HostSupported) |
| 168 | library.BuildOnlyShared() |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 169 | return module.Init() |
| 170 | } |
| 171 | |
Colin Cross | 5950f38 | 2016-12-13 12:50:57 -0800 | [diff] [blame] | 172 | // Module factory for header-only libraries |
Steven Moreland | f9e6216 | 2017-11-02 17:00:50 -0700 | [diff] [blame] | 173 | func LibraryHeaderFactory() android.Module { |
Colin Cross | 5950f38 | 2016-12-13 12:50:57 -0800 | [diff] [blame] | 174 | module, library := NewLibrary(android.HostAndDeviceSupported) |
| 175 | library.HeaderOnly() |
| 176 | return module.Init() |
| 177 | } |
| 178 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 179 | type flagExporter struct { |
| 180 | Properties FlagExporterProperties |
| 181 | |
Dan Willemsen | 847dcc7 | 2016-09-29 12:13:36 -0700 | [diff] [blame] | 182 | flags []string |
| 183 | flagsDeps android.Paths |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 184 | } |
| 185 | |
Dan Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 186 | func (f *flagExporter) exportedIncludes(ctx ModuleContext) android.Paths { |
Steven Moreland | b21df8f | 2018-01-05 14:42:54 -0800 | [diff] [blame] | 187 | 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 Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 189 | } else { |
| 190 | return android.PathsForModuleSrc(ctx, f.Properties.Export_include_dirs) |
| 191 | } |
| 192 | } |
| 193 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 194 | func (f *flagExporter) exportIncludes(ctx ModuleContext, inc string) { |
Dan Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 195 | includeDirs := f.exportedIncludes(ctx) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 196 | for _, dir := range includeDirs.Strings() { |
| 197 | f.flags = append(f.flags, inc+dir) |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | func (f *flagExporter) reexportFlags(flags []string) { |
| 202 | f.flags = append(f.flags, flags...) |
| 203 | } |
| 204 | |
Dan Willemsen | 847dcc7 | 2016-09-29 12:13:36 -0700 | [diff] [blame] | 205 | func (f *flagExporter) reexportDeps(deps android.Paths) { |
| 206 | f.flagsDeps = append(f.flagsDeps, deps...) |
| 207 | } |
| 208 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 209 | func (f *flagExporter) exportedFlags() []string { |
| 210 | return f.flags |
| 211 | } |
| 212 | |
Dan Willemsen | 847dcc7 | 2016-09-29 12:13:36 -0700 | [diff] [blame] | 213 | func (f *flagExporter) exportedFlagsDeps() android.Paths { |
| 214 | return f.flagsDeps |
| 215 | } |
| 216 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 217 | type exportedFlagsProducer interface { |
| 218 | exportedFlags() []string |
Dan Willemsen | 847dcc7 | 2016-09-29 12:13:36 -0700 | [diff] [blame] | 219 | exportedFlagsDeps() android.Paths |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | var _ exportedFlagsProducer = (*flagExporter)(nil) |
| 223 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 224 | // libraryDecorator wraps baseCompiler, baseLinker and baseInstaller to provide library-specific |
| 225 | // functionality: static vs. shared linkage, reusing object files for shared libraries |
| 226 | type libraryDecorator struct { |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 227 | Properties LibraryProperties |
| 228 | MutatedProperties LibraryMutatedProperties |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 229 | |
| 230 | // For reusing static library objects for shared library |
Colin Cross | 10d2231 | 2017-05-03 11:01:58 -0700 | [diff] [blame] | 231 | reuseObjects Objects |
| 232 | reuseExportedFlags []string |
Colin Cross | bbc9f4d | 2017-05-03 16:24:55 -0700 | [diff] [blame] | 233 | reuseExportedDeps android.Paths |
Colin Cross | 10d2231 | 2017-05-03 11:01:58 -0700 | [diff] [blame] | 234 | |
Colin Cross | 26c34ed | 2016-09-30 17:10:16 -0700 | [diff] [blame] | 235 | // table-of-contents file to optimize out relinking when possible |
| 236 | tocFile android.OptionalPath |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 237 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 238 | flagExporter |
| 239 | stripper |
| 240 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 241 | // 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 Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 246 | objects Objects |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 247 | |
| 248 | // Uses the module's name if empty, but can be overridden. Does not include |
| 249 | // shlib suffix. |
| 250 | libName string |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 251 | |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 252 | sabi *sabi |
| 253 | |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 254 | // Output archive of gcno coverage information files |
| 255 | coverageOutputFile android.OptionalPath |
| 256 | |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 257 | // linked Source Abi Dump |
| 258 | sAbiOutputFile android.OptionalPath |
| 259 | |
| 260 | // Source Abi Diff |
| 261 | sAbiDiff android.OptionalPath |
| 262 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 263 | // 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 Cross | b60190a | 2018-09-04 16:28:17 -0700 | [diff] [blame] | 267 | // Location of the linked, unstripped library for shared libraries |
| 268 | unstrippedOutputFile android.Path |
| 269 | |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame^] | 270 | // Location of the file that should be copied to dist dir when requested |
| 271 | distFile android.OptionalPath |
| 272 | |
Jiyong Park | 7ed9de3 | 2018-10-15 22:25:07 +0900 | [diff] [blame] | 273 | versionScriptPath android.ModuleGenPath |
| 274 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 275 | // Decorated interafaces |
| 276 | *baseCompiler |
| 277 | *baseLinker |
| 278 | *baseInstaller |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 279 | } |
| 280 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 281 | func (library *libraryDecorator) linkerProps() []interface{} { |
| 282 | var props []interface{} |
| 283 | props = append(props, library.baseLinker.linkerProps()...) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 284 | return append(props, |
| 285 | &library.Properties, |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 286 | &library.MutatedProperties, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 287 | &library.flagExporter.Properties, |
Colin Cross | 22f3795 | 2018-09-05 10:43:13 -0700 | [diff] [blame] | 288 | &library.stripper.StripProperties) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 289 | } |
| 290 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 291 | func (library *libraryDecorator) linkerFlags(ctx ModuleContext, flags Flags) Flags { |
Colin Cross | 42742b8 | 2016-08-01 13:20:05 -0700 | [diff] [blame] | 292 | flags = library.baseLinker.linkerFlags(ctx, flags) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 293 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 294 | // 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 Cross | 3edeee1 | 2017-04-04 12:59:48 -0700 | [diff] [blame] | 297 | if !ctx.Windows() { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 298 | flags.CFlags = append(flags.CFlags, "-fPIC") |
| 299 | } |
| 300 | |
| 301 | if library.static() { |
| 302 | flags.CFlags = append(flags.CFlags, library.Properties.Static.Cflags...) |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 303 | } else if library.shared() { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 304 | flags.CFlags = append(flags.CFlags, library.Properties.Shared.Cflags...) |
| 305 | } |
| 306 | |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 307 | if library.shared() { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 308 | libName := library.getLibName(ctx) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 309 | var f []string |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 310 | if ctx.toolchain().Bionic() { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 311 | 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 Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 321 | "-install_name @rpath/"+libName+flags.Toolchain.ShlibSuffix(), |
| 322 | ) |
Colin Cross | 7863cf5 | 2016-10-20 10:47:21 -0700 | [diff] [blame] | 323 | if ctx.Arch().ArchType == android.X86 { |
| 324 | f = append(f, |
| 325 | "-read_only_relocs suppress", |
| 326 | ) |
| 327 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 328 | } else { |
| 329 | f = append(f, |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 330 | "-shared", |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 331 | "-Wl,-soname,"+libName+flags.Toolchain.ShlibSuffix()) |
| 332 | } |
| 333 | |
| 334 | flags.LdFlags = append(f, flags.LdFlags...) |
| 335 | } |
| 336 | |
| 337 | return flags |
| 338 | } |
| 339 | |
Colin Cross | f18e110 | 2017-11-16 14:33:08 -0800 | [diff] [blame] | 340 | func (library *libraryDecorator) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags { |
Dan Willemsen | 4416e5d | 2017-04-06 12:43:22 -0700 | [diff] [blame] | 341 | exportIncludeDirs := library.flagExporter.exportedIncludes(ctx) |
Dan Willemsen | 273af7f | 2016-11-03 15:53:42 -0700 | [diff] [blame] | 342 | if len(exportIncludeDirs) > 0 { |
Colin Cross | dad8c95 | 2017-04-26 14:55:27 -0700 | [diff] [blame] | 343 | f := includeDirsToFlags(exportIncludeDirs) |
| 344 | flags.GlobalFlags = append(flags.GlobalFlags, f) |
| 345 | flags.YasmFlags = append(flags.YasmFlags, f) |
Dan Willemsen | 273af7f | 2016-11-03 15:53:42 -0700 | [diff] [blame] | 346 | } |
| 347 | |
Jiyong Park | 7ed9de3 | 2018-10-15 22:25:07 +0900 | [diff] [blame] | 348 | flags = library.baseCompiler.compilerFlags(ctx, flags, deps) |
| 349 | if library.buildStubs() { |
| 350 | flags = addStubLibraryCompilerFlags(flags) |
| 351 | } |
| 352 | return flags |
Dan Willemsen | 273af7f | 2016-11-03 15:53:42 -0700 | [diff] [blame] | 353 | } |
| 354 | |
Jayant Chowdhary | 715cac3 | 2017-04-20 06:53:59 -0700 | [diff] [blame] | 355 | func extractExportIncludesFromFlags(flags []string) []string { |
| 356 | // This method is used in the generation of rules which produce |
| 357 | // abi-dumps for source files. Exported headers are needed to infer the |
| 358 | // abi exported by a library and filter out the rest of the abi dumped |
| 359 | // from a source. We extract the include flags exported by a library. |
| 360 | // This includes the flags exported which are re-exported from static |
| 361 | // library dependencies, exported header library dependencies and |
Jayant Chowdhary | af6eb71 | 2017-08-23 16:08:29 -0700 | [diff] [blame] | 362 | // generated header dependencies. -isystem headers are not included |
Jayant Chowdhary | 715cac3 | 2017-04-20 06:53:59 -0700 | [diff] [blame] | 363 | // since for bionic libraries, abi-filtering is taken care of by version |
| 364 | // scripts. |
| 365 | var exportedIncludes []string |
| 366 | for _, flag := range flags { |
| 367 | if strings.HasPrefix(flag, "-I") { |
| 368 | exportedIncludes = append(exportedIncludes, flag) |
| 369 | } |
| 370 | } |
| 371 | return exportedIncludes |
| 372 | } |
| 373 | |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 374 | func (library *libraryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects { |
Jiyong Park | 7ed9de3 | 2018-10-15 22:25:07 +0900 | [diff] [blame] | 375 | if library.buildStubs() { |
| 376 | objs, versionScript := compileStubLibrary(ctx, flags, String(library.Properties.Stubs.Symbol_file), library.MutatedProperties.StubsVersion, "") |
| 377 | library.versionScriptPath = versionScript |
| 378 | return objs |
| 379 | } |
| 380 | |
Colin Cross | 5950f38 | 2016-12-13 12:50:57 -0800 | [diff] [blame] | 381 | if !library.buildShared() && !library.buildStatic() { |
| 382 | if len(library.baseCompiler.Properties.Srcs) > 0 { |
| 383 | ctx.PropertyErrorf("srcs", "cc_library_headers must not have any srcs") |
| 384 | } |
| 385 | if len(library.Properties.Static.Srcs) > 0 { |
| 386 | ctx.PropertyErrorf("static.srcs", "cc_library_headers must not have any srcs") |
| 387 | } |
| 388 | if len(library.Properties.Shared.Srcs) > 0 { |
| 389 | ctx.PropertyErrorf("shared.srcs", "cc_library_headers must not have any srcs") |
| 390 | } |
| 391 | return Objects{} |
| 392 | } |
Logan Chien | 2f2b890 | 2018-07-10 15:01:19 +0800 | [diff] [blame] | 393 | if ctx.shouldCreateVndkSourceAbiDump() || library.sabi.Properties.CreateSAbiDumps { |
Jayant Chowdhary | a4fce19 | 2017-09-06 13:10:03 -0700 | [diff] [blame] | 394 | exportIncludeDirs := library.flagExporter.exportedIncludes(ctx) |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 395 | var SourceAbiFlags []string |
| 396 | for _, dir := range exportIncludeDirs.Strings() { |
Jayant Chowdhary | 715cac3 | 2017-04-20 06:53:59 -0700 | [diff] [blame] | 397 | SourceAbiFlags = append(SourceAbiFlags, "-I"+dir) |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 398 | } |
Jayant Chowdhary | 715cac3 | 2017-04-20 06:53:59 -0700 | [diff] [blame] | 399 | for _, reexportedInclude := range extractExportIncludesFromFlags(library.sabi.Properties.ReexportedIncludeFlags) { |
| 400 | SourceAbiFlags = append(SourceAbiFlags, reexportedInclude) |
| 401 | } |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 402 | flags.SAbiFlags = SourceAbiFlags |
| 403 | total_length := len(library.baseCompiler.Properties.Srcs) + len(deps.GeneratedSources) + len(library.Properties.Shared.Srcs) + |
| 404 | len(library.Properties.Static.Srcs) |
| 405 | if total_length > 0 { |
| 406 | flags.SAbiDump = true |
| 407 | } |
| 408 | } |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 409 | objs := library.baseCompiler.compile(ctx, flags, deps) |
| 410 | library.reuseObjects = objs |
Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 411 | buildFlags := flagsToBuilderFlags(flags) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 412 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 413 | if library.static() { |
Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 414 | srcs := android.PathsForModuleSrc(ctx, library.Properties.Static.Srcs) |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 415 | objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceStaticLibrary, |
Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 416 | srcs, library.baseCompiler.pathDeps, library.baseCompiler.cFlagsDeps)) |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 417 | } else if library.shared() { |
Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 418 | srcs := android.PathsForModuleSrc(ctx, library.Properties.Shared.Srcs) |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 419 | objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceSharedLibrary, |
Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 420 | srcs, library.baseCompiler.pathDeps, library.baseCompiler.cFlagsDeps)) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 421 | } |
| 422 | |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 423 | return objs |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | type libraryInterface interface { |
| 427 | getWholeStaticMissingDeps() []string |
| 428 | static() bool |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 429 | objs() Objects |
Colin Cross | bbc9f4d | 2017-05-03 16:24:55 -0700 | [diff] [blame] | 430 | reuseObjs() (Objects, []string, android.Paths) |
Colin Cross | 26c34ed | 2016-09-30 17:10:16 -0700 | [diff] [blame] | 431 | toc() android.OptionalPath |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 432 | |
| 433 | // Returns true if the build options for the module have selected a static or shared build |
| 434 | buildStatic() bool |
| 435 | buildShared() bool |
| 436 | |
| 437 | // Sets whether a specific variant is static or shared |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 438 | setStatic() |
| 439 | setShared() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | func (library *libraryDecorator) getLibName(ctx ModuleContext) string { |
| 443 | name := library.libName |
| 444 | if name == "" { |
dimitry | d95964a | 2018-11-07 13:43:34 +0100 | [diff] [blame] | 445 | name = String(library.Properties.Stem) |
| 446 | if name == "" { |
| 447 | name = ctx.baseModuleName() |
| 448 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 449 | } |
| 450 | |
Logan Chien | f351174 | 2017-10-31 18:04:35 +0800 | [diff] [blame] | 451 | if ctx.isVndkExt() { |
| 452 | name = ctx.getVndkExtendsModuleName() |
| 453 | } |
| 454 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 455 | if ctx.Host() && Bool(library.Properties.Unique_host_soname) { |
| 456 | if !strings.HasSuffix(name, "-host") { |
| 457 | name = name + "-host" |
| 458 | } |
| 459 | } |
| 460 | |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 461 | return name + library.MutatedProperties.VariantName |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 462 | } |
| 463 | |
Jiyong Park | da732bd | 2018-11-02 18:23:15 +0900 | [diff] [blame] | 464 | var versioningMacroNamesListMutex sync.Mutex |
| 465 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 466 | func (library *libraryDecorator) linkerInit(ctx BaseModuleContext) { |
| 467 | location := InstallInSystem |
Dan Albert | 61f3212 | 2018-07-26 14:00:24 -0700 | [diff] [blame] | 468 | if library.baseLinker.sanitize.inSanitizerDir() { |
Vishwath Mohan | 1dd8839 | 2017-03-29 22:00:18 -0700 | [diff] [blame] | 469 | location = InstallInSanitizerDir |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 470 | } |
| 471 | library.baseInstaller.location = location |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 472 | library.baseLinker.linkerInit(ctx) |
Jiyong Park | 7ed9de3 | 2018-10-15 22:25:07 +0900 | [diff] [blame] | 473 | // Let baseLinker know whether this variant is for stubs or not, so that |
| 474 | // it can omit things that are not required for linking stubs. |
| 475 | library.baseLinker.dynamicProperties.BuildStubs = library.buildStubs() |
Jiyong Park | da732bd | 2018-11-02 18:23:15 +0900 | [diff] [blame] | 476 | |
| 477 | if library.buildStubs() { |
| 478 | macroNames := versioningMacroNamesList(ctx.Config()) |
| 479 | myName := versioningMacroName(ctx.ModuleName()) |
| 480 | versioningMacroNamesListMutex.Lock() |
| 481 | defer versioningMacroNamesListMutex.Unlock() |
| 482 | if (*macroNames)[myName] == "" { |
| 483 | (*macroNames)[myName] = ctx.ModuleName() |
| 484 | } else if (*macroNames)[myName] != ctx.ModuleName() { |
| 485 | ctx.ModuleErrorf("Macro name %q for versioning conflicts with macro name from module %q ", myName, (*macroNames)[myName]) |
| 486 | } |
| 487 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 488 | } |
| 489 | |
Colin Cross | 37047f1 | 2016-12-13 17:06:13 -0800 | [diff] [blame] | 490 | func (library *libraryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 491 | deps = library.baseLinker.linkerDeps(ctx, deps) |
| 492 | |
| 493 | if library.static() { |
| 494 | deps.WholeStaticLibs = append(deps.WholeStaticLibs, |
| 495 | library.Properties.Static.Whole_static_libs...) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 496 | deps.StaticLibs = append(deps.StaticLibs, library.Properties.Static.Static_libs...) |
| 497 | deps.SharedLibs = append(deps.SharedLibs, library.Properties.Static.Shared_libs...) |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 498 | } else if library.shared() { |
Dan Willemsen | 2e47b34 | 2016-11-17 01:02:25 -0800 | [diff] [blame] | 499 | if ctx.toolchain().Bionic() && !Bool(library.baseLinker.Properties.Nocrt) { |
Jeff Gaston | af3cc2d | 2017-09-27 17:01:44 -0700 | [diff] [blame] | 500 | if !ctx.useSdk() { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 501 | deps.CrtBegin = "crtbegin_so" |
| 502 | deps.CrtEnd = "crtend_so" |
| 503 | } else { |
Dan Albert | ebedf67 | 2016-11-08 15:06:22 -0800 | [diff] [blame] | 504 | // TODO(danalbert): Add generation of crt objects. |
| 505 | // For `sdk_version: "current"`, we don't actually have a |
| 506 | // freshly generated set of CRT objects. Use the last stable |
| 507 | // version. |
| 508 | version := ctx.sdkVersion() |
| 509 | if version == "current" { |
Jayant Chowdhary | 6e8115a | 2017-05-09 10:21:52 -0700 | [diff] [blame] | 510 | version = getCurrentNdkPrebuiltVersion(ctx) |
Dan Albert | ebedf67 | 2016-11-08 15:06:22 -0800 | [diff] [blame] | 511 | } |
| 512 | deps.CrtBegin = "ndk_crtbegin_so." + version |
| 513 | deps.CrtEnd = "ndk_crtend_so." + version |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 514 | } |
| 515 | } |
| 516 | deps.WholeStaticLibs = append(deps.WholeStaticLibs, library.Properties.Shared.Whole_static_libs...) |
| 517 | deps.StaticLibs = append(deps.StaticLibs, library.Properties.Shared.Static_libs...) |
| 518 | deps.SharedLibs = append(deps.SharedLibs, library.Properties.Shared.Shared_libs...) |
| 519 | } |
Jiyong Park | 52d25bd | 2017-10-13 09:17:01 +0900 | [diff] [blame] | 520 | if ctx.useVndk() { |
| 521 | deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, library.baseLinker.Properties.Target.Vendor.Exclude_static_libs) |
| 522 | deps.SharedLibs = removeListFromList(deps.SharedLibs, library.baseLinker.Properties.Target.Vendor.Exclude_shared_libs) |
| 523 | deps.StaticLibs = removeListFromList(deps.StaticLibs, library.baseLinker.Properties.Target.Vendor.Exclude_static_libs) |
| 524 | } |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 525 | if ctx.inRecovery() { |
| 526 | deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, library.baseLinker.Properties.Target.Recovery.Exclude_static_libs) |
| 527 | deps.SharedLibs = removeListFromList(deps.SharedLibs, library.baseLinker.Properties.Target.Recovery.Exclude_shared_libs) |
| 528 | deps.StaticLibs = removeListFromList(deps.StaticLibs, library.baseLinker.Properties.Target.Recovery.Exclude_static_libs) |
| 529 | } |
Colin Cross | 2383f3b | 2018-02-06 14:40:13 -0800 | [diff] [blame] | 530 | |
Colin Cross | 2383f3b | 2018-02-06 14:40:13 -0800 | [diff] [blame] | 531 | android.ExtractSourceDeps(ctx, library.Properties.Unexported_symbols_list) |
| 532 | android.ExtractSourceDeps(ctx, library.Properties.Force_symbols_not_weak_list) |
| 533 | android.ExtractSourceDeps(ctx, library.Properties.Force_symbols_weak_list) |
Colin Cross | 2383f3b | 2018-02-06 14:40:13 -0800 | [diff] [blame] | 534 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 535 | return deps |
| 536 | } |
| 537 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 538 | func (library *libraryDecorator) linkStatic(ctx ModuleContext, |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 539 | flags Flags, deps PathDeps, objs Objects) android.Path { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 540 | |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 541 | library.objects = deps.WholeStaticLibObjs.Copy() |
| 542 | library.objects = library.objects.Append(objs) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 543 | |
Colin Cross | 86803cf | 2018-02-15 14:12:26 -0800 | [diff] [blame] | 544 | fileName := ctx.ModuleName() + library.MutatedProperties.VariantName + staticLibraryExtension |
| 545 | outputFile := android.PathForModuleOut(ctx, fileName) |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 546 | builderFlags := flagsToBuilderFlags(flags) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 547 | |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame^] | 548 | if Bool(library.baseLinker.Properties.Use_version_lib) { |
| 549 | if ctx.Host() { |
| 550 | versionedOutputFile := outputFile |
| 551 | outputFile = android.PathForModuleOut(ctx, "unversioned", fileName) |
| 552 | library.injectVersionSymbol(ctx, outputFile, versionedOutputFile) |
| 553 | } else { |
| 554 | versionedOutputFile := android.PathForModuleOut(ctx, "versioned", fileName) |
| 555 | library.distFile = android.OptionalPathForPath(versionedOutputFile) |
| 556 | library.injectVersionSymbol(ctx, outputFile, versionedOutputFile) |
| 557 | } |
Colin Cross | 86803cf | 2018-02-15 14:12:26 -0800 | [diff] [blame] | 558 | } |
| 559 | |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 560 | TransformObjToStaticLib(ctx, library.objects.objFiles, builderFlags, outputFile, objs.tidyFiles) |
| 561 | |
| 562 | library.coverageOutputFile = TransformCoverageFilesToLib(ctx, library.objects, builderFlags, |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 563 | ctx.ModuleName()+library.MutatedProperties.VariantName) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 564 | |
| 565 | library.wholeStaticMissingDeps = ctx.GetMissingDependencies() |
| 566 | |
| 567 | ctx.CheckbuildFile(outputFile) |
| 568 | |
| 569 | return outputFile |
| 570 | } |
| 571 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 572 | func (library *libraryDecorator) linkShared(ctx ModuleContext, |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 573 | flags Flags, deps PathDeps, objs Objects) android.Path { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 574 | |
| 575 | var linkerDeps android.Paths |
Pirama Arumuga Nainar | ada83ec | 2017-08-31 23:38:27 -0700 | [diff] [blame] | 576 | linkerDeps = append(linkerDeps, flags.LdFlagsDeps...) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 577 | |
Colin Cross | 2383f3b | 2018-02-06 14:40:13 -0800 | [diff] [blame] | 578 | unexportedSymbols := ctx.ExpandOptionalSource(library.Properties.Unexported_symbols_list, "unexported_symbols_list") |
| 579 | forceNotWeakSymbols := ctx.ExpandOptionalSource(library.Properties.Force_symbols_not_weak_list, "force_symbols_not_weak_list") |
| 580 | forceWeakSymbols := ctx.ExpandOptionalSource(library.Properties.Force_symbols_weak_list, "force_symbols_weak_list") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 581 | if !ctx.Darwin() { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 582 | if unexportedSymbols.Valid() { |
| 583 | ctx.PropertyErrorf("unexported_symbols_list", "Only supported on Darwin") |
| 584 | } |
| 585 | if forceNotWeakSymbols.Valid() { |
| 586 | ctx.PropertyErrorf("force_symbols_not_weak_list", "Only supported on Darwin") |
| 587 | } |
| 588 | if forceWeakSymbols.Valid() { |
| 589 | ctx.PropertyErrorf("force_symbols_weak_list", "Only supported on Darwin") |
| 590 | } |
| 591 | } else { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 592 | if unexportedSymbols.Valid() { |
| 593 | flags.LdFlags = append(flags.LdFlags, "-Wl,-unexported_symbols_list,"+unexportedSymbols.String()) |
| 594 | linkerDeps = append(linkerDeps, unexportedSymbols.Path()) |
| 595 | } |
| 596 | if forceNotWeakSymbols.Valid() { |
| 597 | flags.LdFlags = append(flags.LdFlags, "-Wl,-force_symbols_not_weak_list,"+forceNotWeakSymbols.String()) |
| 598 | linkerDeps = append(linkerDeps, forceNotWeakSymbols.Path()) |
| 599 | } |
| 600 | if forceWeakSymbols.Valid() { |
| 601 | flags.LdFlags = append(flags.LdFlags, "-Wl,-force_symbols_weak_list,"+forceWeakSymbols.String()) |
| 602 | linkerDeps = append(linkerDeps, forceWeakSymbols.Path()) |
| 603 | } |
| 604 | } |
| 605 | |
| 606 | fileName := library.getLibName(ctx) + flags.Toolchain.ShlibSuffix() |
| 607 | outputFile := android.PathForModuleOut(ctx, fileName) |
| 608 | ret := outputFile |
| 609 | |
| 610 | builderFlags := flagsToBuilderFlags(flags) |
| 611 | |
Colin Cross | b496cfd | 2018-09-10 16:50:05 -0700 | [diff] [blame] | 612 | // Optimize out relinking against shared libraries whose interface hasn't changed by |
| 613 | // depending on a table of contents file instead of the library itself. |
| 614 | tocPath := outputFile.RelPathString() |
| 615 | tocPath = pathtools.ReplaceExtension(tocPath, flags.Toolchain.ShlibSuffix()[1:]+".toc") |
| 616 | tocFile := android.PathForOutput(ctx, tocPath) |
| 617 | library.tocFile = android.OptionalPathForPath(tocFile) |
| 618 | TransformSharedObjectToToc(ctx, outputFile, tocFile, builderFlags) |
Colin Cross | 89562dc | 2016-10-03 17:47:19 -0700 | [diff] [blame] | 619 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 620 | if library.stripper.needsStrip(ctx) { |
Chih-Hung Hsieh | 30485c9 | 2018-06-04 10:37:43 -0700 | [diff] [blame] | 621 | // b/80093681, GNU strip/objcopy bug. |
| 622 | // Use llvm-{strip,objcopy} when clang lld is used. |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 623 | builderFlags.stripUseLlvmStrip = library.baseLinker.useClangLld(ctx) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 624 | strippedOutputFile := outputFile |
| 625 | outputFile = android.PathForModuleOut(ctx, "unstripped", fileName) |
| 626 | library.stripper.strip(ctx, outputFile, strippedOutputFile, builderFlags) |
| 627 | } |
| 628 | |
Colin Cross | b60190a | 2018-09-04 16:28:17 -0700 | [diff] [blame] | 629 | library.unstrippedOutputFile = outputFile |
| 630 | |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame^] | 631 | if Bool(library.baseLinker.Properties.Use_version_lib) { |
| 632 | if ctx.Host() { |
| 633 | versionedOutputFile := outputFile |
| 634 | outputFile = android.PathForModuleOut(ctx, "unversioned", fileName) |
| 635 | library.injectVersionSymbol(ctx, outputFile, versionedOutputFile) |
| 636 | } else { |
| 637 | versionedOutputFile := android.PathForModuleOut(ctx, "versioned", fileName) |
| 638 | library.distFile = android.OptionalPathForPath(versionedOutputFile) |
| 639 | |
| 640 | if library.stripper.needsStrip(ctx) { |
| 641 | out := android.PathForModuleOut(ctx, "versioned-stripped", fileName) |
| 642 | library.distFile = android.OptionalPathForPath(out) |
| 643 | library.stripper.strip(ctx, versionedOutputFile, out, builderFlags) |
| 644 | } |
| 645 | |
| 646 | library.injectVersionSymbol(ctx, outputFile, versionedOutputFile) |
| 647 | } |
Colin Cross | 86803cf | 2018-02-15 14:12:26 -0800 | [diff] [blame] | 648 | } |
| 649 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 650 | sharedLibs := deps.SharedLibs |
| 651 | sharedLibs = append(sharedLibs, deps.LateSharedLibs...) |
| 652 | |
Colin Cross | 26c34ed | 2016-09-30 17:10:16 -0700 | [diff] [blame] | 653 | linkerDeps = append(linkerDeps, deps.SharedLibsDeps...) |
| 654 | linkerDeps = append(linkerDeps, deps.LateSharedLibsDeps...) |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 655 | linkerDeps = append(linkerDeps, objs.tidyFiles...) |
Colin Cross | 26c34ed | 2016-09-30 17:10:16 -0700 | [diff] [blame] | 656 | |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 657 | TransformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 658 | deps.StaticLibs, deps.LateStaticLibs, deps.WholeStaticLibs, |
| 659 | linkerDeps, deps.CrtBegin, deps.CrtEnd, false, builderFlags, outputFile) |
| 660 | |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 661 | objs.coverageFiles = append(objs.coverageFiles, deps.StaticLibObjs.coverageFiles...) |
| 662 | objs.coverageFiles = append(objs.coverageFiles, deps.WholeStaticLibObjs.coverageFiles...) |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 663 | |
| 664 | objs.sAbiDumpFiles = append(objs.sAbiDumpFiles, deps.StaticLibObjs.sAbiDumpFiles...) |
| 665 | objs.sAbiDumpFiles = append(objs.sAbiDumpFiles, deps.WholeStaticLibObjs.sAbiDumpFiles...) |
| 666 | |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 667 | library.coverageOutputFile = TransformCoverageFilesToLib(ctx, objs, builderFlags, library.getLibName(ctx)) |
Jayant Chowdhary | 6ab3d84 | 2017-06-26 12:52:58 -0700 | [diff] [blame] | 668 | library.linkSAbiDumpFiles(ctx, objs, fileName, ret) |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 669 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 670 | return ret |
| 671 | } |
| 672 | |
Logan Chien | 7eefdc4 | 2018-07-11 18:10:41 +0800 | [diff] [blame] | 673 | func getRefAbiDumpFile(ctx ModuleContext, vndkVersion, fileName string) android.Path { |
Logan Chien | f4b79c6 | 2018-08-02 02:27:02 +0800 | [diff] [blame] | 674 | isLlndk := inList(ctx.baseModuleName(), llndkLibraries) || inList(ctx.baseModuleName(), ndkMigratedLibs) |
Logan Chien | 7eefdc4 | 2018-07-11 18:10:41 +0800 | [diff] [blame] | 675 | |
| 676 | refAbiDumpTextFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isLlndk, false) |
| 677 | refAbiDumpGzipFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isLlndk, true) |
| 678 | |
| 679 | if refAbiDumpTextFile.Valid() { |
| 680 | if refAbiDumpGzipFile.Valid() { |
| 681 | ctx.ModuleErrorf( |
| 682 | "Two reference ABI dump files are found: %q and %q. Please delete the stale one.", |
| 683 | refAbiDumpTextFile, refAbiDumpGzipFile) |
| 684 | return nil |
| 685 | } |
| 686 | return refAbiDumpTextFile.Path() |
| 687 | } |
| 688 | if refAbiDumpGzipFile.Valid() { |
| 689 | return UnzipRefDump(ctx, refAbiDumpGzipFile.Path(), fileName) |
| 690 | } |
| 691 | return nil |
| 692 | } |
| 693 | |
Jayant Chowdhary | 6ab3d84 | 2017-06-26 12:52:58 -0700 | [diff] [blame] | 694 | func (library *libraryDecorator) linkSAbiDumpFiles(ctx ModuleContext, objs Objects, fileName string, soFile android.Path) { |
Logan Chien | 2f2b890 | 2018-07-10 15:01:19 +0800 | [diff] [blame] | 695 | if len(objs.sAbiDumpFiles) > 0 && ctx.shouldCreateVndkSourceAbiDump() { |
Logan Chien | a8f5158 | 2018-03-21 11:53:48 +0800 | [diff] [blame] | 696 | vndkVersion := ctx.DeviceConfig().PlatformVndkVersion() |
| 697 | if ver := ctx.DeviceConfig().VndkVersion(); ver != "" && ver != "current" { |
Logan Chien | f351174 | 2017-10-31 18:04:35 +0800 | [diff] [blame] | 698 | vndkVersion = ver |
| 699 | } |
| 700 | |
Jayant Chowdhary | a4fce19 | 2017-09-06 13:10:03 -0700 | [diff] [blame] | 701 | exportIncludeDirs := library.flagExporter.exportedIncludes(ctx) |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 702 | var SourceAbiFlags []string |
| 703 | for _, dir := range exportIncludeDirs.Strings() { |
Jayant Chowdhary | 715cac3 | 2017-04-20 06:53:59 -0700 | [diff] [blame] | 704 | SourceAbiFlags = append(SourceAbiFlags, "-I"+dir) |
| 705 | } |
| 706 | for _, reexportedInclude := range extractExportIncludesFromFlags(library.sabi.Properties.ReexportedIncludeFlags) { |
| 707 | SourceAbiFlags = append(SourceAbiFlags, reexportedInclude) |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 708 | } |
| 709 | exportedHeaderFlags := strings.Join(SourceAbiFlags, " ") |
Jayant Chowdhary | df344d5 | 2018-01-17 11:11:42 -0800 | [diff] [blame] | 710 | library.sAbiOutputFile = TransformDumpToLinkedDump(ctx, objs.sAbiDumpFiles, soFile, fileName, exportedHeaderFlags) |
Logan Chien | 2f2b890 | 2018-07-10 15:01:19 +0800 | [diff] [blame] | 711 | |
Logan Chien | 7eefdc4 | 2018-07-11 18:10:41 +0800 | [diff] [blame] | 712 | refAbiDumpFile := getRefAbiDumpFile(ctx, vndkVersion, fileName) |
| 713 | if refAbiDumpFile != nil { |
Logan Chien | f351174 | 2017-10-31 18:04:35 +0800 | [diff] [blame] | 714 | library.sAbiDiff = SourceAbiDiff(ctx, library.sAbiOutputFile.Path(), |
Logan Chien | 7eefdc4 | 2018-07-11 18:10:41 +0800 | [diff] [blame] | 715 | refAbiDumpFile, fileName, exportedHeaderFlags, ctx.isVndkExt()) |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 716 | } |
| 717 | } |
| 718 | } |
| 719 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 720 | func (library *libraryDecorator) link(ctx ModuleContext, |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 721 | flags Flags, deps PathDeps, objs Objects) android.Path { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 722 | |
Colin Cross | ad59e75 | 2017-11-16 14:29:11 -0800 | [diff] [blame] | 723 | objs = deps.Objs.Copy().Append(objs) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 724 | var out android.Path |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 725 | if library.static() || library.header() { |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 726 | out = library.linkStatic(ctx, flags, deps, objs) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 727 | } else { |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 728 | out = library.linkShared(ctx, flags, deps, objs) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 729 | } |
| 730 | |
| 731 | library.exportIncludes(ctx, "-I") |
| 732 | library.reexportFlags(deps.ReexportedFlags) |
Dan Willemsen | 847dcc7 | 2016-09-29 12:13:36 -0700 | [diff] [blame] | 733 | library.reexportDeps(deps.ReexportedFlagsDeps) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 734 | |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 735 | if Bool(library.Properties.Aidl.Export_aidl_headers) { |
Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 736 | if library.baseCompiler.hasSrcExt(".aidl") { |
Colin Cross | 10d2231 | 2017-05-03 11:01:58 -0700 | [diff] [blame] | 737 | flags := []string{ |
Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 738 | "-I" + android.PathForModuleGen(ctx, "aidl").String(), |
Colin Cross | 10d2231 | 2017-05-03 11:01:58 -0700 | [diff] [blame] | 739 | } |
| 740 | library.reexportFlags(flags) |
| 741 | library.reuseExportedFlags = append(library.reuseExportedFlags, flags...) |
Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 742 | library.reexportDeps(library.baseCompiler.pathDeps) // TODO: restrict to aidl deps |
| 743 | library.reuseExportedDeps = append(library.reuseExportedDeps, library.baseCompiler.pathDeps...) |
Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 744 | } |
| 745 | } |
| 746 | |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 747 | if Bool(library.Properties.Proto.Export_proto_headers) { |
Dan Willemsen | e1240db | 2016-11-03 14:28:51 -0700 | [diff] [blame] | 748 | if library.baseCompiler.hasSrcExt(".proto") { |
Dan Willemsen | ab9f426 | 2018-02-14 13:58:34 -0800 | [diff] [blame] | 749 | includes := []string{} |
| 750 | if flags.ProtoRoot { |
| 751 | includes = append(includes, "-I"+android.ProtoSubDir(ctx).String()) |
Colin Cross | 10d2231 | 2017-05-03 11:01:58 -0700 | [diff] [blame] | 752 | } |
Dan Willemsen | ab9f426 | 2018-02-14 13:58:34 -0800 | [diff] [blame] | 753 | includes = append(includes, "-I"+android.ProtoDir(ctx).String()) |
| 754 | library.reexportFlags(includes) |
| 755 | library.reuseExportedFlags = append(library.reuseExportedFlags, includes...) |
Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 756 | library.reexportDeps(library.baseCompiler.pathDeps) // TODO: restrict to proto deps |
| 757 | library.reuseExportedDeps = append(library.reuseExportedDeps, library.baseCompiler.pathDeps...) |
Colin Cross | 0c461f1 | 2016-10-20 16:11:43 -0700 | [diff] [blame] | 758 | } |
| 759 | } |
| 760 | |
Inseob Kim | 21f2690 | 2018-09-06 00:55:20 +0900 | [diff] [blame] | 761 | if library.baseCompiler.hasSrcExt(".sysprop") { |
| 762 | flags := []string{ |
| 763 | "-I" + android.PathForModuleGen(ctx, "sysprop", "include").String(), |
| 764 | } |
| 765 | library.reexportFlags(flags) |
| 766 | library.reuseExportedFlags = append(library.reuseExportedFlags, flags...) |
| 767 | } |
| 768 | |
Jiyong Park | da732bd | 2018-11-02 18:23:15 +0900 | [diff] [blame] | 769 | if library.buildStubs() { |
| 770 | library.reexportFlags([]string{"-D" + versioningMacroName(ctx.ModuleName()) + "=" + library.stubsVersion()}) |
| 771 | } |
| 772 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 773 | return out |
| 774 | } |
| 775 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 776 | func (library *libraryDecorator) buildStatic() bool { |
Colin Cross | 38b40df | 2018-04-10 16:14:46 -0700 | [diff] [blame] | 777 | return library.MutatedProperties.BuildStatic && BoolDefault(library.Properties.Static.Enabled, true) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 778 | } |
| 779 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 780 | func (library *libraryDecorator) buildShared() bool { |
Colin Cross | 38b40df | 2018-04-10 16:14:46 -0700 | [diff] [blame] | 781 | return library.MutatedProperties.BuildShared && BoolDefault(library.Properties.Shared.Enabled, true) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 782 | } |
| 783 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 784 | func (library *libraryDecorator) getWholeStaticMissingDeps() []string { |
Colin Cross | d2343a3 | 2018-04-30 14:50:01 -0700 | [diff] [blame] | 785 | return append([]string(nil), library.wholeStaticMissingDeps...) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 786 | } |
| 787 | |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 788 | func (library *libraryDecorator) objs() Objects { |
| 789 | return library.objects |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 790 | } |
| 791 | |
Colin Cross | bbc9f4d | 2017-05-03 16:24:55 -0700 | [diff] [blame] | 792 | func (library *libraryDecorator) reuseObjs() (Objects, []string, android.Paths) { |
| 793 | return library.reuseObjects, library.reuseExportedFlags, library.reuseExportedDeps |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 794 | } |
| 795 | |
Colin Cross | 26c34ed | 2016-09-30 17:10:16 -0700 | [diff] [blame] | 796 | func (library *libraryDecorator) toc() android.OptionalPath { |
| 797 | return library.tocFile |
| 798 | } |
| 799 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 800 | func (library *libraryDecorator) install(ctx ModuleContext, file android.Path) { |
Colin Cross | c43ae77 | 2017-04-14 15:42:53 -0700 | [diff] [blame] | 801 | if library.shared() { |
Justin Yun | 8fe1212 | 2017-12-07 17:18:15 +0900 | [diff] [blame] | 802 | if ctx.Device() && ctx.useVndk() { |
| 803 | if ctx.isVndkSp() { |
| 804 | library.baseInstaller.subDir = "vndk-sp" |
| 805 | } else if ctx.isVndk() { |
| 806 | library.baseInstaller.subDir = "vndk" |
| 807 | } |
Logan Chien | f351174 | 2017-10-31 18:04:35 +0800 | [diff] [blame] | 808 | |
| 809 | // Append a version to vndk or vndk-sp directories on the system partition. |
| 810 | if ctx.isVndk() && !ctx.isVndkExt() { |
| 811 | vndkVersion := ctx.DeviceConfig().PlatformVndkVersion() |
| 812 | if vndkVersion != "current" && vndkVersion != "" { |
| 813 | library.baseInstaller.subDir += "-" + vndkVersion |
| 814 | } |
Justin Yun | 8effde4 | 2017-06-23 19:24:43 +0900 | [diff] [blame] | 815 | } |
| 816 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 817 | library.baseInstaller.install(ctx, file) |
| 818 | } |
Dan Albert | f563d25 | 2017-10-13 00:29:00 -0700 | [diff] [blame] | 819 | |
Dan Albert | 281f22b | 2017-12-13 15:03:47 -0800 | [diff] [blame] | 820 | if Bool(library.Properties.Static_ndk_lib) && library.static() && |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 821 | !ctx.useVndk() && !ctx.inRecovery() && ctx.Device() && |
Jiyong Park | 7ed9de3 | 2018-10-15 22:25:07 +0900 | [diff] [blame] | 822 | library.baseLinker.sanitize.isUnsanitizedVariant() && |
| 823 | !library.buildStubs() { |
Dan Albert | f563d25 | 2017-10-13 00:29:00 -0700 | [diff] [blame] | 824 | installPath := getNdkSysrootBase(ctx).Join( |
Dan Albert | ea4b7b9 | 2018-04-25 16:05:30 -0700 | [diff] [blame] | 825 | ctx, "usr/lib", config.NDKTriple(ctx.toolchain()), file.Base()) |
Dan Albert | f563d25 | 2017-10-13 00:29:00 -0700 | [diff] [blame] | 826 | |
| 827 | ctx.ModuleBuild(pctx, android.ModuleBuildParams{ |
| 828 | Rule: android.Cp, |
| 829 | Description: "install " + installPath.Base(), |
| 830 | Output: installPath, |
| 831 | Input: file, |
| 832 | }) |
| 833 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 834 | library.ndkSysrootPath = installPath |
Dan Albert | f563d25 | 2017-10-13 00:29:00 -0700 | [diff] [blame] | 835 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 836 | } |
| 837 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 838 | func (library *libraryDecorator) static() bool { |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 839 | return library.MutatedProperties.VariantIsStatic |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 840 | } |
| 841 | |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 842 | func (library *libraryDecorator) shared() bool { |
| 843 | return library.MutatedProperties.VariantIsShared |
| 844 | } |
| 845 | |
| 846 | func (library *libraryDecorator) header() bool { |
| 847 | return !library.static() && !library.shared() |
| 848 | } |
| 849 | |
| 850 | func (library *libraryDecorator) setStatic() { |
| 851 | library.MutatedProperties.VariantIsStatic = true |
| 852 | library.MutatedProperties.VariantIsShared = false |
| 853 | } |
| 854 | |
| 855 | func (library *libraryDecorator) setShared() { |
| 856 | library.MutatedProperties.VariantIsStatic = false |
| 857 | library.MutatedProperties.VariantIsShared = true |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 858 | } |
| 859 | |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 860 | func (library *libraryDecorator) BuildOnlyStatic() { |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 861 | library.MutatedProperties.BuildShared = false |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 862 | } |
| 863 | |
| 864 | func (library *libraryDecorator) BuildOnlyShared() { |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 865 | library.MutatedProperties.BuildStatic = false |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 866 | } |
| 867 | |
Colin Cross | 5950f38 | 2016-12-13 12:50:57 -0800 | [diff] [blame] | 868 | func (library *libraryDecorator) HeaderOnly() { |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 869 | library.MutatedProperties.BuildShared = false |
| 870 | library.MutatedProperties.BuildStatic = false |
Colin Cross | 5950f38 | 2016-12-13 12:50:57 -0800 | [diff] [blame] | 871 | } |
| 872 | |
Jiyong Park | 7ed9de3 | 2018-10-15 22:25:07 +0900 | [diff] [blame] | 873 | func (library *libraryDecorator) buildStubs() bool { |
| 874 | return library.MutatedProperties.BuildStubs |
| 875 | } |
| 876 | |
| 877 | func (library *libraryDecorator) stubsVersion() string { |
| 878 | return library.MutatedProperties.StubsVersion |
| 879 | } |
| 880 | |
Jiyong Park | da732bd | 2018-11-02 18:23:15 +0900 | [diff] [blame] | 881 | func versioningMacroNamesList(config android.Config) *map[string]string { |
| 882 | return config.Once("versioningMacroNamesList", func() interface{} { |
| 883 | m := make(map[string]string) |
| 884 | return &m |
| 885 | }).(*map[string]string) |
| 886 | } |
| 887 | |
| 888 | // alphanumeric and _ characters are preserved. |
| 889 | // other characters are all converted to _ |
| 890 | var charsNotForMacro = regexp.MustCompile("[^a-zA-Z0-9_]+") |
| 891 | |
| 892 | func versioningMacroName(moduleName string) string { |
| 893 | macroName := charsNotForMacro.ReplaceAllString(moduleName, "_") |
| 894 | macroName = strings.ToUpper(moduleName) |
| 895 | return "__" + macroName + "_API__" |
| 896 | } |
| 897 | |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 898 | func NewLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 899 | module := newModule(hod, android.MultilibBoth) |
| 900 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 901 | library := &libraryDecorator{ |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 902 | MutatedProperties: LibraryMutatedProperties{ |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 903 | BuildShared: true, |
| 904 | BuildStatic: true, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 905 | }, |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 906 | baseCompiler: NewBaseCompiler(), |
Dan Albert | 61f3212 | 2018-07-26 14:00:24 -0700 | [diff] [blame] | 907 | baseLinker: NewBaseLinker(module.sanitize), |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 908 | baseInstaller: NewBaseInstaller("lib", "lib64", InstallInSystem), |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 909 | sabi: module.sabi, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 910 | } |
| 911 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 912 | module.compiler = library |
| 913 | module.linker = library |
| 914 | module.installer = library |
| 915 | |
| 916 | return module, library |
| 917 | } |
| 918 | |
Colin Cross | 10d2231 | 2017-05-03 11:01:58 -0700 | [diff] [blame] | 919 | // connects a shared library to a static library in order to reuse its .o files to avoid |
| 920 | // compiling source files twice. |
| 921 | func reuseStaticLibrary(mctx android.BottomUpMutatorContext, static, shared *Module) { |
| 922 | if staticCompiler, ok := static.compiler.(*libraryDecorator); ok { |
| 923 | sharedCompiler := shared.compiler.(*libraryDecorator) |
| 924 | if len(staticCompiler.Properties.Static.Cflags) == 0 && |
| 925 | len(sharedCompiler.Properties.Shared.Cflags) == 0 { |
| 926 | |
| 927 | mctx.AddInterVariantDependency(reuseObjTag, shared, static) |
| 928 | sharedCompiler.baseCompiler.Properties.OriginalSrcs = |
| 929 | sharedCompiler.baseCompiler.Properties.Srcs |
| 930 | sharedCompiler.baseCompiler.Properties.Srcs = nil |
| 931 | sharedCompiler.baseCompiler.Properties.Generated_sources = nil |
| 932 | } |
| 933 | } |
| 934 | } |
| 935 | |
Colin Cross | e40b4ea | 2018-10-02 22:25:58 -0700 | [diff] [blame] | 936 | func LinkageMutator(mctx android.BottomUpMutatorContext) { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 937 | if m, ok := mctx.Module().(*Module); ok && m.linker != nil { |
| 938 | if library, ok := m.linker.(libraryInterface); ok { |
| 939 | var modules []blueprint.Module |
| 940 | if library.buildStatic() && library.buildShared() { |
| 941 | modules = mctx.CreateLocalVariations("static", "shared") |
| 942 | static := modules[0].(*Module) |
| 943 | shared := modules[1].(*Module) |
| 944 | |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 945 | static.linker.(libraryInterface).setStatic() |
| 946 | shared.linker.(libraryInterface).setShared() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 947 | |
Colin Cross | 10d2231 | 2017-05-03 11:01:58 -0700 | [diff] [blame] | 948 | reuseStaticLibrary(mctx, static, shared) |
| 949 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 950 | } else if library.buildStatic() { |
| 951 | modules = mctx.CreateLocalVariations("static") |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 952 | modules[0].(*Module).linker.(libraryInterface).setStatic() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 953 | } else if library.buildShared() { |
| 954 | modules = mctx.CreateLocalVariations("shared") |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 955 | modules[0].(*Module).linker.(libraryInterface).setShared() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 956 | } |
| 957 | } |
| 958 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 959 | } |
Jiyong Park | 7ed9de3 | 2018-10-15 22:25:07 +0900 | [diff] [blame] | 960 | |
| 961 | // Version mutator splits a module into the mandatory non-stubs variant |
| 962 | // (which is named "impl") and zero or more stubs variants. |
| 963 | func versionMutator(mctx android.BottomUpMutatorContext) { |
| 964 | if mctx.Os() != android.Android { |
| 965 | return |
| 966 | } |
| 967 | |
| 968 | if m, ok := mctx.Module().(*Module); ok && !m.inRecovery() && m.linker != nil { |
| 969 | if library, ok := m.linker.(*libraryDecorator); ok && library.buildShared() { |
| 970 | versions := []string{""} |
| 971 | for _, v := range library.Properties.Stubs.Versions { |
| 972 | versions = append(versions, v) |
| 973 | } |
| 974 | modules := mctx.CreateVariations(versions...) |
| 975 | for i, m := range modules { |
| 976 | l := m.(*Module).linker.(*libraryDecorator) |
| 977 | if i == 0 { |
| 978 | l.MutatedProperties.BuildStubs = false |
| 979 | continue |
| 980 | } |
| 981 | // Mark that this variant is for stubs. |
| 982 | l.MutatedProperties.BuildStubs = true |
| 983 | l.MutatedProperties.StubsVersion = versions[i] |
| 984 | m.(*Module).Properties.HideFromMake = true |
| 985 | } |
| 986 | } else { |
| 987 | mctx.CreateVariations("") |
| 988 | } |
| 989 | return |
| 990 | } |
| 991 | if genrule, ok := mctx.Module().(*genrule.Module); ok { |
| 992 | if props, ok := genrule.Extra.(*GenruleExtraProperties); ok && !props.InRecovery { |
| 993 | mctx.CreateVariations("") |
| 994 | return |
| 995 | } |
| 996 | } |
| 997 | } |