blob: 8428d7ec242389aee25861ae95cc660d042a3036 [file] [log] [blame]
Colin Cross4d9c2d12016-07-29 12:48:20 -07001// Copyright 2016 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package cc
16
17import (
Jiyong Parkf1194352019-02-25 11:05:47 +090018 "path/filepath"
19
Dan Willemsena0790e32018-10-12 00:24:23 -070020 "github.com/google/blueprint"
21
Colin Cross4d9c2d12016-07-29 12:48:20 -070022 "android/soong/android"
23)
24
25type BinaryLinkerProperties struct {
26 // compile executable with -static
27 Static_executable *bool `android:"arch_variant"`
28
29 // set the name of the output
Nan Zhang0007d812017-11-07 10:57:05 -080030 Stem *string `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070031
32 // append to the name of the output
Nan Zhang0007d812017-11-07 10:57:05 -080033 Suffix *string `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070034
35 // if set, add an extra objcopy --prefix-symbols= step
Nan Zhang0007d812017-11-07 10:57:05 -080036 Prefix_symbols *string
Colin Cross1e7d3702016-08-24 15:25:47 -070037
38 // if set, install a symlink to the preferred architecture
Nan Zhang0007d812017-11-07 10:57:05 -080039 Symlink_preferred_arch *bool
Colin Cross522e3732016-09-07 13:14:06 -070040
Colin Cross9b09f242016-12-07 13:37:42 -080041 // install symlinks to the binary. Symlink names will have the suffix and the binary
42 // extension (if any) appended
43 Symlinks []string `android:"arch_variant"`
44
Colin Cross522e3732016-09-07 13:14:06 -070045 DynamicLinker string `blueprint:"mutated"`
Yifan Hong946e32e2018-04-03 13:22:50 -070046
47 // Names of modules to be overridden. Listed modules can only be other binaries
48 // (in Make or Soong).
49 // This does not completely prevent installation of the overridden binaries, but if both
50 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
51 // from PRODUCT_PACKAGES.
52 Overrides []string
Colin Cross4d9c2d12016-07-29 12:48:20 -070053}
54
55func init() {
Jiyong Park16e91a02018-12-20 18:18:08 +090056 android.RegisterModuleType("cc_binary", BinaryFactory)
Colin Cross798bfce2016-10-12 14:28:16 -070057 android.RegisterModuleType("cc_binary_host", binaryHostFactory)
Colin Cross4d9c2d12016-07-29 12:48:20 -070058}
59
Patrice Arrudac249c712019-03-19 17:00:29 -070060// cc_binary produces a binary that is runnable on a device.
Jiyong Park16e91a02018-12-20 18:18:08 +090061func BinaryFactory() android.Module {
Colin Crossb916a382016-07-29 17:28:03 -070062 module, _ := NewBinary(android.HostAndDeviceSupported)
Colin Cross4d9c2d12016-07-29 12:48:20 -070063 return module.Init()
64}
65
Patrice Arrudac249c712019-03-19 17:00:29 -070066// cc_binary_host produces a binary that is runnable on a host.
Colin Cross36242852017-06-23 15:06:31 -070067func binaryHostFactory() android.Module {
Colin Crossb916a382016-07-29 17:28:03 -070068 module, _ := NewBinary(android.HostSupported)
Colin Cross4d9c2d12016-07-29 12:48:20 -070069 return module.Init()
70}
71
72//
73// Executables
74//
75
Colin Crossb916a382016-07-29 17:28:03 -070076type binaryDecorator struct {
77 *baseLinker
Colin Cross1e7d3702016-08-24 15:25:47 -070078 *baseInstaller
Colin Cross4d9c2d12016-07-29 12:48:20 -070079 stripper
80
81 Properties BinaryLinkerProperties
82
Dan Willemsen4aa75ca2016-09-28 16:18:03 -070083 toolPath android.OptionalPath
Colin Cross9b09f242016-12-07 13:37:42 -080084
Colin Crossb60190a2018-09-04 16:28:17 -070085 // Location of the linked, unstripped binary
86 unstrippedOutputFile android.Path
87
Colin Cross9b09f242016-12-07 13:37:42 -080088 // Names of symlinks to be installed for use in LOCAL_MODULE_SYMLINKS
89 symlinks []string
Dan Willemsen581341d2017-02-09 16:16:31 -080090
91 // Output archive of gcno coverage information
92 coverageOutputFile android.OptionalPath
Dan Willemsen569edc52018-11-19 09:33:29 -080093
94 // Location of the file that should be copied to dist dir when requested
95 distFile android.OptionalPath
Jiyong Parkf1194352019-02-25 11:05:47 +090096
97 post_install_cmds []string
Colin Cross4d9c2d12016-07-29 12:48:20 -070098}
99
Colin Crossb916a382016-07-29 17:28:03 -0700100var _ linker = (*binaryDecorator)(nil)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700101
Colin Crossb916a382016-07-29 17:28:03 -0700102func (binary *binaryDecorator) linkerProps() []interface{} {
Colin Cross42742b82016-08-01 13:20:05 -0700103 return append(binary.baseLinker.linkerProps(),
Colin Cross4d9c2d12016-07-29 12:48:20 -0700104 &binary.Properties,
105 &binary.stripper.StripProperties)
106
107}
108
Colin Crossb916a382016-07-29 17:28:03 -0700109func (binary *binaryDecorator) getStem(ctx BaseModuleContext) string {
Colin Crossce75d2c2016-10-06 16:12:58 -0700110 stem := ctx.baseModuleName()
Nan Zhang0007d812017-11-07 10:57:05 -0800111 if String(binary.Properties.Stem) != "" {
112 stem = String(binary.Properties.Stem)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700113 }
114
Nan Zhang0007d812017-11-07 10:57:05 -0800115 return stem + String(binary.Properties.Suffix)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700116}
117
Colin Cross37047f12016-12-13 17:06:13 -0800118func (binary *binaryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
Colin Cross42742b82016-08-01 13:20:05 -0700119 deps = binary.baseLinker.linkerDeps(ctx, deps)
Dan Willemsen2e47b342016-11-17 01:02:25 -0800120 if ctx.toolchain().Bionic() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700121 if !Bool(binary.baseLinker.Properties.Nocrt) {
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700122 if !ctx.useSdk() {
Colin Crossb916a382016-07-29 17:28:03 -0700123 if binary.static() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700124 deps.CrtBegin = "crtbegin_static"
125 } else {
126 deps.CrtBegin = "crtbegin_dynamic"
127 }
128 deps.CrtEnd = "crtend_android"
129 } else {
Dan Albertebedf672016-11-08 15:06:22 -0800130 // TODO(danalbert): Add generation of crt objects.
131 // For `sdk_version: "current"`, we don't actually have a
132 // freshly generated set of CRT objects. Use the last stable
133 // version.
134 version := ctx.sdkVersion()
135 if version == "current" {
Jayant Chowdhary6e8115a2017-05-09 10:21:52 -0700136 version = getCurrentNdkPrebuiltVersion(ctx)
Dan Albertebedf672016-11-08 15:06:22 -0800137 }
138
Colin Crossb916a382016-07-29 17:28:03 -0700139 if binary.static() {
Dan Albertebedf672016-11-08 15:06:22 -0800140 deps.CrtBegin = "ndk_crtbegin_static." + version
Colin Cross4d9c2d12016-07-29 12:48:20 -0700141 } else {
Colin Crossb916a382016-07-29 17:28:03 -0700142 if binary.static() {
Dan Albertebedf672016-11-08 15:06:22 -0800143 deps.CrtBegin = "ndk_crtbegin_static." + version
Colin Cross4d9c2d12016-07-29 12:48:20 -0700144 } else {
Dan Albertebedf672016-11-08 15:06:22 -0800145 deps.CrtBegin = "ndk_crtbegin_dynamic." + version
Colin Cross4d9c2d12016-07-29 12:48:20 -0700146 }
Dan Albertebedf672016-11-08 15:06:22 -0800147 deps.CrtEnd = "ndk_crtend_android." + version
Colin Cross4d9c2d12016-07-29 12:48:20 -0700148 }
149 }
150 }
151
Colin Crossb916a382016-07-29 17:28:03 -0700152 if binary.static() {
Dan Albertdc2597d2017-01-26 17:44:26 -0800153 if ctx.selectedStl() == "libc++_static" {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700154 deps.StaticLibs = append(deps.StaticLibs, "libm", "libc", "libdl")
155 }
156 // static libraries libcompiler_rt, libc and libc_nomalloc need to be linked with
157 // --start-group/--end-group along with libgcc. If they are in deps.StaticLibs,
158 // move them to the beginning of deps.LateStaticLibs
159 var groupLibs []string
160 deps.StaticLibs, groupLibs = filterList(deps.StaticLibs,
161 []string{"libc", "libc_nomalloc", "libcompiler_rt"})
162 deps.LateStaticLibs = append(groupLibs, deps.LateStaticLibs...)
163 }
Dan Willemsenc77a0b32017-09-18 23:19:12 -0700164
165 if ctx.Os() == android.LinuxBionic && !binary.static() {
Dan Willemsena0790e32018-10-12 00:24:23 -0700166 deps.DynamicLinker = "linker"
167 deps.LinkerFlagsFile = "host_bionic_linker_flags"
Dan Willemsenc77a0b32017-09-18 23:19:12 -0700168 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700169 }
170
Colin Crossb916a382016-07-29 17:28:03 -0700171 if !binary.static() && inList("libc", deps.StaticLibs) {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700172 ctx.ModuleErrorf("statically linking libc to dynamic executable, please remove libc\n" +
173 "from static libs or set static_executable: true")
174 }
Colin Cross2383f3b2018-02-06 14:40:13 -0800175
Colin Cross4d9c2d12016-07-29 12:48:20 -0700176 return deps
177}
178
Colin Crossb916a382016-07-29 17:28:03 -0700179func (binary *binaryDecorator) isDependencyRoot() bool {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700180 return true
181}
182
Colin Crossb916a382016-07-29 17:28:03 -0700183func NewBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700184 module := newModule(hod, android.MultilibFirst)
Colin Crossb916a382016-07-29 17:28:03 -0700185 binary := &binaryDecorator{
Dan Albert61f32122018-07-26 14:00:24 -0700186 baseLinker: NewBaseLinker(module.sanitize),
Colin Cross1e7d3702016-08-24 15:25:47 -0700187 baseInstaller: NewBaseInstaller("bin", "", InstallInSystem),
Colin Cross4d9c2d12016-07-29 12:48:20 -0700188 }
Colin Crossb916a382016-07-29 17:28:03 -0700189 module.compiler = NewBaseCompiler()
190 module.linker = binary
Colin Cross1e7d3702016-08-24 15:25:47 -0700191 module.installer = binary
Colin Crossb916a382016-07-29 17:28:03 -0700192 return module, binary
Colin Cross4d9c2d12016-07-29 12:48:20 -0700193}
194
Colin Crossb916a382016-07-29 17:28:03 -0700195func (binary *binaryDecorator) linkerInit(ctx BaseModuleContext) {
Colin Cross42742b82016-08-01 13:20:05 -0700196 binary.baseLinker.linkerInit(ctx)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700197
Dan Willemsen2e47b342016-11-17 01:02:25 -0800198 if !ctx.toolchain().Bionic() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700199 if ctx.Os() == android.Linux {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700200 if binary.Properties.Static_executable == nil && ctx.Config().HostStaticBinaries() {
Nan Zhang0007d812017-11-07 10:57:05 -0800201 binary.Properties.Static_executable = BoolPtr(true)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700202 }
Doug Hornc32c6b02019-01-17 14:44:05 -0800203 } else if !ctx.Fuchsia() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700204 // Static executables are not supported on Darwin or Windows
Colin Crossb916a382016-07-29 17:28:03 -0700205 binary.Properties.Static_executable = nil
Colin Cross4d9c2d12016-07-29 12:48:20 -0700206 }
207 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700208}
209
Colin Crossb916a382016-07-29 17:28:03 -0700210func (binary *binaryDecorator) static() bool {
211 return Bool(binary.Properties.Static_executable)
212}
213
214func (binary *binaryDecorator) staticBinary() bool {
215 return binary.static()
216}
217
218func (binary *binaryDecorator) linkerFlags(ctx ModuleContext, flags Flags) Flags {
Colin Cross42742b82016-08-01 13:20:05 -0700219 flags = binary.baseLinker.linkerFlags(ctx, flags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700220
Colin Cross446c6662018-09-14 16:00:16 -0700221 if ctx.Host() && !ctx.Windows() && !binary.static() {
Colin Cross6510f912017-11-29 00:27:14 -0800222 if !ctx.Config().IsEnvTrue("DISABLE_HOST_PIE") {
Colin Cross7a108bc2017-01-30 22:44:19 -0800223 flags.LdFlags = append(flags.LdFlags, "-pie")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700224 }
225 }
226
227 // MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
228 // all code is position independent, and then those warnings get promoted to
229 // errors.
Colin Cross3edeee12017-04-04 12:59:48 -0700230 if !ctx.Windows() {
Vishwath Mohane87b7682017-04-17 16:21:41 -0700231 flags.CFlags = append(flags.CFlags, "-fPIE")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700232 }
233
Dan Willemsen2e47b342016-11-17 01:02:25 -0800234 if ctx.toolchain().Bionic() {
Colin Crossb916a382016-07-29 17:28:03 -0700235 if binary.static() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700236 // Clang driver needs -static to create static executable.
237 // However, bionic/linker uses -shared to overwrite.
238 // Linker for x86 targets does not allow coexistance of -static and -shared,
239 // so we add -static only if -shared is not used.
240 if !inList("-shared", flags.LdFlags) {
241 flags.LdFlags = append(flags.LdFlags, "-static")
242 }
243
244 flags.LdFlags = append(flags.LdFlags,
245 "-nostdlib",
246 "-Bstatic",
247 "-Wl,--gc-sections",
248 )
Colin Cross4d9c2d12016-07-29 12:48:20 -0700249 } else {
250 if flags.DynamicLinker == "" {
Colin Cross522e3732016-09-07 13:14:06 -0700251 if binary.Properties.DynamicLinker != "" {
252 flags.DynamicLinker = binary.Properties.DynamicLinker
253 } else {
Dan Willemsen01a405a2016-06-13 17:19:03 -0700254 switch ctx.Os() {
255 case android.Android:
Jiyong Parkf1194352019-02-25 11:05:47 +0900256 if ctx.bootstrap() && !ctx.inRecovery() {
Jiyong Parka4b9dd02019-01-16 22:53:13 +0900257 flags.DynamicLinker = "/system/bin/bootstrap/linker"
258 } else {
259 flags.DynamicLinker = "/system/bin/linker"
260 }
Dan Willemsena0790e32018-10-12 00:24:23 -0700261 if flags.Toolchain.Is64Bit() {
262 flags.DynamicLinker += "64"
263 }
Dan Willemsen01a405a2016-06-13 17:19:03 -0700264 case android.LinuxBionic:
Dan Willemsenc77a0b32017-09-18 23:19:12 -0700265 flags.DynamicLinker = ""
Dan Willemsen01a405a2016-06-13 17:19:03 -0700266 default:
267 ctx.ModuleErrorf("unknown dynamic linker")
268 }
Dan Willemsena0790e32018-10-12 00:24:23 -0700269 }
270
271 if ctx.Os() == android.LinuxBionic {
272 // Use the dlwrap entry point, but keep _start around so
273 // that it can be used by host_bionic_inject
274 flags.LdFlags = append(flags.LdFlags,
275 "-Wl,--entry=__dlwrap__start",
276 "-Wl,--undefined=_start",
277 )
Colin Cross4d9c2d12016-07-29 12:48:20 -0700278 }
279 }
280
281 flags.LdFlags = append(flags.LdFlags,
282 "-pie",
283 "-nostdlib",
284 "-Bdynamic",
285 "-Wl,--gc-sections",
286 "-Wl,-z,nocopyreloc",
287 )
288 }
289 } else {
Colin Crossb916a382016-07-29 17:28:03 -0700290 if binary.static() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700291 flags.LdFlags = append(flags.LdFlags, "-static")
292 }
293 if ctx.Darwin() {
294 flags.LdFlags = append(flags.LdFlags, "-Wl,-headerpad_max_install_names")
295 }
296 }
297
298 return flags
299}
300
Colin Crossb916a382016-07-29 17:28:03 -0700301func (binary *binaryDecorator) link(ctx ModuleContext,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700302 flags Flags, deps PathDeps, objs Objects) android.Path {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700303
304 fileName := binary.getStem(ctx) + flags.Toolchain.ExecutableSuffix()
305 outputFile := android.PathForModuleOut(ctx, fileName)
306 ret := outputFile
Colin Cross4d9c2d12016-07-29 12:48:20 -0700307
308 var linkerDeps android.Paths
309
Dan Willemsena0790e32018-10-12 00:24:23 -0700310 if deps.LinkerFlagsFile.Valid() {
311 flags.LdFlags = append(flags.LdFlags, "$$(cat "+deps.LinkerFlagsFile.String()+")")
312 linkerDeps = append(linkerDeps, deps.LinkerFlagsFile.Path())
Dan Willemsenc77a0b32017-09-18 23:19:12 -0700313 }
314
Colin Cross4d9c2d12016-07-29 12:48:20 -0700315 if flags.DynamicLinker != "" {
Dan Willemsena0790e32018-10-12 00:24:23 -0700316 flags.LdFlags = append(flags.LdFlags, "-Wl,-dynamic-linker,"+flags.DynamicLinker)
317 } else if ctx.toolchain().Bionic() && !binary.static() {
318 flags.LdFlags = append(flags.LdFlags, "-Wl,--no-dynamic-linker")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700319 }
320
321 builderFlags := flagsToBuilderFlags(flags)
322
323 if binary.stripper.needsStrip(ctx) {
Yi Kongb5c34d72018-11-07 16:28:49 -0800324 if ctx.Darwin() {
325 builderFlags.stripUseGnuStrip = true
326 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700327 strippedOutputFile := outputFile
328 outputFile = android.PathForModuleOut(ctx, "unstripped", fileName)
Ryan Prichardf979d732019-05-30 20:53:29 -0700329 binary.stripper.stripExecutableOrSharedLib(ctx, outputFile, strippedOutputFile, builderFlags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700330 }
331
Colin Crossb60190a2018-09-04 16:28:17 -0700332 binary.unstrippedOutputFile = outputFile
333
Nan Zhang0007d812017-11-07 10:57:05 -0800334 if String(binary.Properties.Prefix_symbols) != "" {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700335 afterPrefixSymbols := outputFile
336 outputFile = android.PathForModuleOut(ctx, "unprefixed", fileName)
Nan Zhang0007d812017-11-07 10:57:05 -0800337 TransformBinaryPrefixSymbols(ctx, String(binary.Properties.Prefix_symbols), outputFile,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700338 flagsToBuilderFlags(flags), afterPrefixSymbols)
339 }
340
Dan Willemsen569edc52018-11-19 09:33:29 -0800341 if Bool(binary.baseLinker.Properties.Use_version_lib) {
342 if ctx.Host() {
343 versionedOutputFile := outputFile
344 outputFile = android.PathForModuleOut(ctx, "unversioned", fileName)
345 binary.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
346 } else {
347 versionedOutputFile := android.PathForModuleOut(ctx, "versioned", fileName)
348 binary.distFile = android.OptionalPathForPath(versionedOutputFile)
349
350 if binary.stripper.needsStrip(ctx) {
351 out := android.PathForModuleOut(ctx, "versioned-stripped", fileName)
352 binary.distFile = android.OptionalPathForPath(out)
Ryan Prichardf979d732019-05-30 20:53:29 -0700353 binary.stripper.stripExecutableOrSharedLib(ctx, versionedOutputFile, out, builderFlags)
Dan Willemsen569edc52018-11-19 09:33:29 -0800354 }
355
356 binary.injectVersionSymbol(ctx, outputFile, versionedOutputFile)
357 }
Colin Cross86803cf2018-02-15 14:12:26 -0800358 }
359
Dan Willemsena0790e32018-10-12 00:24:23 -0700360 if ctx.Os() == android.LinuxBionic && !binary.static() {
361 injectedOutputFile := outputFile
362 outputFile = android.PathForModuleOut(ctx, "prelinker", fileName)
363
364 if !deps.DynamicLinker.Valid() {
365 panic("Non-static host bionic modules must have a dynamic linker")
366 }
367
368 binary.injectHostBionicLinkerSymbols(ctx, outputFile, deps.DynamicLinker.Path(), injectedOutputFile)
369 }
370
Jaewoong Jung232c07c2018-12-18 11:08:25 -0800371 var sharedLibs android.Paths
372 // Ignore shared libs for static executables.
373 if !binary.static() {
Jiyong Park64a44f22019-01-18 14:37:08 +0900374 sharedLibs = deps.EarlySharedLibs
375 sharedLibs = append(sharedLibs, deps.SharedLibs...)
Jaewoong Jung232c07c2018-12-18 11:08:25 -0800376 sharedLibs = append(sharedLibs, deps.LateSharedLibs...)
Jiyong Park64a44f22019-01-18 14:37:08 +0900377 linkerDeps = append(linkerDeps, deps.EarlySharedLibsDeps...)
Jaewoong Jung232c07c2018-12-18 11:08:25 -0800378 linkerDeps = append(linkerDeps, deps.SharedLibsDeps...)
379 linkerDeps = append(linkerDeps, deps.LateSharedLibsDeps...)
380 }
381
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700382 linkerDeps = append(linkerDeps, objs.tidyFiles...)
Pirama Arumuga Nainarada83ec2017-08-31 23:38:27 -0700383 linkerDeps = append(linkerDeps, flags.LdFlagsDeps...)
Colin Cross26c34ed2016-09-30 17:10:16 -0700384
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700385 TransformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs, deps.StaticLibs,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700386 deps.LateStaticLibs, deps.WholeStaticLibs, linkerDeps, deps.CrtBegin, deps.CrtEnd, true,
Pirama Arumuga Nainar6d8c0a52019-04-15 23:03:38 -0700387 builderFlags, outputFile, nil)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700388
Dan Willemsen581341d2017-02-09 16:16:31 -0800389 objs.coverageFiles = append(objs.coverageFiles, deps.StaticLibObjs.coverageFiles...)
390 objs.coverageFiles = append(objs.coverageFiles, deps.WholeStaticLibObjs.coverageFiles...)
391 binary.coverageOutputFile = TransformCoverageFilesToLib(ctx, objs, builderFlags, binary.getStem(ctx))
392
Alex Light3d673592019-01-18 14:37:31 -0800393 // Need to determine symlinks early since some targets (ie APEX) need this
394 // information but will not call 'install'
Colin Cross9b09f242016-12-07 13:37:42 -0800395 for _, symlink := range binary.Properties.Symlinks {
396 binary.symlinks = append(binary.symlinks,
Nan Zhang0007d812017-11-07 10:57:05 -0800397 symlink+String(binary.Properties.Suffix)+ctx.toolchain().ExecutableSuffix())
Colin Cross9b09f242016-12-07 13:37:42 -0800398 }
399
Nan Zhang0007d812017-11-07 10:57:05 -0800400 if Bool(binary.Properties.Symlink_preferred_arch) {
401 if String(binary.Properties.Stem) == "" && String(binary.Properties.Suffix) == "" {
Colin Cross9b09f242016-12-07 13:37:42 -0800402 ctx.PropertyErrorf("symlink_preferred_arch", "must also specify stem or suffix")
403 }
404 if ctx.TargetPrimary() {
405 binary.symlinks = append(binary.symlinks, ctx.baseModuleName())
406 }
407 }
408
Alex Light3d673592019-01-18 14:37:31 -0800409 return ret
410}
411
Jiyong Parkaf6d8952019-01-31 12:21:23 +0900412func (binary *binaryDecorator) unstrippedOutputFilePath() android.Path {
413 return binary.unstrippedOutputFile
414}
415
Alex Light3d673592019-01-18 14:37:31 -0800416func (binary *binaryDecorator) symlinkList() []string {
417 return binary.symlinks
418}
419
Pirama Arumuga Nainar65c95ff2019-03-25 10:21:31 -0700420func (binary *binaryDecorator) nativeCoverage() bool {
421 return true
422}
423
Jiyong Parkf1194352019-02-25 11:05:47 +0900424// /system/bin/linker -> /apex/com.android.runtime/bin/linker
425func (binary *binaryDecorator) installSymlinkToRuntimeApex(ctx ModuleContext, file android.Path) {
426 dir := binary.baseInstaller.installDir(ctx)
427 dirOnDevice := android.InstallPathToOnDevicePath(ctx, dir)
428 target := "/" + filepath.Join("apex", "com.android.runtime", dir.Base(), file.Base())
429
430 ctx.InstallAbsoluteSymlink(dir, file.Base(), target)
431 binary.post_install_cmds = append(binary.post_install_cmds, makeSymlinkCmd(dirOnDevice, file.Base(), target))
432
433 for _, symlink := range binary.symlinks {
434 ctx.InstallAbsoluteSymlink(dir, symlink, target)
435 binary.post_install_cmds = append(binary.post_install_cmds, makeSymlinkCmd(dirOnDevice, symlink, target))
436 }
437}
438
Alex Light3d673592019-01-18 14:37:31 -0800439func (binary *binaryDecorator) install(ctx ModuleContext, file android.Path) {
Jiyong Parkf1194352019-02-25 11:05:47 +0900440 // Bionic binaries (e.g. linker) is installed to the bootstrap subdirectory.
441 // The original path becomes a symlink to the corresponding file in the
442 // runtime APEX.
Peter Collingbourne3478bb22019-04-24 14:41:12 -0700443 if installToBootstrap(ctx.baseModuleName(), ctx.Config()) && ctx.Arch().Native && ctx.apexName() == "" && !ctx.inRecovery() {
444 if ctx.Device() && isBionic(ctx.baseModuleName()) {
Jiyong Parkc3e2c862019-03-16 01:10:08 +0900445 binary.installSymlinkToRuntimeApex(ctx, file)
446 }
Jiyong Parkf1194352019-02-25 11:05:47 +0900447 binary.baseInstaller.subDir = "bootstrap"
448 }
Alex Light3d673592019-01-18 14:37:31 -0800449 binary.baseInstaller.install(ctx, file)
Colin Cross9b09f242016-12-07 13:37:42 -0800450 for _, symlink := range binary.symlinks {
451 ctx.InstallSymlink(binary.baseInstaller.installDir(ctx), symlink, binary.baseInstaller.path)
452 }
453
Dan Willemsen4aa75ca2016-09-28 16:18:03 -0700454 if ctx.Os().Class == android.Host {
455 binary.toolPath = android.OptionalPathForPath(binary.baseInstaller.path)
456 }
457}
458
459func (binary *binaryDecorator) hostToolPath() android.OptionalPath {
460 return binary.toolPath
Colin Cross4d9c2d12016-07-29 12:48:20 -0700461}
Dan Willemsena0790e32018-10-12 00:24:23 -0700462
463func init() {
464 pctx.HostBinToolVariable("hostBionicSymbolsInjectCmd", "host_bionic_inject")
465}
466
467var injectHostBionicSymbols = pctx.AndroidStaticRule("injectHostBionicSymbols",
468 blueprint.RuleParams{
469 Command: "$hostBionicSymbolsInjectCmd -i $in -l $linker -o $out",
470 CommandDeps: []string{"$hostBionicSymbolsInjectCmd"},
471 }, "linker")
472
473func (binary *binaryDecorator) injectHostBionicLinkerSymbols(ctx ModuleContext, in, linker android.Path, out android.WritablePath) {
474 ctx.Build(pctx, android.BuildParams{
475 Rule: injectHostBionicSymbols,
476 Description: "inject host bionic symbols",
477 Input: in,
478 Implicit: linker,
479 Output: out,
480 Args: map[string]string{
481 "linker": linker.String(),
482 },
483 })
484}