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 | f119435 | 2019-02-25 11:05:47 +0900 | [diff] [blame] | 18 | "path/filepath" |
| 19 | |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 20 | "github.com/google/blueprint" |
| 21 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 22 | "android/soong/android" |
Liz Kammer | 2b8004b | 2021-10-04 13:55:44 -0400 | [diff] [blame] | 23 | "android/soong/bazel" |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 24 | ) |
| 25 | |
| 26 | type BinaryLinkerProperties struct { |
| 27 | // compile executable with -static |
| 28 | Static_executable *bool `android:"arch_variant"` |
| 29 | |
| 30 | // set the name of the output |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 31 | Stem *string `android:"arch_variant"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 32 | |
| 33 | // append to the name of the output |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 34 | Suffix *string `android:"arch_variant"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 35 | |
| 36 | // if set, add an extra objcopy --prefix-symbols= step |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 37 | Prefix_symbols *string |
Colin Cross | 1e7d370 | 2016-08-24 15:25:47 -0700 | [diff] [blame] | 38 | |
| 39 | // if set, install a symlink to the preferred architecture |
Roland Levillain | d9bf9be | 2019-06-05 19:20:33 +0100 | [diff] [blame] | 40 | Symlink_preferred_arch *bool `android:"arch_variant"` |
Colin Cross | 522e373 | 2016-09-07 13:14:06 -0700 | [diff] [blame] | 41 | |
Colin Cross | 9b09f24 | 2016-12-07 13:37:42 -0800 | [diff] [blame] | 42 | // install symlinks to the binary. Symlink names will have the suffix and the binary |
| 43 | // extension (if any) appended |
| 44 | Symlinks []string `android:"arch_variant"` |
| 45 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 46 | // override the dynamic linker |
Colin Cross | 522e373 | 2016-09-07 13:14:06 -0700 | [diff] [blame] | 47 | DynamicLinker string `blueprint:"mutated"` |
Yifan Hong | 946e32e | 2018-04-03 13:22:50 -0700 | [diff] [blame] | 48 | |
| 49 | // Names of modules to be overridden. Listed modules can only be other binaries |
| 50 | // (in Make or Soong). |
| 51 | // This does not completely prevent installation of the overridden binaries, but if both |
| 52 | // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed |
| 53 | // from PRODUCT_PACKAGES. |
| 54 | Overrides []string |
Colin Cross | d7227f9 | 2019-09-05 14:26:33 -0700 | [diff] [blame] | 55 | |
| 56 | // Inject boringssl hash into the shared library. This is only intended for use by external/boringssl. |
| 57 | Inject_bssl_hash *bool `android:"arch_variant"` |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | func init() { |
Paul Duffin | 2ee6979 | 2020-01-16 12:14:42 +0000 | [diff] [blame] | 61 | RegisterBinaryBuildComponents(android.InitRegistrationContext) |
| 62 | } |
| 63 | |
| 64 | func RegisterBinaryBuildComponents(ctx android.RegistrationContext) { |
| 65 | ctx.RegisterModuleType("cc_binary", BinaryFactory) |
Liz Kammer | 2b8004b | 2021-10-04 13:55:44 -0400 | [diff] [blame] | 66 | ctx.RegisterModuleType("cc_binary_host", BinaryHostFactory) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 67 | } |
| 68 | |
Patrice Arruda | c249c71 | 2019-03-19 17:00:29 -0700 | [diff] [blame] | 69 | // cc_binary produces a binary that is runnable on a device. |
Jiyong Park | 16e91a0 | 2018-12-20 18:18:08 +0900 | [diff] [blame] | 70 | func BinaryFactory() android.Module { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 71 | module, _ := NewBinary(android.HostAndDeviceSupported) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 72 | return module.Init() |
| 73 | } |
| 74 | |
Patrice Arruda | c249c71 | 2019-03-19 17:00:29 -0700 | [diff] [blame] | 75 | // cc_binary_host produces a binary that is runnable on a host. |
Liz Kammer | 2b8004b | 2021-10-04 13:55:44 -0400 | [diff] [blame] | 76 | func BinaryHostFactory() android.Module { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 77 | module, _ := NewBinary(android.HostSupported) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 78 | return module.Init() |
| 79 | } |
| 80 | |
| 81 | // |
| 82 | // Executables |
| 83 | // |
| 84 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 85 | // binaryDecorator is a decorator containing information for C++ binary modules. |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 86 | type binaryDecorator struct { |
| 87 | *baseLinker |
Colin Cross | 1e7d370 | 2016-08-24 15:25:47 -0700 | [diff] [blame] | 88 | *baseInstaller |
ThiƩbaud Weksteen | d458745 | 2020-08-19 14:53:01 +0200 | [diff] [blame] | 89 | stripper Stripper |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 90 | |
| 91 | Properties BinaryLinkerProperties |
| 92 | |
Dan Willemsen | 4aa75ca | 2016-09-28 16:18:03 -0700 | [diff] [blame] | 93 | toolPath android.OptionalPath |
Colin Cross | 9b09f24 | 2016-12-07 13:37:42 -0800 | [diff] [blame] | 94 | |
Colin Cross | b60190a | 2018-09-04 16:28:17 -0700 | [diff] [blame] | 95 | // Location of the linked, unstripped binary |
| 96 | unstrippedOutputFile android.Path |
| 97 | |
Colin Cross | 9b09f24 | 2016-12-07 13:37:42 -0800 | [diff] [blame] | 98 | // Names of symlinks to be installed for use in LOCAL_MODULE_SYMLINKS |
| 99 | symlinks []string |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 100 | |
Colin Cross | a615901 | 2020-11-12 12:14:36 -0800 | [diff] [blame] | 101 | // If the module has symlink_preferred_arch set, the name of the symlink to the |
| 102 | // binary for the preferred arch. |
| 103 | preferredArchSymlink string |
| 104 | |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 105 | // Output archive of gcno coverage information |
| 106 | coverageOutputFile android.OptionalPath |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame] | 107 | |
Jingwen Chen | 40fd90a | 2020-06-15 05:24:19 +0000 | [diff] [blame] | 108 | // Location of the files that should be copied to dist dir when requested |
| 109 | distFiles android.TaggedDistFiles |
Jiyong Park | f119435 | 2019-02-25 11:05:47 +0900 | [diff] [blame] | 110 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 111 | // Action command lines to run directly after the binary is installed. For example, |
| 112 | // may be used to symlink runtime dependencies (such as bionic) alongside installation. |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 113 | postInstallCmds []string |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 114 | } |
| 115 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 116 | var _ linker = (*binaryDecorator)(nil) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 117 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 118 | // linkerProps returns the list of individual properties objects relevant |
| 119 | // for this binary. |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 120 | func (binary *binaryDecorator) linkerProps() []interface{} { |
Colin Cross | 42742b8 | 2016-08-01 13:20:05 -0700 | [diff] [blame] | 121 | return append(binary.baseLinker.linkerProps(), |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 122 | &binary.Properties, |
| 123 | &binary.stripper.StripProperties) |
| 124 | |
| 125 | } |
| 126 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 127 | // getStemWithoutSuffix returns the main section of the name to use for the symlink of |
| 128 | // the main output file of this binary module. This may be derived from the module name |
| 129 | // or other property overrides. |
| 130 | // For the full symlink name, the `Suffix` property of a binary module must be appended. |
Roland Levillain | 9efb8c7 | 2019-06-05 13:31:31 +0100 | [diff] [blame] | 131 | func (binary *binaryDecorator) getStemWithoutSuffix(ctx BaseModuleContext) string { |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 132 | stem := ctx.baseModuleName() |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 133 | if String(binary.Properties.Stem) != "" { |
| 134 | stem = String(binary.Properties.Stem) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Roland Levillain | 9efb8c7 | 2019-06-05 13:31:31 +0100 | [diff] [blame] | 137 | return stem |
| 138 | } |
| 139 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 140 | // getStem returns the full name to use for the symlink of the main output file of this binary |
| 141 | // module. This may be derived from the module name and/or other property overrides. |
Roland Levillain | 9efb8c7 | 2019-06-05 13:31:31 +0100 | [diff] [blame] | 142 | func (binary *binaryDecorator) getStem(ctx BaseModuleContext) string { |
| 143 | return binary.getStemWithoutSuffix(ctx) + String(binary.Properties.Suffix) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 144 | } |
| 145 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 146 | // linkerDeps augments and returns the given `deps` to contain dependencies on |
| 147 | // modules common to most binaries, such as bionic libraries. |
Colin Cross | 37047f1 | 2016-12-13 17:06:13 -0800 | [diff] [blame] | 148 | func (binary *binaryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { |
Colin Cross | 42742b8 | 2016-08-01 13:20:05 -0700 | [diff] [blame] | 149 | deps = binary.baseLinker.linkerDeps(ctx, deps) |
Colin Cross | d1a2813 | 2021-06-21 17:34:47 -0700 | [diff] [blame] | 150 | if !Bool(binary.baseLinker.Properties.Nocrt) { |
| 151 | if binary.static() { |
| 152 | deps.CrtBegin = ctx.toolchain().CrtBeginStaticBinary() |
| 153 | deps.CrtEnd = ctx.toolchain().CrtEndStaticBinary() |
| 154 | } else { |
| 155 | deps.CrtBegin = ctx.toolchain().CrtBeginSharedBinary() |
| 156 | deps.CrtEnd = ctx.toolchain().CrtEndSharedBinary() |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 157 | } |
Colin Cross | d1a2813 | 2021-06-21 17:34:47 -0700 | [diff] [blame] | 158 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 159 | |
Colin Cross | 450744e | 2021-08-18 13:52:09 -0700 | [diff] [blame] | 160 | if binary.static() { |
| 161 | deps.StaticLibs = append(deps.StaticLibs, deps.SystemSharedLibs...) |
| 162 | } |
| 163 | |
Colin Cross | d1a2813 | 2021-06-21 17:34:47 -0700 | [diff] [blame] | 164 | if ctx.toolchain().Bionic() { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 165 | if binary.static() { |
Dan Albert | dc2597d | 2017-01-26 17:44:26 -0800 | [diff] [blame] | 166 | if ctx.selectedStl() == "libc++_static" { |
Ryan Prichard | b49fe1b | 2019-10-11 15:03:34 -0700 | [diff] [blame] | 167 | deps.StaticLibs = append(deps.StaticLibs, "libm", "libc") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 168 | } |
| 169 | // static libraries libcompiler_rt, libc and libc_nomalloc need to be linked with |
| 170 | // --start-group/--end-group along with libgcc. If they are in deps.StaticLibs, |
| 171 | // move them to the beginning of deps.LateStaticLibs |
| 172 | var groupLibs []string |
| 173 | deps.StaticLibs, groupLibs = filterList(deps.StaticLibs, |
| 174 | []string{"libc", "libc_nomalloc", "libcompiler_rt"}) |
| 175 | deps.LateStaticLibs = append(groupLibs, deps.LateStaticLibs...) |
| 176 | } |
Dan Willemsen | c77a0b3 | 2017-09-18 23:19:12 -0700 | [diff] [blame] | 177 | |
| 178 | if ctx.Os() == android.LinuxBionic && !binary.static() { |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 179 | deps.DynamicLinker = "linker" |
Dan Willemsen | c77a0b3 | 2017-09-18 23:19:12 -0700 | [diff] [blame] | 180 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 181 | } |
| 182 | |
Liz Kammer | 356f7d4 | 2021-01-26 09:18:53 -0500 | [diff] [blame] | 183 | if !binary.static() && inList("libc", deps.StaticLibs) && !ctx.BazelConversionMode() { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 184 | ctx.ModuleErrorf("statically linking libc to dynamic executable, please remove libc\n" + |
| 185 | "from static libs or set static_executable: true") |
| 186 | } |
Colin Cross | 2383f3b | 2018-02-06 14:40:13 -0800 | [diff] [blame] | 187 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 188 | return deps |
| 189 | } |
| 190 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 191 | // NewBinary builds and returns a new Module corresponding to a C++ binary. |
| 192 | // Individual module implementations which comprise a C++ binary should call this function, |
| 193 | // set some fields on the result, and then call the Init function. |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 194 | func NewBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 195 | module := newModule(hod, android.MultilibFirst) |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 196 | binary := &binaryDecorator{ |
Dan Albert | 61f3212 | 2018-07-26 14:00:24 -0700 | [diff] [blame] | 197 | baseLinker: NewBaseLinker(module.sanitize), |
Colin Cross | 1e7d370 | 2016-08-24 15:25:47 -0700 | [diff] [blame] | 198 | baseInstaller: NewBaseInstaller("bin", "", InstallInSystem), |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 199 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 200 | module.compiler = NewBaseCompiler() |
| 201 | module.linker = binary |
Colin Cross | 1e7d370 | 2016-08-24 15:25:47 -0700 | [diff] [blame] | 202 | module.installer = binary |
Paul Duffin | 25ce04b | 2020-01-16 11:47:25 +0000 | [diff] [blame] | 203 | |
| 204 | // Allow module to be added as member of an sdk/module_exports. |
| 205 | module.sdkMemberTypes = []android.SdkMemberType{ |
| 206 | ccBinarySdkMemberType, |
| 207 | } |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 208 | return module, binary |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 209 | } |
| 210 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 211 | // linkerInit initializes dynamic properties of the linker (such as runpath) based |
| 212 | // on properties of this binary. |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 213 | func (binary *binaryDecorator) linkerInit(ctx BaseModuleContext) { |
Colin Cross | 42742b8 | 2016-08-01 13:20:05 -0700 | [diff] [blame] | 214 | binary.baseLinker.linkerInit(ctx) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 215 | |
Colin Cross | a793db3 | 2021-08-18 13:53:58 -0700 | [diff] [blame] | 216 | if !ctx.toolchain().Bionic() && !ctx.toolchain().Musl() { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 217 | if ctx.Os() == android.Linux { |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 218 | // Unless explicitly specified otherwise, host static binaries are built with -static |
| 219 | // if HostStaticBinaries is true for the product configuration. |
Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 220 | if binary.Properties.Static_executable == nil && ctx.Config().HostStaticBinaries() { |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 221 | binary.Properties.Static_executable = BoolPtr(true) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 222 | } |
Colin Cross | cb0ac95 | 2021-07-20 13:17:15 -0700 | [diff] [blame] | 223 | } else { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 224 | // Static executables are not supported on Darwin or Windows |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 225 | binary.Properties.Static_executable = nil |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 226 | } |
| 227 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 228 | } |
| 229 | |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 230 | func (binary *binaryDecorator) static() bool { |
| 231 | return Bool(binary.Properties.Static_executable) |
| 232 | } |
| 233 | |
| 234 | func (binary *binaryDecorator) staticBinary() bool { |
| 235 | return binary.static() |
| 236 | } |
| 237 | |
Inseob Kim | 7f283f4 | 2020-06-01 21:53:49 +0900 | [diff] [blame] | 238 | func (binary *binaryDecorator) binary() bool { |
| 239 | return true |
| 240 | } |
| 241 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 242 | // linkerFlags returns a Flags object containing linker flags that are defined |
| 243 | // by this binary, or that are implied by attributes of this binary. These flags are |
| 244 | // combined with the given flags. |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 245 | func (binary *binaryDecorator) linkerFlags(ctx ModuleContext, flags Flags) Flags { |
Colin Cross | 42742b8 | 2016-08-01 13:20:05 -0700 | [diff] [blame] | 246 | flags = binary.baseLinker.linkerFlags(ctx, flags) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 247 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 248 | // Passing -pie to clang for Windows binaries causes a warning that -pie is unused. |
Colin Cross | 446c666 | 2018-09-14 16:00:16 -0700 | [diff] [blame] | 249 | if ctx.Host() && !ctx.Windows() && !binary.static() { |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 250 | if !ctx.Config().IsEnvTrue("DISABLE_HOST_PIE") { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 251 | flags.Global.LdFlags = append(flags.Global.LdFlags, "-pie") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 252 | } |
| 253 | } |
| 254 | |
| 255 | // MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because |
| 256 | // all code is position independent, and then those warnings get promoted to |
| 257 | // errors. |
Colin Cross | 3edeee1 | 2017-04-04 12:59:48 -0700 | [diff] [blame] | 258 | if !ctx.Windows() { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 259 | flags.Global.CFlags = append(flags.Global.CFlags, "-fPIE") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 260 | } |
| 261 | |
Dan Willemsen | 2e47b34 | 2016-11-17 01:02:25 -0800 | [diff] [blame] | 262 | if ctx.toolchain().Bionic() { |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 263 | if binary.static() { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 264 | // Clang driver needs -static to create static executable. |
| 265 | // However, bionic/linker uses -shared to overwrite. |
| 266 | // Linker for x86 targets does not allow coexistance of -static and -shared, |
| 267 | // so we add -static only if -shared is not used. |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 268 | if !inList("-shared", flags.Local.LdFlags) { |
| 269 | flags.Global.LdFlags = append(flags.Global.LdFlags, "-static") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 270 | } |
| 271 | |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 272 | flags.Global.LdFlags = append(flags.Global.LdFlags, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 273 | "-nostdlib", |
| 274 | "-Bstatic", |
| 275 | "-Wl,--gc-sections", |
| 276 | ) |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 277 | } else { // not static |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 278 | if flags.DynamicLinker == "" { |
Colin Cross | 522e373 | 2016-09-07 13:14:06 -0700 | [diff] [blame] | 279 | if binary.Properties.DynamicLinker != "" { |
| 280 | flags.DynamicLinker = binary.Properties.DynamicLinker |
| 281 | } else { |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 282 | switch ctx.Os() { |
| 283 | case android.Android: |
Yifan Hong | 60e0cfb | 2020-10-21 15:17:56 -0700 | [diff] [blame] | 284 | if ctx.bootstrap() && !ctx.inRecovery() && !ctx.inRamdisk() && !ctx.inVendorRamdisk() { |
Jiyong Park | a4b9dd0 | 2019-01-16 22:53:13 +0900 | [diff] [blame] | 285 | flags.DynamicLinker = "/system/bin/bootstrap/linker" |
| 286 | } else { |
| 287 | flags.DynamicLinker = "/system/bin/linker" |
| 288 | } |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 289 | if flags.Toolchain.Is64Bit() { |
| 290 | flags.DynamicLinker += "64" |
| 291 | } |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 292 | case android.LinuxBionic: |
Dan Willemsen | c77a0b3 | 2017-09-18 23:19:12 -0700 | [diff] [blame] | 293 | flags.DynamicLinker = "" |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 294 | default: |
| 295 | ctx.ModuleErrorf("unknown dynamic linker") |
| 296 | } |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | if ctx.Os() == android.LinuxBionic { |
| 300 | // Use the dlwrap entry point, but keep _start around so |
| 301 | // that it can be used by host_bionic_inject |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 302 | flags.Global.LdFlags = append(flags.Global.LdFlags, |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 303 | "-Wl,--entry=__dlwrap__start", |
| 304 | "-Wl,--undefined=_start", |
| 305 | ) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 306 | } |
| 307 | } |
| 308 | |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 309 | flags.Global.LdFlags = append(flags.Global.LdFlags, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 310 | "-pie", |
| 311 | "-nostdlib", |
| 312 | "-Bdynamic", |
| 313 | "-Wl,--gc-sections", |
| 314 | "-Wl,-z,nocopyreloc", |
| 315 | ) |
| 316 | } |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 317 | } else { // not bionic |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 318 | if binary.static() { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 319 | flags.Global.LdFlags = append(flags.Global.LdFlags, "-static") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 320 | } |
| 321 | if ctx.Darwin() { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 322 | flags.Global.LdFlags = append(flags.Global.LdFlags, "-Wl,-headerpad_max_install_names") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 323 | } |
| 324 | } |
| 325 | |
| 326 | return flags |
| 327 | } |
| 328 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 329 | // link registers actions to link this binary, and sets various fields |
| 330 | // on this binary to reflect information that should be exported up the build |
| 331 | // tree (for example, exported flags and include paths). |
Colin Cross | b916a38 | 2016-07-29 17:28:03 -0700 | [diff] [blame] | 332 | func (binary *binaryDecorator) link(ctx ModuleContext, |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 333 | flags Flags, deps PathDeps, objs Objects) android.Path { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 334 | |
| 335 | fileName := binary.getStem(ctx) + flags.Toolchain.ExecutableSuffix() |
| 336 | outputFile := android.PathForModuleOut(ctx, fileName) |
| 337 | ret := outputFile |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 338 | |
| 339 | var linkerDeps android.Paths |
| 340 | |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 341 | if flags.DynamicLinker != "" { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 342 | flags.Local.LdFlags = append(flags.Local.LdFlags, "-Wl,-dynamic-linker,"+flags.DynamicLinker) |
Colin Cross | 528d67e | 2021-07-23 22:23:07 +0000 | [diff] [blame] | 343 | } else if (ctx.toolchain().Bionic() || ctx.toolchain().Musl()) && !binary.static() { |
Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 344 | flags.Local.LdFlags = append(flags.Local.LdFlags, "-Wl,--no-dynamic-linker") |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | builderFlags := flagsToBuilderFlags(flags) |
ThiƩbaud Weksteen | d458745 | 2020-08-19 14:53:01 +0200 | [diff] [blame] | 348 | stripFlags := flagsToStripFlags(flags) |
| 349 | if binary.stripper.NeedsStrip(ctx) { |
Yi Kong | b5c34d7 | 2018-11-07 16:28:49 -0800 | [diff] [blame] | 350 | if ctx.Darwin() { |
ThiƩbaud Weksteen | d458745 | 2020-08-19 14:53:01 +0200 | [diff] [blame] | 351 | stripFlags.StripUseGnuStrip = true |
Yi Kong | b5c34d7 | 2018-11-07 16:28:49 -0800 | [diff] [blame] | 352 | } |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 353 | strippedOutputFile := outputFile |
| 354 | outputFile = android.PathForModuleOut(ctx, "unstripped", fileName) |
ThiƩbaud Weksteen | d458745 | 2020-08-19 14:53:01 +0200 | [diff] [blame] | 355 | binary.stripper.StripExecutableOrSharedLib(ctx, outputFile, strippedOutputFile, stripFlags) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 356 | } |
| 357 | |
Colin Cross | b60190a | 2018-09-04 16:28:17 -0700 | [diff] [blame] | 358 | binary.unstrippedOutputFile = outputFile |
| 359 | |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 360 | if String(binary.Properties.Prefix_symbols) != "" { |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 361 | afterPrefixSymbols := outputFile |
| 362 | outputFile = android.PathForModuleOut(ctx, "unprefixed", fileName) |
Chris Parsons | bf4f55f | 2020-11-23 17:02:44 -0500 | [diff] [blame] | 363 | transformBinaryPrefixSymbols(ctx, String(binary.Properties.Prefix_symbols), outputFile, |
ThiƩbaud Weksteen | d458745 | 2020-08-19 14:53:01 +0200 | [diff] [blame] | 364 | builderFlags, afterPrefixSymbols) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 365 | } |
| 366 | |
Colin Cross | d7227f9 | 2019-09-05 14:26:33 -0700 | [diff] [blame] | 367 | outputFile = maybeInjectBoringSSLHash(ctx, outputFile, binary.Properties.Inject_bssl_hash, fileName) |
| 368 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 369 | // If use_version_lib is true, make an android::build::GetBuildNumber() function available. |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame] | 370 | if Bool(binary.baseLinker.Properties.Use_version_lib) { |
| 371 | if ctx.Host() { |
| 372 | versionedOutputFile := outputFile |
| 373 | outputFile = android.PathForModuleOut(ctx, "unversioned", fileName) |
| 374 | binary.injectVersionSymbol(ctx, outputFile, versionedOutputFile) |
| 375 | } else { |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 376 | // When dist'ing a library or binary that has use_version_lib set, always |
| 377 | // distribute the stamped version, even for the device. |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame] | 378 | versionedOutputFile := android.PathForModuleOut(ctx, "versioned", fileName) |
Jingwen Chen | 40fd90a | 2020-06-15 05:24:19 +0000 | [diff] [blame] | 379 | binary.distFiles = android.MakeDefaultDistFiles(versionedOutputFile) |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame] | 380 | |
ThiƩbaud Weksteen | d458745 | 2020-08-19 14:53:01 +0200 | [diff] [blame] | 381 | if binary.stripper.NeedsStrip(ctx) { |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame] | 382 | out := android.PathForModuleOut(ctx, "versioned-stripped", fileName) |
Jingwen Chen | 40fd90a | 2020-06-15 05:24:19 +0000 | [diff] [blame] | 383 | binary.distFiles = android.MakeDefaultDistFiles(out) |
ThiƩbaud Weksteen | d458745 | 2020-08-19 14:53:01 +0200 | [diff] [blame] | 384 | binary.stripper.StripExecutableOrSharedLib(ctx, versionedOutputFile, out, stripFlags) |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | binary.injectVersionSymbol(ctx, outputFile, versionedOutputFile) |
| 388 | } |
Colin Cross | 86803cf | 2018-02-15 14:12:26 -0800 | [diff] [blame] | 389 | } |
| 390 | |
Colin Cross | f04eb99 | 2021-06-11 15:22:41 -0700 | [diff] [blame] | 391 | var validations android.WritablePaths |
| 392 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 393 | // Handle host bionic linker symbols. |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 394 | if ctx.Os() == android.LinuxBionic && !binary.static() { |
Colin Cross | f04eb99 | 2021-06-11 15:22:41 -0700 | [diff] [blame] | 395 | verifyFile := android.PathForModuleOut(ctx, "host_bionic_verify.stamp") |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 396 | |
| 397 | if !deps.DynamicLinker.Valid() { |
| 398 | panic("Non-static host bionic modules must have a dynamic linker") |
| 399 | } |
| 400 | |
Colin Cross | f04eb99 | 2021-06-11 15:22:41 -0700 | [diff] [blame] | 401 | binary.verifyHostBionicLinker(ctx, outputFile, deps.DynamicLinker.Path(), verifyFile) |
| 402 | validations = append(validations, verifyFile) |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 403 | } |
| 404 | |
Jaewoong Jung | 232c07c | 2018-12-18 11:08:25 -0800 | [diff] [blame] | 405 | var sharedLibs android.Paths |
| 406 | // Ignore shared libs for static executables. |
| 407 | if !binary.static() { |
Jiyong Park | 64a44f2 | 2019-01-18 14:37:08 +0900 | [diff] [blame] | 408 | sharedLibs = deps.EarlySharedLibs |
| 409 | sharedLibs = append(sharedLibs, deps.SharedLibs...) |
Jaewoong Jung | 232c07c | 2018-12-18 11:08:25 -0800 | [diff] [blame] | 410 | sharedLibs = append(sharedLibs, deps.LateSharedLibs...) |
Jiyong Park | 64a44f2 | 2019-01-18 14:37:08 +0900 | [diff] [blame] | 411 | linkerDeps = append(linkerDeps, deps.EarlySharedLibsDeps...) |
Jaewoong Jung | 232c07c | 2018-12-18 11:08:25 -0800 | [diff] [blame] | 412 | linkerDeps = append(linkerDeps, deps.SharedLibsDeps...) |
| 413 | linkerDeps = append(linkerDeps, deps.LateSharedLibsDeps...) |
Chih-Hung Hsieh | f6ca1b9 | 2021-12-05 18:02:50 -0800 | [diff] [blame^] | 414 | linkerDeps = append(linkerDeps, ndkSharedLibDeps(ctx)...) |
Jaewoong Jung | 232c07c | 2018-12-18 11:08:25 -0800 | [diff] [blame] | 415 | } |
| 416 | |
Chih-Hung Hsieh | 3bb934f | 2021-10-25 11:09:19 -0700 | [diff] [blame] | 417 | validations = append(validations, objs.tidyFiles...) |
Pirama Arumuga Nainar | ada83ec | 2017-08-31 23:38:27 -0700 | [diff] [blame] | 418 | linkerDeps = append(linkerDeps, flags.LdFlagsDeps...) |
Colin Cross | 26c34ed | 2016-09-30 17:10:16 -0700 | [diff] [blame] | 419 | |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 420 | // Register link action. |
Chris Parsons | bf4f55f | 2020-11-23 17:02:44 -0500 | [diff] [blame] | 421 | transformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs, deps.StaticLibs, |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 422 | deps.LateStaticLibs, deps.WholeStaticLibs, linkerDeps, deps.CrtBegin, deps.CrtEnd, true, |
Colin Cross | f04eb99 | 2021-06-11 15:22:41 -0700 | [diff] [blame] | 423 | builderFlags, outputFile, nil, validations) |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 424 | |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 425 | objs.coverageFiles = append(objs.coverageFiles, deps.StaticLibObjs.coverageFiles...) |
| 426 | objs.coverageFiles = append(objs.coverageFiles, deps.WholeStaticLibObjs.coverageFiles...) |
Chris Parsons | bf4f55f | 2020-11-23 17:02:44 -0500 | [diff] [blame] | 427 | binary.coverageOutputFile = transformCoverageFilesToZip(ctx, objs, binary.getStem(ctx)) |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 428 | |
Alex Light | 3d67359 | 2019-01-18 14:37:31 -0800 | [diff] [blame] | 429 | // Need to determine symlinks early since some targets (ie APEX) need this |
| 430 | // information but will not call 'install' |
Colin Cross | 9b09f24 | 2016-12-07 13:37:42 -0800 | [diff] [blame] | 431 | for _, symlink := range binary.Properties.Symlinks { |
| 432 | binary.symlinks = append(binary.symlinks, |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 433 | symlink+String(binary.Properties.Suffix)+ctx.toolchain().ExecutableSuffix()) |
Colin Cross | 9b09f24 | 2016-12-07 13:37:42 -0800 | [diff] [blame] | 434 | } |
| 435 | |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 436 | if Bool(binary.Properties.Symlink_preferred_arch) { |
Roland Levillain | 9efb8c7 | 2019-06-05 13:31:31 +0100 | [diff] [blame] | 437 | if String(binary.Properties.Suffix) == "" { |
| 438 | ctx.PropertyErrorf("symlink_preferred_arch", "must also specify suffix") |
Colin Cross | 9b09f24 | 2016-12-07 13:37:42 -0800 | [diff] [blame] | 439 | } |
| 440 | if ctx.TargetPrimary() { |
Chris Parsons | e0f2ab3 | 2020-11-20 17:27:25 -0500 | [diff] [blame] | 441 | // Install a symlink to the preferred architecture |
Colin Cross | a615901 | 2020-11-12 12:14:36 -0800 | [diff] [blame] | 442 | symlinkName := binary.getStemWithoutSuffix(ctx) |
| 443 | binary.symlinks = append(binary.symlinks, symlinkName) |
| 444 | binary.preferredArchSymlink = symlinkName |
Colin Cross | 9b09f24 | 2016-12-07 13:37:42 -0800 | [diff] [blame] | 445 | } |
| 446 | } |
| 447 | |
Alex Light | 3d67359 | 2019-01-18 14:37:31 -0800 | [diff] [blame] | 448 | return ret |
| 449 | } |
| 450 | |
Jiyong Park | af6d895 | 2019-01-31 12:21:23 +0900 | [diff] [blame] | 451 | func (binary *binaryDecorator) unstrippedOutputFilePath() android.Path { |
| 452 | return binary.unstrippedOutputFile |
| 453 | } |
| 454 | |
Alex Light | 3d67359 | 2019-01-18 14:37:31 -0800 | [diff] [blame] | 455 | func (binary *binaryDecorator) symlinkList() []string { |
| 456 | return binary.symlinks |
| 457 | } |
| 458 | |
Pirama Arumuga Nainar | 65c95ff | 2019-03-25 10:21:31 -0700 | [diff] [blame] | 459 | func (binary *binaryDecorator) nativeCoverage() bool { |
| 460 | return true |
| 461 | } |
| 462 | |
Jiyong Park | ee9a98d | 2019-08-09 14:44:36 +0900 | [diff] [blame] | 463 | func (binary *binaryDecorator) coverageOutputFilePath() android.OptionalPath { |
| 464 | return binary.coverageOutputFile |
| 465 | } |
| 466 | |
Jiyong Park | f119435 | 2019-02-25 11:05:47 +0900 | [diff] [blame] | 467 | // /system/bin/linker -> /apex/com.android.runtime/bin/linker |
| 468 | func (binary *binaryDecorator) installSymlinkToRuntimeApex(ctx ModuleContext, file android.Path) { |
| 469 | dir := binary.baseInstaller.installDir(ctx) |
| 470 | dirOnDevice := android.InstallPathToOnDevicePath(ctx, dir) |
| 471 | target := "/" + filepath.Join("apex", "com.android.runtime", dir.Base(), file.Base()) |
| 472 | |
| 473 | ctx.InstallAbsoluteSymlink(dir, file.Base(), target) |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 474 | binary.postInstallCmds = append(binary.postInstallCmds, makeSymlinkCmd(dirOnDevice, file.Base(), target)) |
Jiyong Park | f119435 | 2019-02-25 11:05:47 +0900 | [diff] [blame] | 475 | |
| 476 | for _, symlink := range binary.symlinks { |
| 477 | ctx.InstallAbsoluteSymlink(dir, symlink, target) |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 478 | binary.postInstallCmds = append(binary.postInstallCmds, makeSymlinkCmd(dirOnDevice, symlink, target)) |
Jiyong Park | f119435 | 2019-02-25 11:05:47 +0900 | [diff] [blame] | 479 | } |
| 480 | } |
| 481 | |
Alex Light | 3d67359 | 2019-01-18 14:37:31 -0800 | [diff] [blame] | 482 | func (binary *binaryDecorator) install(ctx ModuleContext, file android.Path) { |
Jiyong Park | f119435 | 2019-02-25 11:05:47 +0900 | [diff] [blame] | 483 | // Bionic binaries (e.g. linker) is installed to the bootstrap subdirectory. |
| 484 | // The original path becomes a symlink to the corresponding file in the |
| 485 | // runtime APEX. |
Colin Cross | 3b19f5d | 2019-09-17 14:45:31 -0700 | [diff] [blame] | 486 | translatedArch := ctx.Target().NativeBridge == android.NativeBridgeEnabled |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 487 | if InstallToBootstrap(ctx.baseModuleName(), ctx.Config()) && !ctx.Host() && ctx.directlyInAnyApex() && |
Yifan Hong | 60e0cfb | 2020-10-21 15:17:56 -0700 | [diff] [blame] | 488 | !translatedArch && ctx.apexVariationName() == "" && !ctx.inRamdisk() && !ctx.inRecovery() && |
| 489 | !ctx.inVendorRamdisk() { |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 490 | |
Peter Collingbourne | 3478bb2 | 2019-04-24 14:41:12 -0700 | [diff] [blame] | 491 | if ctx.Device() && isBionic(ctx.baseModuleName()) { |
Jiyong Park | c3e2c86 | 2019-03-16 01:10:08 +0900 | [diff] [blame] | 492 | binary.installSymlinkToRuntimeApex(ctx, file) |
| 493 | } |
Jiyong Park | f119435 | 2019-02-25 11:05:47 +0900 | [diff] [blame] | 494 | binary.baseInstaller.subDir = "bootstrap" |
| 495 | } |
Alex Light | 3d67359 | 2019-01-18 14:37:31 -0800 | [diff] [blame] | 496 | binary.baseInstaller.install(ctx, file) |
Colin Cross | a615901 | 2020-11-12 12:14:36 -0800 | [diff] [blame] | 497 | |
| 498 | var preferredArchSymlinkPath android.OptionalPath |
Colin Cross | 9b09f24 | 2016-12-07 13:37:42 -0800 | [diff] [blame] | 499 | for _, symlink := range binary.symlinks { |
Colin Cross | a615901 | 2020-11-12 12:14:36 -0800 | [diff] [blame] | 500 | installedSymlink := ctx.InstallSymlink(binary.baseInstaller.installDir(ctx), symlink, |
| 501 | binary.baseInstaller.path) |
| 502 | if symlink == binary.preferredArchSymlink { |
| 503 | // If this is the preferred arch symlink, save the installed path for use as the |
| 504 | // tool path. |
| 505 | preferredArchSymlinkPath = android.OptionalPathForPath(installedSymlink) |
| 506 | } |
Colin Cross | 9b09f24 | 2016-12-07 13:37:42 -0800 | [diff] [blame] | 507 | } |
| 508 | |
Dan Willemsen | 4aa75ca | 2016-09-28 16:18:03 -0700 | [diff] [blame] | 509 | if ctx.Os().Class == android.Host { |
Colin Cross | a615901 | 2020-11-12 12:14:36 -0800 | [diff] [blame] | 510 | // If the binary is multilib with a symlink to the preferred architecture, use the |
| 511 | // symlink instead of the binary because that's the more "canonical" name. |
| 512 | if preferredArchSymlinkPath.Valid() { |
| 513 | binary.toolPath = preferredArchSymlinkPath |
| 514 | } else { |
| 515 | binary.toolPath = android.OptionalPathForPath(binary.baseInstaller.path) |
| 516 | } |
Dan Willemsen | 4aa75ca | 2016-09-28 16:18:03 -0700 | [diff] [blame] | 517 | } |
| 518 | } |
| 519 | |
| 520 | func (binary *binaryDecorator) hostToolPath() android.OptionalPath { |
| 521 | return binary.toolPath |
Colin Cross | 4d9c2d1 | 2016-07-29 12:48:20 -0700 | [diff] [blame] | 522 | } |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 523 | |
| 524 | func init() { |
Colin Cross | f04eb99 | 2021-06-11 15:22:41 -0700 | [diff] [blame] | 525 | pctx.HostBinToolVariable("verifyHostBionicCmd", "host_bionic_verify") |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 526 | } |
| 527 | |
Colin Cross | f04eb99 | 2021-06-11 15:22:41 -0700 | [diff] [blame] | 528 | var verifyHostBionic = pctx.AndroidStaticRule("verifyHostBionic", |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 529 | blueprint.RuleParams{ |
Colin Cross | f04eb99 | 2021-06-11 15:22:41 -0700 | [diff] [blame] | 530 | Command: "$verifyHostBionicCmd -i $in -l $linker && touch $out", |
| 531 | CommandDeps: []string{"$verifyHostBionicCmd"}, |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 532 | }, "linker") |
| 533 | |
Colin Cross | f04eb99 | 2021-06-11 15:22:41 -0700 | [diff] [blame] | 534 | func (binary *binaryDecorator) verifyHostBionicLinker(ctx ModuleContext, in, linker android.Path, out android.WritablePath) { |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 535 | ctx.Build(pctx, android.BuildParams{ |
Colin Cross | f04eb99 | 2021-06-11 15:22:41 -0700 | [diff] [blame] | 536 | Rule: verifyHostBionic, |
| 537 | Description: "verify host bionic", |
Dan Willemsen | a0790e3 | 2018-10-12 00:24:23 -0700 | [diff] [blame] | 538 | Input: in, |
| 539 | Implicit: linker, |
| 540 | Output: out, |
| 541 | Args: map[string]string{ |
| 542 | "linker": linker.String(), |
| 543 | }, |
| 544 | }) |
| 545 | } |
Liz Kammer | 2b8004b | 2021-10-04 13:55:44 -0400 | [diff] [blame] | 546 | |
| 547 | func init() { |
| 548 | android.RegisterBp2BuildMutator("cc_binary", BinaryBp2build) |
| 549 | android.RegisterBp2BuildMutator("cc_binary_host", BinaryHostBp2build) |
| 550 | } |
| 551 | |
| 552 | func BinaryBp2build(ctx android.TopDownMutatorContext) { |
| 553 | binaryBp2build(ctx, "cc_binary") |
| 554 | } |
| 555 | |
| 556 | func BinaryHostBp2build(ctx android.TopDownMutatorContext) { |
| 557 | binaryBp2build(ctx, "cc_binary_host") |
| 558 | } |
| 559 | |
| 560 | func binaryBp2build(ctx android.TopDownMutatorContext, typ string) { |
| 561 | m, ok := ctx.Module().(*Module) |
| 562 | if !ok { |
| 563 | // Not a cc module |
| 564 | return |
| 565 | } |
| 566 | if !m.ConvertWithBp2build(ctx) { |
| 567 | return |
| 568 | } |
| 569 | |
| 570 | if ctx.ModuleType() != typ { |
| 571 | return |
| 572 | } |
| 573 | |
| 574 | var compatibleWith bazel.StringListAttribute |
| 575 | if typ == "cc_binary_host" { |
| 576 | //incompatible with android OS |
| 577 | compatibleWith.SetSelectValue(bazel.OsConfigurationAxis, android.Android.Name, []string{"@platforms//:incompatible"}) |
| 578 | compatibleWith.SetSelectValue(bazel.OsConfigurationAxis, bazel.ConditionsDefaultConfigKey, []string{}) |
| 579 | } |
| 580 | |
Liz Kammer | e658348 | 2021-10-19 13:56:10 -0400 | [diff] [blame] | 581 | baseAttrs := bp2BuildParseBaseProps(ctx, m) |
Liz Kammer | 2b8004b | 2021-10-04 13:55:44 -0400 | [diff] [blame] | 582 | |
| 583 | attrs := &binaryAttributes{ |
| 584 | binaryLinkerAttrs: bp2buildBinaryLinkerProps(ctx, m), |
| 585 | |
Liz Kammer | e658348 | 2021-10-19 13:56:10 -0400 | [diff] [blame] | 586 | Srcs: baseAttrs.srcs, |
| 587 | Srcs_c: baseAttrs.cSrcs, |
| 588 | Srcs_as: baseAttrs.asSrcs, |
Liz Kammer | 2b8004b | 2021-10-04 13:55:44 -0400 | [diff] [blame] | 589 | |
Liz Kammer | e658348 | 2021-10-19 13:56:10 -0400 | [diff] [blame] | 590 | Copts: baseAttrs.copts, |
| 591 | Cppflags: baseAttrs.cppFlags, |
| 592 | Conlyflags: baseAttrs.conlyFlags, |
| 593 | Asflags: baseAttrs.asFlags, |
Liz Kammer | 2b8004b | 2021-10-04 13:55:44 -0400 | [diff] [blame] | 594 | |
Liz Kammer | e658348 | 2021-10-19 13:56:10 -0400 | [diff] [blame] | 595 | Deps: baseAttrs.implementationDeps, |
| 596 | Dynamic_deps: baseAttrs.implementationDynamicDeps, |
| 597 | Whole_archive_deps: baseAttrs.wholeArchiveDeps, |
| 598 | System_deps: baseAttrs.systemDynamicDeps, |
Liz Kammer | 2b8004b | 2021-10-04 13:55:44 -0400 | [diff] [blame] | 599 | |
Liz Kammer | e658348 | 2021-10-19 13:56:10 -0400 | [diff] [blame] | 600 | Local_includes: baseAttrs.localIncludes, |
| 601 | Absolute_includes: baseAttrs.absoluteIncludes, |
| 602 | Linkopts: baseAttrs.linkopts, |
| 603 | Link_crt: baseAttrs.linkCrt, |
| 604 | Use_libcrt: baseAttrs.useLibcrt, |
| 605 | Rtti: baseAttrs.rtti, |
| 606 | Stl: baseAttrs.stl, |
| 607 | Cpp_std: baseAttrs.cppStd, |
Liz Kammer | 2b8004b | 2021-10-04 13:55:44 -0400 | [diff] [blame] | 608 | |
Liz Kammer | e658348 | 2021-10-19 13:56:10 -0400 | [diff] [blame] | 609 | Additional_linker_inputs: baseAttrs.additionalLinkerInputs, |
Liz Kammer | 2b8004b | 2021-10-04 13:55:44 -0400 | [diff] [blame] | 610 | |
| 611 | Strip: stripAttributes{ |
Liz Kammer | e658348 | 2021-10-19 13:56:10 -0400 | [diff] [blame] | 612 | Keep_symbols: baseAttrs.stripKeepSymbols, |
| 613 | Keep_symbols_and_debug_frame: baseAttrs.stripKeepSymbolsAndDebugFrame, |
| 614 | Keep_symbols_list: baseAttrs.stripKeepSymbolsList, |
| 615 | All: baseAttrs.stripAll, |
| 616 | None: baseAttrs.stripNone, |
Liz Kammer | 2b8004b | 2021-10-04 13:55:44 -0400 | [diff] [blame] | 617 | }, |
| 618 | |
| 619 | Target_compatible_with: compatibleWith, |
Liz Kammer | e658348 | 2021-10-19 13:56:10 -0400 | [diff] [blame] | 620 | Features: baseAttrs.features, |
Liz Kammer | 2b8004b | 2021-10-04 13:55:44 -0400 | [diff] [blame] | 621 | } |
| 622 | |
| 623 | ctx.CreateBazelTargetModule(bazel.BazelTargetModuleProperties{ |
| 624 | Rule_class: "cc_binary", |
| 625 | Bzl_load_location: "//build/bazel/rules:cc_binary.bzl", |
| 626 | }, |
| 627 | android.CommonAttributes{Name: m.Name()}, |
| 628 | attrs) |
| 629 | } |
| 630 | |
| 631 | // binaryAttributes contains Bazel attributes corresponding to a cc binary |
| 632 | type binaryAttributes struct { |
| 633 | binaryLinkerAttrs |
| 634 | Srcs bazel.LabelListAttribute |
| 635 | Srcs_c bazel.LabelListAttribute |
| 636 | Srcs_as bazel.LabelListAttribute |
| 637 | |
| 638 | Copts bazel.StringListAttribute |
| 639 | Cppflags bazel.StringListAttribute |
| 640 | Conlyflags bazel.StringListAttribute |
| 641 | Asflags bazel.StringListAttribute |
| 642 | |
| 643 | Deps bazel.LabelListAttribute |
| 644 | Dynamic_deps bazel.LabelListAttribute |
| 645 | Whole_archive_deps bazel.LabelListAttribute |
| 646 | System_deps bazel.LabelListAttribute |
| 647 | |
| 648 | Local_includes bazel.StringListAttribute |
| 649 | Absolute_includes bazel.StringListAttribute |
| 650 | |
| 651 | Linkopts bazel.StringListAttribute |
| 652 | Additional_linker_inputs bazel.LabelListAttribute |
| 653 | |
| 654 | Link_crt bazel.BoolAttribute |
| 655 | Use_libcrt bazel.BoolAttribute |
| 656 | |
| 657 | Rtti bazel.BoolAttribute |
| 658 | Stl *string |
| 659 | Cpp_std *string |
| 660 | |
| 661 | Strip stripAttributes |
| 662 | |
| 663 | Features bazel.StringListAttribute |
| 664 | |
| 665 | Target_compatible_with bazel.StringListAttribute |
| 666 | } |