blob: e849aeea4e8bec1b003aa3bac20b9e2969d7dab8 [file] [log] [blame]
Colin Cross4d9c2d12016-07-29 12:48:20 -07001// Copyright 2016 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package cc
16
17import (
18 "fmt"
19 "strings"
20
Colin Cross4d9c2d12016-07-29 12:48:20 -070021 "android/soong/android"
Colin Crossb98c8b02016-07-29 13:44:28 -070022 "android/soong/cc/config"
Colin Cross4d9c2d12016-07-29 12:48:20 -070023)
24
25func init() {
Jooyung Hanb90e4912019-12-09 18:21:48 +090026 android.RegisterModuleType("ndk_prebuilt_object", NdkPrebuiltObjectFactory)
27 android.RegisterModuleType("ndk_prebuilt_static_stl", NdkPrebuiltStaticStlFactory)
Jaewoong Jung710756a2019-06-04 11:53:47 -070028 android.RegisterModuleType("ndk_prebuilt_shared_stl", NdkPrebuiltSharedStlFactory)
Colin Cross4d9c2d12016-07-29 12:48:20 -070029}
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 Crossb98c8b02016-07-29 13:44:28 -070037func getNdkLibDir(ctx android.ModuleContext, toolchain config.Toolchain, version string) android.SourcePath {
Colin Cross4d9c2d12016-07-29 12:48:20 -070038 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 Crossb98c8b02016-07-29 13:44:28 -070048func ndkPrebuiltModuleToPath(ctx android.ModuleContext, toolchain config.Toolchain,
Colin Cross4d9c2d12016-07-29 12:48:20 -070049 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
58type ndkPrebuiltObjectLinker struct {
59 objectLinker
60}
61
Colin Cross37047f12016-12-13 17:06:13 -080062func (*ndkPrebuiltObjectLinker) linkerDeps(ctx DepsContext, deps Deps) Deps {
Colin Cross4d9c2d12016-07-29 12:48:20 -070063 // NDK objects can't have any dependencies
64 return deps
65}
66
Patrice Arruda8c856372019-04-01 17:29:59 -070067// 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 Hanb90e4912019-12-09 18:21:48 +090071func NdkPrebuiltObjectFactory() android.Module {
Colin Cross4d9c2d12016-07-29 12:48:20 -070072 module := newBaseModule(android.DeviceSupported, android.MultilibBoth)
dimitry03dc3f62019-05-09 14:07:34 +020073 module.ModuleBase.EnableNativeBridgeSupportByDefault()
Colin Crossb916a382016-07-29 17:28:03 -070074 module.linker = &ndkPrebuiltObjectLinker{
75 objectLinker: objectLinker{
Dan Albert61f32122018-07-26 14:00:24 -070076 baseLinker: NewBaseLinker(nil),
Colin Crossb916a382016-07-29 17:28:03 -070077 },
78 }
Colin Cross4d9c2d12016-07-29 12:48:20 -070079 module.Properties.HideFromMake = true
80 return module.Init()
81}
82
83func (c *ndkPrebuiltObjectLinker) link(ctx ModuleContext, flags Flags,
Dan Willemsen5cb580f2016-09-26 17:33:01 -070084 deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -070085 // A null build step, but it sets up the output path.
86 if !strings.HasPrefix(ctx.ModuleName(), "ndk_crt") {
Ryan Prichardb1703652018-03-26 16:30:31 -070087 ctx.ModuleErrorf("NDK prebuilt objects must have an ndk_crt prefixed name")
Colin Cross4d9c2d12016-07-29 12:48:20 -070088 }
89
90 return ndkPrebuiltModuleToPath(ctx, flags.Toolchain, objectExtension, ctx.sdkVersion())
91}
92
Ryan Prichardb1703652018-03-26 16:30:31 -070093type ndkPrebuiltStlLinker struct {
Colin Crossb916a382016-07-29 17:28:03 -070094 *libraryDecorator
Colin Cross4d9c2d12016-07-29 12:48:20 -070095}
96
Ryan Prichardb1703652018-03-26 16:30:31 -070097func (ndk *ndkPrebuiltStlLinker) linkerProps() []interface{} {
Colin Crossb916a382016-07-29 17:28:03 -070098 return append(ndk.libraryDecorator.linkerProps(), &ndk.Properties, &ndk.flagExporter.Properties)
Colin Cross4d9c2d12016-07-29 12:48:20 -070099}
100
Ryan Prichardb1703652018-03-26 16:30:31 -0700101func (*ndkPrebuiltStlLinker) linkerDeps(ctx DepsContext, deps Deps) Deps {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700102 // NDK libraries can't have any dependencies
103 return deps
104}
105
Patrice Arruda8c856372019-04-01 17:29:59 -0700106// 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 Jung710756a2019-06-04 11:53:47 -0700110func NdkPrebuiltSharedStlFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800111 module, library := NewLibrary(android.DeviceSupported)
112 library.BuildOnlyShared()
Colin Crossb916a382016-07-29 17:28:03 -0700113 module.compiler = nil
Ryan Prichardb1703652018-03-26 16:30:31 -0700114 module.linker = &ndkPrebuiltStlLinker{
115 libraryDecorator: library,
116 }
Colin Crossb916a382016-07-29 17:28:03 -0700117 module.installer = nil
Dan Albert8ba131b2017-12-14 13:23:15 -0800118 minVersionString := "minimum"
119 noStlString := "none"
120 module.Properties.Sdk_version = &minVersionString
121 module.stl.Properties.Stl = &noStlString
Colin Cross4d9c2d12016-07-29 12:48:20 -0700122 return module.Init()
123}
124
Patrice Arruda8c856372019-04-01 17:29:59 -0700125// 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 Hanb90e4912019-12-09 18:21:48 +0900129func NdkPrebuiltStaticStlFactory() android.Module {
Colin Crossab3b7322016-12-09 14:46:15 -0800130 module, library := NewLibrary(android.DeviceSupported)
131 library.BuildOnlyStatic()
Colin Crossb916a382016-07-29 17:28:03 -0700132 module.compiler = nil
Ryan Prichardb1703652018-03-26 16:30:31 -0700133 module.linker = &ndkPrebuiltStlLinker{
134 libraryDecorator: library,
135 }
Colin Crossb916a382016-07-29 17:28:03 -0700136 module.installer = nil
Colin Cross4d9c2d12016-07-29 12:48:20 -0700137 module.Properties.HideFromMake = true
dimitry03dc3f62019-05-09 14:07:34 +0200138 module.ModuleBase.EnableNativeBridgeSupportByDefault()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700139 return module.Init()
140}
141
Ryan Prichardb1703652018-03-26 16:30:31 -0700142func 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 Cross4d9c2d12016-07-29 12:48:20 -0700145}
146
147func (ndk *ndkPrebuiltStlLinker) link(ctx ModuleContext, flags Flags,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700148 deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700149 // A null build step, but it sets up the output path.
150 if !strings.HasPrefix(ctx.ModuleName(), "ndk_lib") {
Ryan Prichardb1703652018-03-26 16:30:31 -0700151 ctx.ModuleErrorf("NDK prebuilt libraries must have an ndk_lib prefixed name")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700152 }
153
Inseob Kim69378442019-06-03 19:10:47 +0900154 ndk.exportIncludesAsSystem(ctx)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700155
156 libName := strings.TrimPrefix(ctx.ModuleName(), "ndk_")
157 libExt := flags.Toolchain.ShlibSuffix()
Colin Crossa48ab5b2017-02-14 15:28:44 -0800158 if ndk.static() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700159 libExt = staticLibraryExtension
160 }
161
Ryan Prichardb1703652018-03-26 16:30:31 -0700162 libDir := getNdkStlLibDir(ctx)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700163 return libDir.Join(ctx, libName+libExt)
164}