Dan Albert | 914449f | 2016-06-17 16:45:24 -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 ( |
| 18 | "fmt" |
| 19 | "strconv" |
| 20 | "strings" |
Colin Cross | e8a67a7 | 2016-08-07 21:17:54 -0700 | [diff] [blame] | 21 | "sync" |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 22 | |
| 23 | "github.com/google/blueprint" |
| 24 | |
| 25 | "android/soong/android" |
| 26 | ) |
| 27 | |
| 28 | var ( |
| 29 | toolPath = pctx.SourcePathVariable("toolPath", "build/soong/cc/gen_stub_libs.py") |
| 30 | |
Colin Cross | 9d45bb7 | 2016-08-29 16:14:13 -0700 | [diff] [blame] | 31 | genStubSrc = pctx.AndroidStaticRule("genStubSrc", |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 32 | blueprint.RuleParams{ |
Dan Albert | 49927d2 | 2017-03-28 15:00:46 -0700 | [diff] [blame] | 33 | Command: "$toolPath --arch $arch --api $apiLevel --api-map " + |
| 34 | "$apiMap $vndk $in $out", |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 35 | CommandDeps: []string{"$toolPath"}, |
Dan Albert | 49927d2 | 2017-03-28 15:00:46 -0700 | [diff] [blame] | 36 | }, "arch", "apiLevel", "apiMap", "vndk") |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 37 | |
| 38 | ndkLibrarySuffix = ".ndk" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 39 | |
| 40 | ndkPrebuiltSharedLibs = []string{ |
| 41 | "android", |
| 42 | "c", |
| 43 | "dl", |
| 44 | "EGL", |
| 45 | "GLESv1_CM", |
| 46 | "GLESv2", |
| 47 | "GLESv3", |
| 48 | "jnigraphics", |
| 49 | "log", |
| 50 | "mediandk", |
| 51 | "m", |
| 52 | "OpenMAXAL", |
| 53 | "OpenSLES", |
| 54 | "stdc++", |
| 55 | "vulkan", |
| 56 | "z", |
| 57 | } |
| 58 | ndkPrebuiltSharedLibraries = addPrefix(append([]string(nil), ndkPrebuiltSharedLibs...), "lib") |
| 59 | |
| 60 | // These libraries have migrated over to the new ndk_library, which is added |
| 61 | // as a variation dependency via depsMutator. |
Colin Cross | e8a67a7 | 2016-08-07 21:17:54 -0700 | [diff] [blame] | 62 | ndkMigratedLibs = []string{} |
| 63 | ndkMigratedLibsLock sync.Mutex // protects ndkMigratedLibs writes during parallel beginMutator |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 64 | ) |
| 65 | |
| 66 | // Creates a stub shared library based on the provided version file. |
| 67 | // |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 68 | // Example: |
| 69 | // |
| 70 | // ndk_library { |
Dan Willemsen | 01a9059 | 2017-04-07 15:21:13 -0700 | [diff] [blame] | 71 | // name: "libfoo", |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 72 | // symbol_file: "libfoo.map.txt", |
| 73 | // first_version: "9", |
| 74 | // } |
| 75 | // |
| 76 | type libraryProperties struct { |
| 77 | // Relative path to the symbol map. |
| 78 | // An example file can be seen here: TODO(danalbert): Make an example. |
| 79 | Symbol_file string |
| 80 | |
| 81 | // The first API level a library was available. A library will be generated |
| 82 | // for every API level beginning with this one. |
| 83 | First_version string |
| 84 | |
Dan Albert | 98dbb3b | 2017-01-03 15:16:29 -0800 | [diff] [blame] | 85 | // The first API level that library should have the version script applied. |
| 86 | // This defaults to the value of first_version, and should almost never be |
| 87 | // used. This is only needed to work around platform bugs like |
| 88 | // https://github.com/android-ndk/ndk/issues/265. |
| 89 | Unversioned_until string |
| 90 | |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 91 | // Private property for use by the mutator that splits per-API level. |
Dan Albert | fd86e9e | 2016-11-08 13:35:12 -0800 | [diff] [blame] | 92 | ApiLevel string `blueprint:"mutated"` |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 93 | } |
| 94 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 95 | type stubDecorator struct { |
| 96 | *libraryDecorator |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 97 | |
| 98 | properties libraryProperties |
Dan Albert | 2bc91ba | 2016-07-28 17:40:28 -0700 | [diff] [blame] | 99 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 100 | versionScriptPath android.ModuleGenPath |
| 101 | installPath string |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | // OMG GO |
Dan Albert | 7fa7b2e | 2016-08-05 16:37:52 -0700 | [diff] [blame] | 105 | func intMax(a int, b int) int { |
| 106 | if a > b { |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 107 | return a |
| 108 | } else { |
| 109 | return b |
| 110 | } |
| 111 | } |
| 112 | |
Dan Albert | 90f7a4d | 2016-11-08 14:34:24 -0800 | [diff] [blame] | 113 | func normalizeNdkApiLevel(apiLevel string, arch android.Arch) (string, error) { |
| 114 | if apiLevel == "current" { |
| 115 | return apiLevel, nil |
| 116 | } |
| 117 | |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 118 | minVersion := 9 // Minimum version supported by the NDK. |
Colin Cross | ce87b80 | 2017-04-13 13:00:26 -0700 | [diff] [blame] | 119 | firstArchVersions := map[android.ArchType]int{ |
| 120 | android.Arm: 9, |
| 121 | android.Arm64: 21, |
| 122 | android.Mips: 9, |
| 123 | android.Mips64: 21, |
| 124 | android.X86: 9, |
| 125 | android.X86_64: 21, |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Colin Cross | ce87b80 | 2017-04-13 13:00:26 -0700 | [diff] [blame] | 128 | firstArchVersion, ok := firstArchVersions[arch.ArchType] |
Dan Albert | 2e5d7d4 | 2017-03-29 18:22:39 -0700 | [diff] [blame] | 129 | if !ok { |
Colin Cross | ce87b80 | 2017-04-13 13:00:26 -0700 | [diff] [blame] | 130 | panic(fmt.Errorf("Arch %q not found in firstArchVersions", arch.ArchType)) |
Dan Albert | 2e5d7d4 | 2017-03-29 18:22:39 -0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | if apiLevel == "minimum" { |
| 134 | return strconv.Itoa(firstArchVersion), nil |
| 135 | } |
| 136 | |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 137 | // If the NDK drops support for a platform version, we don't want to have to |
Dan Albert | 7fa7b2e | 2016-08-05 16:37:52 -0700 | [diff] [blame] | 138 | // fix up every module that was using it as its SDK version. Clip to the |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 139 | // supported version here instead. |
Dan Albert | 7fa7b2e | 2016-08-05 16:37:52 -0700 | [diff] [blame] | 140 | version, err := strconv.Atoi(apiLevel) |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 141 | if err != nil { |
Dan Albert | 90f7a4d | 2016-11-08 14:34:24 -0800 | [diff] [blame] | 142 | return "", fmt.Errorf("API level must be an integer (is %q)", apiLevel) |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 143 | } |
Dan Albert | 7fa7b2e | 2016-08-05 16:37:52 -0700 | [diff] [blame] | 144 | version = intMax(version, minVersion) |
| 145 | |
Dan Albert | 90f7a4d | 2016-11-08 14:34:24 -0800 | [diff] [blame] | 146 | return strconv.Itoa(intMax(version, firstArchVersion)), nil |
| 147 | } |
| 148 | |
| 149 | func getFirstGeneratedVersion(firstSupportedVersion string, platformVersion int) (int, error) { |
| 150 | if firstSupportedVersion == "current" { |
| 151 | return platformVersion + 1, nil |
| 152 | } |
| 153 | |
| 154 | return strconv.Atoi(firstSupportedVersion) |
Dan Albert | 7fa7b2e | 2016-08-05 16:37:52 -0700 | [diff] [blame] | 155 | } |
| 156 | |
Dan Albert | 98dbb3b | 2017-01-03 15:16:29 -0800 | [diff] [blame] | 157 | func shouldUseVersionScript(stub *stubDecorator) (bool, error) { |
| 158 | // unversioned_until is normally empty, in which case we should use the version script. |
| 159 | if stub.properties.Unversioned_until == "" { |
| 160 | return true, nil |
| 161 | } |
| 162 | |
Dan Albert | 022e7a3 | 2017-01-05 15:49:09 -0800 | [diff] [blame] | 163 | if stub.properties.Unversioned_until == "current" { |
| 164 | if stub.properties.ApiLevel == "current" { |
| 165 | return true, nil |
| 166 | } else { |
| 167 | return false, nil |
| 168 | } |
| 169 | } |
| 170 | |
Dan Albert | 98dbb3b | 2017-01-03 15:16:29 -0800 | [diff] [blame] | 171 | if stub.properties.ApiLevel == "current" { |
| 172 | return true, nil |
| 173 | } |
| 174 | |
| 175 | unversionedUntil, err := strconv.Atoi(stub.properties.Unversioned_until) |
| 176 | if err != nil { |
| 177 | return true, err |
| 178 | } |
| 179 | |
| 180 | version, err := strconv.Atoi(stub.properties.ApiLevel) |
| 181 | if err != nil { |
| 182 | return true, err |
| 183 | } |
| 184 | |
| 185 | return version >= unversionedUntil, nil |
| 186 | } |
| 187 | |
Dan Albert | 7fa7b2e | 2016-08-05 16:37:52 -0700 | [diff] [blame] | 188 | func generateStubApiVariants(mctx android.BottomUpMutatorContext, c *stubDecorator) { |
Dan Albert | 90f7a4d | 2016-11-08 14:34:24 -0800 | [diff] [blame] | 189 | platformVersion := mctx.AConfig().PlatformSdkVersionInt() |
Dan Albert | 7fa7b2e | 2016-08-05 16:37:52 -0700 | [diff] [blame] | 190 | |
Dan Albert | 90f7a4d | 2016-11-08 14:34:24 -0800 | [diff] [blame] | 191 | firstSupportedVersion, err := normalizeNdkApiLevel(c.properties.First_version, |
Dan Albert | 7fa7b2e | 2016-08-05 16:37:52 -0700 | [diff] [blame] | 192 | mctx.Arch()) |
| 193 | if err != nil { |
| 194 | mctx.PropertyErrorf("first_version", err.Error()) |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 195 | } |
Dan Albert | 7fa7b2e | 2016-08-05 16:37:52 -0700 | [diff] [blame] | 196 | |
Dan Albert | 90f7a4d | 2016-11-08 14:34:24 -0800 | [diff] [blame] | 197 | firstGenVersion, err := getFirstGeneratedVersion(firstSupportedVersion, platformVersion) |
| 198 | if err != nil { |
| 199 | // In theory this is impossible because we've already run this through |
| 200 | // normalizeNdkApiLevel above. |
| 201 | mctx.PropertyErrorf("first_version", err.Error()) |
| 202 | } |
| 203 | |
Dan Albert | fd86e9e | 2016-11-08 13:35:12 -0800 | [diff] [blame] | 204 | var versionStrs []string |
Dan Albert | 90f7a4d | 2016-11-08 14:34:24 -0800 | [diff] [blame] | 205 | for version := firstGenVersion; version <= platformVersion; version++ { |
Dan Albert | fd86e9e | 2016-11-08 13:35:12 -0800 | [diff] [blame] | 206 | versionStrs = append(versionStrs, strconv.Itoa(version)) |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 207 | } |
Dan Albert | 49927d2 | 2017-03-28 15:00:46 -0700 | [diff] [blame] | 208 | versionStrs = append(versionStrs, mctx.AConfig().PlatformVersionAllCodenames()...) |
Dan Albert | fd86e9e | 2016-11-08 13:35:12 -0800 | [diff] [blame] | 209 | versionStrs = append(versionStrs, "current") |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 210 | |
| 211 | modules := mctx.CreateVariations(versionStrs...) |
| 212 | for i, module := range modules { |
Dan Albert | fd86e9e | 2016-11-08 13:35:12 -0800 | [diff] [blame] | 213 | module.(*Module).compiler.(*stubDecorator).properties.ApiLevel = versionStrs[i] |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 214 | } |
| 215 | } |
| 216 | |
| 217 | func ndkApiMutator(mctx android.BottomUpMutatorContext) { |
| 218 | if m, ok := mctx.Module().(*Module); ok { |
Colin Cross | d402582 | 2017-04-13 12:53:07 -0700 | [diff] [blame] | 219 | if m.Enabled() { |
| 220 | if compiler, ok := m.compiler.(*stubDecorator); ok { |
| 221 | generateStubApiVariants(mctx, compiler) |
| 222 | } |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 223 | } |
| 224 | } |
| 225 | } |
| 226 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 227 | func (c *stubDecorator) compilerInit(ctx BaseModuleContext) { |
Dan Albert | 7e9d295 | 2016-08-04 13:02:36 -0700 | [diff] [blame] | 228 | c.baseCompiler.compilerInit(ctx) |
| 229 | |
Dan Willemsen | 01a9059 | 2017-04-07 15:21:13 -0700 | [diff] [blame] | 230 | name := ctx.baseModuleName() |
| 231 | if strings.HasSuffix(name, ndkLibrarySuffix) { |
| 232 | ctx.PropertyErrorf("name", "Do not append %q manually, just use the base name", ndkLibrarySuffix) |
| 233 | } |
| 234 | |
Colin Cross | e8a67a7 | 2016-08-07 21:17:54 -0700 | [diff] [blame] | 235 | ndkMigratedLibsLock.Lock() |
| 236 | defer ndkMigratedLibsLock.Unlock() |
Dan Albert | 7e9d295 | 2016-08-04 13:02:36 -0700 | [diff] [blame] | 237 | for _, lib := range ndkMigratedLibs { |
| 238 | if lib == name { |
| 239 | return |
| 240 | } |
| 241 | } |
| 242 | ndkMigratedLibs = append(ndkMigratedLibs, name) |
| 243 | } |
| 244 | |
Dan Willemsen | b916b80 | 2017-03-19 13:44:32 -0700 | [diff] [blame] | 245 | func compileStubLibrary(ctx ModuleContext, flags Flags, symbolFile, apiLevel, vndk string) (Objects, android.ModuleGenPath) { |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 246 | arch := ctx.Arch().ArchType.String() |
| 247 | |
Dan Willemsen | b916b80 | 2017-03-19 13:44:32 -0700 | [diff] [blame] | 248 | stubSrcPath := android.PathForModuleGen(ctx, "stub.c") |
| 249 | versionScriptPath := android.PathForModuleGen(ctx, "stub.map") |
| 250 | symbolFilePath := android.PathForModuleSrc(ctx, symbolFile) |
Dan Albert | 49927d2 | 2017-03-28 15:00:46 -0700 | [diff] [blame] | 251 | apiLevelsJson := android.GetApiLevelsJson(ctx) |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 252 | ctx.ModuleBuild(pctx, android.ModuleBuildParams{ |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 253 | Rule: genStubSrc, |
| 254 | Description: "generate stubs " + symbolFilePath.Rel(), |
| 255 | Outputs: []android.WritablePath{stubSrcPath, versionScriptPath}, |
| 256 | Input: symbolFilePath, |
| 257 | Implicits: []android.Path{apiLevelsJson}, |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 258 | Args: map[string]string{ |
| 259 | "arch": arch, |
Dan Willemsen | b916b80 | 2017-03-19 13:44:32 -0700 | [diff] [blame] | 260 | "apiLevel": apiLevel, |
Dan Albert | 49927d2 | 2017-03-28 15:00:46 -0700 | [diff] [blame] | 261 | "apiMap": apiLevelsJson.String(), |
Dan Willemsen | b916b80 | 2017-03-19 13:44:32 -0700 | [diff] [blame] | 262 | "vndk": vndk, |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 263 | }, |
| 264 | }) |
| 265 | |
| 266 | flags.CFlags = append(flags.CFlags, |
| 267 | // We're knowingly doing some otherwise unsightly things with builtin |
| 268 | // functions here. We're just generating stub libraries, so ignore it. |
| 269 | "-Wno-incompatible-library-redeclaration", |
| 270 | "-Wno-builtin-requires-header", |
| 271 | "-Wno-invalid-noreturn", |
| 272 | |
| 273 | // These libraries aren't actually used. Don't worry about unwinding |
| 274 | // (avoids the need to link an unwinder into a fake library). |
| 275 | "-fno-unwind-tables", |
| 276 | ) |
| 277 | |
| 278 | subdir := "" |
Colin Cross | 2f33635 | 2016-10-26 10:03:47 -0700 | [diff] [blame] | 279 | srcs := []android.Path{stubSrcPath} |
Dan Willemsen | b916b80 | 2017-03-19 13:44:32 -0700 | [diff] [blame] | 280 | return compileObjs(ctx, flagsToBuilderFlags(flags), subdir, srcs, nil), versionScriptPath |
| 281 | } |
| 282 | |
| 283 | func (c *stubDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects { |
Dan Albert | 15be0c6 | 2017-06-13 15:14:56 -0700 | [diff] [blame] | 284 | if !strings.HasSuffix(c.properties.Symbol_file, ".map.txt") { |
| 285 | ctx.PropertyErrorf("symbol_file", "must end with .map.txt") |
| 286 | } |
| 287 | |
Dan Willemsen | b916b80 | 2017-03-19 13:44:32 -0700 | [diff] [blame] | 288 | objs, versionScript := compileStubLibrary(ctx, flags, c.properties.Symbol_file, c.properties.ApiLevel, "") |
| 289 | c.versionScriptPath = versionScript |
| 290 | return objs |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 291 | } |
| 292 | |
Colin Cross | 37047f1 | 2016-12-13 17:06:13 -0800 | [diff] [blame] | 293 | func (linker *stubDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 294 | return Deps{} |
| 295 | } |
| 296 | |
Dan Willemsen | 01a9059 | 2017-04-07 15:21:13 -0700 | [diff] [blame] | 297 | func (linker *stubDecorator) Name(name string) string { |
| 298 | return name + ndkLibrarySuffix |
| 299 | } |
| 300 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 301 | func (stub *stubDecorator) linkerFlags(ctx ModuleContext, flags Flags) Flags { |
Dan Willemsen | 01a9059 | 2017-04-07 15:21:13 -0700 | [diff] [blame] | 302 | stub.libraryDecorator.libName = ctx.baseModuleName() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 303 | return stub.libraryDecorator.linkerFlags(ctx, flags) |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 304 | } |
| 305 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 306 | func (stub *stubDecorator) link(ctx ModuleContext, flags Flags, deps PathDeps, |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 307 | objs Objects) android.Path { |
Dan Albert | 2bc91ba | 2016-07-28 17:40:28 -0700 | [diff] [blame] | 308 | |
Dan Albert | 98dbb3b | 2017-01-03 15:16:29 -0800 | [diff] [blame] | 309 | useVersionScript, err := shouldUseVersionScript(stub) |
| 310 | if err != nil { |
| 311 | ctx.ModuleErrorf(err.Error()) |
| 312 | } |
| 313 | |
| 314 | if useVersionScript { |
| 315 | linkerScriptFlag := "-Wl,--version-script," + stub.versionScriptPath.String() |
| 316 | flags.LdFlags = append(flags.LdFlags, linkerScriptFlag) |
| 317 | } |
| 318 | |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 319 | return stub.libraryDecorator.link(ctx, flags, deps, objs) |
Dan Albert | 2bc91ba | 2016-07-28 17:40:28 -0700 | [diff] [blame] | 320 | } |
| 321 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 322 | func (stub *stubDecorator) install(ctx ModuleContext, path android.Path) { |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 323 | arch := ctx.Target().Arch.ArchType.Name |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 324 | apiLevel := stub.properties.ApiLevel |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 325 | |
| 326 | // arm64 isn't actually a multilib toolchain, so unlike the other LP64 |
| 327 | // architectures it's just installed to lib. |
| 328 | libDir := "lib" |
| 329 | if ctx.toolchain().Is64Bit() && arch != "arm64" { |
| 330 | libDir = "lib64" |
| 331 | } |
| 332 | |
| 333 | installDir := getNdkInstallBase(ctx).Join(ctx, fmt.Sprintf( |
Dan Albert | fd86e9e | 2016-11-08 13:35:12 -0800 | [diff] [blame] | 334 | "platforms/android-%s/arch-%s/usr/%s", apiLevel, arch, libDir)) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 335 | stub.installPath = ctx.InstallFile(installDir, path).String() |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 336 | } |
| 337 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame^] | 338 | func newStubLibrary() *Module { |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 339 | module, library := NewLibrary(android.DeviceSupported) |
| 340 | library.BuildOnlyShared() |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 341 | module.stl = nil |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 342 | module.sanitize = nil |
| 343 | library.StripProperties.Strip.None = true |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 344 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 345 | stub := &stubDecorator{ |
| 346 | libraryDecorator: library, |
| 347 | } |
| 348 | module.compiler = stub |
| 349 | module.linker = stub |
| 350 | module.installer = stub |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 351 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame^] | 352 | module.AddProperties(&stub.properties, &library.MutatedProperties) |
| 353 | |
| 354 | return module |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame^] | 357 | func ndkLibraryFactory() android.Module { |
| 358 | module := newStubLibrary() |
| 359 | android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibBoth) |
| 360 | return module |
Dan Albert | 914449f | 2016-06-17 16:45:24 -0700 | [diff] [blame] | 361 | } |