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 ( |
| 18 | "fmt" |
| 19 | "strings" |
| 20 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 21 | "android/soong/android" |
Colin Cross | b98c8b0 | 2016-07-29 13:44:28 -0700 | [diff] [blame] | 22 | "android/soong/cc/config" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 23 | ) |
| 24 | |
| 25 | func init() { |
Jooyung Han | b90e491 | 2019-12-09 18:21:48 +0900 | [diff] [blame^] | 26 | android.RegisterModuleType("ndk_prebuilt_object", NdkPrebuiltObjectFactory) |
| 27 | android.RegisterModuleType("ndk_prebuilt_static_stl", NdkPrebuiltStaticStlFactory) |
Jaewoong Jung | 710756a | 2019-06-04 11:53:47 -0700 | [diff] [blame] | 28 | android.RegisterModuleType("ndk_prebuilt_shared_stl", NdkPrebuiltSharedStlFactory) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 29 | } |
| 30 | |
| 31 | // NDK prebuilt libraries. |
| 32 | // |
| 33 | // These differ from regular prebuilts in that they aren't stripped and usually aren't installed |
| 34 | // either (with the exception of the shared STLs, which are installed to the app's directory rather |
| 35 | // than to the system image). |
| 36 | |
Colin Cross | b98c8b0 | 2016-07-29 13:44:28 -0700 | [diff] [blame] | 37 | func getNdkLibDir(ctx android.ModuleContext, toolchain config.Toolchain, version string) android.SourcePath { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 38 | suffix := "" |
| 39 | // Most 64-bit NDK prebuilts store libraries in "lib64", except for arm64 which is not a |
| 40 | // multilib toolchain and stores the libraries in "lib". |
| 41 | if toolchain.Is64Bit() && ctx.Arch().ArchType != android.Arm64 { |
| 42 | suffix = "64" |
| 43 | } |
| 44 | return android.PathForSource(ctx, fmt.Sprintf("prebuilts/ndk/current/platforms/android-%s/arch-%s/usr/lib%s", |
| 45 | version, toolchain.Name(), suffix)) |
| 46 | } |
| 47 | |
Colin Cross | b98c8b0 | 2016-07-29 13:44:28 -0700 | [diff] [blame] | 48 | func ndkPrebuiltModuleToPath(ctx android.ModuleContext, toolchain config.Toolchain, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 49 | ext string, version string) android.Path { |
| 50 | |
| 51 | // NDK prebuilts are named like: ndk_NAME.EXT.SDK_VERSION. |
| 52 | // We want to translate to just NAME.EXT |
| 53 | name := strings.Split(strings.TrimPrefix(ctx.ModuleName(), "ndk_"), ".")[0] |
| 54 | dir := getNdkLibDir(ctx, toolchain, version) |
| 55 | return dir.Join(ctx, name+ext) |
| 56 | } |
| 57 | |
| 58 | type ndkPrebuiltObjectLinker struct { |
| 59 | objectLinker |
| 60 | } |
| 61 | |
Colin Cross | 37047f1 | 2016-12-13 17:06:13 -0800 | [diff] [blame] | 62 | func (*ndkPrebuiltObjectLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 63 | // NDK objects can't have any dependencies |
| 64 | return deps |
| 65 | } |
| 66 | |
Patrice Arruda | 8c85637 | 2019-04-01 17:29:59 -0700 | [diff] [blame] | 67 | // ndk_prebuilt_object exports a precompiled ndk object file for linking |
| 68 | // operations. Soong's module name format is ndk_<NAME>.o.<sdk_version> where |
| 69 | // the object is located under |
| 70 | // ./prebuilts/ndk/current/platforms/android-<sdk_version>/arch-$(HOST_ARCH)/usr/lib/<NAME>.o. |
Jooyung Han | b90e491 | 2019-12-09 18:21:48 +0900 | [diff] [blame^] | 71 | func NdkPrebuiltObjectFactory() android.Module { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 72 | module := newBaseModule(android.DeviceSupported, android.MultilibBoth) |
dimitry | 03dc3f6 | 2019-05-09 14:07:34 +0200 | [diff] [blame] | 73 | module.ModuleBase.EnableNativeBridgeSupportByDefault() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 74 | module.linker = &ndkPrebuiltObjectLinker{ |
| 75 | objectLinker: objectLinker{ |
Dan Albert | 61f3212 | 2018-07-26 14:00:24 -0700 | [diff] [blame] | 76 | baseLinker: NewBaseLinker(nil), |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 77 | }, |
| 78 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 79 | module.Properties.HideFromMake = true |
| 80 | return module.Init() |
| 81 | } |
| 82 | |
| 83 | func (c *ndkPrebuiltObjectLinker) link(ctx ModuleContext, flags Flags, |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 84 | deps PathDeps, objs Objects) android.Path { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 85 | // A null build step, but it sets up the output path. |
| 86 | if !strings.HasPrefix(ctx.ModuleName(), "ndk_crt") { |
Ryan Prichard | b170365 | 2018-03-26 16:30:31 -0700 | [diff] [blame] | 87 | ctx.ModuleErrorf("NDK prebuilt objects must have an ndk_crt prefixed name") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | return ndkPrebuiltModuleToPath(ctx, flags.Toolchain, objectExtension, ctx.sdkVersion()) |
| 91 | } |
| 92 | |
Ryan Prichard | b170365 | 2018-03-26 16:30:31 -0700 | [diff] [blame] | 93 | type ndkPrebuiltStlLinker struct { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 94 | *libraryDecorator |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Ryan Prichard | b170365 | 2018-03-26 16:30:31 -0700 | [diff] [blame] | 97 | func (ndk *ndkPrebuiltStlLinker) linkerProps() []interface{} { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 98 | return append(ndk.libraryDecorator.linkerProps(), &ndk.Properties, &ndk.flagExporter.Properties) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 99 | } |
| 100 | |
Ryan Prichard | b170365 | 2018-03-26 16:30:31 -0700 | [diff] [blame] | 101 | func (*ndkPrebuiltStlLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 102 | // NDK libraries can't have any dependencies |
| 103 | return deps |
| 104 | } |
| 105 | |
Patrice Arruda | 8c85637 | 2019-04-01 17:29:59 -0700 | [diff] [blame] | 106 | // ndk_prebuilt_shared_stl exports a precompiled ndk shared standard template |
| 107 | // library (stl) library for linking operation. The soong's module name format |
| 108 | // is ndk_<NAME>.so where the library is located under |
| 109 | // ./prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libs/$(HOST_ARCH)/<NAME>.so. |
Jaewoong Jung | 710756a | 2019-06-04 11:53:47 -0700 | [diff] [blame] | 110 | func NdkPrebuiltSharedStlFactory() android.Module { |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 111 | module, library := NewLibrary(android.DeviceSupported) |
| 112 | library.BuildOnlyShared() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 113 | module.compiler = nil |
Ryan Prichard | b170365 | 2018-03-26 16:30:31 -0700 | [diff] [blame] | 114 | module.linker = &ndkPrebuiltStlLinker{ |
| 115 | libraryDecorator: library, |
| 116 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 117 | module.installer = nil |
Dan Albert | 8ba131b | 2017-12-14 13:23:15 -0800 | [diff] [blame] | 118 | minVersionString := "minimum" |
| 119 | noStlString := "none" |
| 120 | module.Properties.Sdk_version = &minVersionString |
| 121 | module.stl.Properties.Stl = &noStlString |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 122 | return module.Init() |
| 123 | } |
| 124 | |
Patrice Arruda | 8c85637 | 2019-04-01 17:29:59 -0700 | [diff] [blame] | 125 | // ndk_prebuilt_static_stl exports a precompiled ndk static standard template |
| 126 | // library (stl) library for linking operation. The soong's module name format |
| 127 | // is ndk_<NAME>.a where the library is located under |
| 128 | // ./prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libs/$(HOST_ARCH)/<NAME>.a. |
Jooyung Han | b90e491 | 2019-12-09 18:21:48 +0900 | [diff] [blame^] | 129 | func NdkPrebuiltStaticStlFactory() android.Module { |
Colin Cross | ab3b732 | 2016-12-09 14:46:15 -0800 | [diff] [blame] | 130 | module, library := NewLibrary(android.DeviceSupported) |
| 131 | library.BuildOnlyStatic() |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 132 | module.compiler = nil |
Ryan Prichard | b170365 | 2018-03-26 16:30:31 -0700 | [diff] [blame] | 133 | module.linker = &ndkPrebuiltStlLinker{ |
| 134 | libraryDecorator: library, |
| 135 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 136 | module.installer = nil |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 137 | module.Properties.HideFromMake = true |
dimitry | 03dc3f6 | 2019-05-09 14:07:34 +0200 | [diff] [blame] | 138 | module.ModuleBase.EnableNativeBridgeSupportByDefault() |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 139 | return module.Init() |
| 140 | } |
| 141 | |
Ryan Prichard | b170365 | 2018-03-26 16:30:31 -0700 | [diff] [blame] | 142 | func getNdkStlLibDir(ctx android.ModuleContext) android.SourcePath { |
| 143 | libDir := "prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libs" |
| 144 | return android.PathForSource(ctx, libDir).Join(ctx, ctx.Arch().Abi[0]) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | func (ndk *ndkPrebuiltStlLinker) link(ctx ModuleContext, flags Flags, |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 148 | deps PathDeps, objs Objects) android.Path { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 149 | // A null build step, but it sets up the output path. |
| 150 | if !strings.HasPrefix(ctx.ModuleName(), "ndk_lib") { |
Ryan Prichard | b170365 | 2018-03-26 16:30:31 -0700 | [diff] [blame] | 151 | ctx.ModuleErrorf("NDK prebuilt libraries must have an ndk_lib prefixed name") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Inseob Kim | 6937844 | 2019-06-03 19:10:47 +0900 | [diff] [blame] | 154 | ndk.exportIncludesAsSystem(ctx) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 155 | |
| 156 | libName := strings.TrimPrefix(ctx.ModuleName(), "ndk_") |
| 157 | libExt := flags.Toolchain.ShlibSuffix() |
Colin Cross | a48ab5b | 2017-02-14 15:28:44 -0800 | [diff] [blame] | 158 | if ndk.static() { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 159 | libExt = staticLibraryExtension |
| 160 | } |
| 161 | |
Ryan Prichard | b170365 | 2018-03-26 16:30:31 -0700 | [diff] [blame] | 162 | libDir := getNdkStlLibDir(ctx) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 163 | return libDir.Join(ctx, libName+libExt) |
| 164 | } |