Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 1 | // ======================================================== |
| 2 | // linker_wrapper - Linux Bionic (on the host) |
| 3 | // ======================================================== |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 4 | |
Dan Willemsen | 7ccc50d | 2017-09-18 21:28:14 -0700 | [diff] [blame] | 5 | // This is used for bionic on (host) Linux to bootstrap our linker embedded into |
| 6 | // a binary. |
| 7 | // |
| 8 | // Host bionic binaries do not have a PT_INTERP section, instead this gets |
| 9 | // embedded as the entry point, and the linker is embedded as ELF sections in |
| 10 | // each binary. There's a linker script that sets all of that up (generated by |
| 11 | // extract_linker), and defines the extern symbols used in this file. |
Bob Badour | aa7d835 | 2021-02-19 13:06:22 -0800 | [diff] [blame] | 12 | package { |
| 13 | default_applicable_licenses: ["bionic_linker_license"], |
| 14 | } |
| 15 | |
| 16 | license { |
| 17 | name: "bionic_linker_license", |
| 18 | visibility: [":__subpackages__"], |
| 19 | license_kinds: [ |
| 20 | "SPDX-license-identifier-BSD", |
| 21 | ], |
| 22 | license_text: [ |
| 23 | "NOTICE", |
| 24 | ], |
| 25 | } |
| 26 | |
Dan Willemsen | 7ccc50d | 2017-09-18 21:28:14 -0700 | [diff] [blame] | 27 | cc_object { |
| 28 | name: "linker_wrapper", |
| 29 | host_supported: true, |
| 30 | device_supported: false, |
| 31 | target: { |
Elliott Hughes | d50a1de | 2018-02-05 17:30:57 -0800 | [diff] [blame] | 32 | linux_bionic: { |
| 33 | enabled: true, |
| 34 | }, |
| 35 | linux_glibc: { |
| 36 | enabled: false, |
| 37 | }, |
| 38 | darwin: { |
| 39 | enabled: false, |
| 40 | }, |
Dan Willemsen | 7ccc50d | 2017-09-18 21:28:14 -0700 | [diff] [blame] | 41 | }, |
| 42 | |
| 43 | cflags: [ |
| 44 | "-fno-stack-protector", |
| 45 | "-Wstrict-overflow=5", |
| 46 | "-fvisibility=hidden", |
| 47 | "-Wall", |
| 48 | "-Wextra", |
| 49 | "-Wno-unused", |
| 50 | "-Werror", |
| 51 | ], |
| 52 | |
| 53 | srcs: [ |
| 54 | "linker_wrapper.cpp", |
| 55 | ], |
| 56 | arch: { |
Jiyong Park | 3b47d60 | 2020-09-18 16:15:53 +0900 | [diff] [blame] | 57 | arm64: { |
| 58 | srcs: ["arch/arm64/begin.S"], |
| 59 | }, |
Dan Willemsen | 7ccc50d | 2017-09-18 21:28:14 -0700 | [diff] [blame] | 60 | x86_64: { |
| 61 | srcs: ["arch/x86_64/begin.S"], |
| 62 | }, |
| 63 | }, |
| 64 | |
| 65 | prefix_symbols: "__dlwrap_", |
| 66 | |
Martin Stjernholm | 82d84bc | 2020-04-06 20:32:09 +0100 | [diff] [blame] | 67 | header_libs: ["libc_headers"], |
| 68 | |
Dan Willemsen | 7ccc50d | 2017-09-18 21:28:14 -0700 | [diff] [blame] | 69 | // We need to access Bionic private headers in the linker. |
| 70 | include_dirs: ["bionic/libc"], |
Jingwen Chen | c579478 | 2021-03-10 03:24:48 -0500 | [diff] [blame^] | 71 | |
| 72 | // b/182338959 |
| 73 | bazel_module: { bp2build_available: false }, |
Dan Willemsen | 7ccc50d | 2017-09-18 21:28:14 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 76 | // ======================================================== |
| 77 | // linker default configuration |
| 78 | // ======================================================== |
| 79 | |
| 80 | // Configuration for the linker binary and any of its static libraries. |
| 81 | cc_defaults { |
| 82 | name: "linker_defaults", |
| 83 | arch: { |
| 84 | arm: { |
| 85 | cflags: ["-D__work_around_b_24465209__"], |
| 86 | }, |
| 87 | x86: { |
| 88 | cflags: ["-D__work_around_b_24465209__"], |
| 89 | }, |
| 90 | }, |
| 91 | |
| 92 | cflags: [ |
| 93 | "-fno-stack-protector", |
| 94 | "-Wstrict-overflow=5", |
| 95 | "-fvisibility=hidden", |
| 96 | "-Wall", |
| 97 | "-Wextra", |
| 98 | "-Wunused", |
| 99 | "-Werror", |
| 100 | ], |
| 101 | |
| 102 | // TODO: split out the asflags. |
| 103 | asflags: [ |
| 104 | "-fno-stack-protector", |
| 105 | "-Wstrict-overflow=5", |
| 106 | "-fvisibility=hidden", |
| 107 | "-Wall", |
| 108 | "-Wextra", |
| 109 | "-Wunused", |
| 110 | "-Werror", |
| 111 | ], |
| 112 | |
| 113 | product_variables: { |
| 114 | debuggable: { |
| 115 | cppflags: ["-DUSE_LD_CONFIG_FILE"], |
| 116 | }, |
| 117 | }, |
| 118 | |
| 119 | cppflags: ["-Wold-style-cast"], |
| 120 | |
| 121 | static_libs: [ |
| 122 | "libziparchive", |
| 123 | "libbase", |
| 124 | "libz", |
| 125 | |
| 126 | "libasync_safe", |
| 127 | |
| 128 | "liblog", |
| 129 | ], |
| 130 | |
| 131 | // We need to access Bionic private headers in the linker. |
| 132 | include_dirs: ["bionic/libc"], |
| 133 | } |
| 134 | |
| 135 | // ======================================================== |
| 136 | // linker components |
| 137 | // ======================================================== |
| 138 | |
| 139 | // Enable a module on all targets the linker runs on (ordinary Android targets, Linux Bionic, and |
| 140 | // native bridge implementations). |
| 141 | cc_defaults { |
| 142 | name: "linker_all_targets", |
| 143 | defaults: ["linux_bionic_supported"], |
| 144 | recovery_available: true, |
Yifan Hong | b04490d | 2020-10-21 18:36:36 -0700 | [diff] [blame] | 145 | vendor_ramdisk_available: true, |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 146 | native_bridge_supported: true, |
| 147 | } |
| 148 | |
| 149 | cc_library_static { |
Ryan Prichard | 249757b | 2019-11-01 17:18:28 -0700 | [diff] [blame] | 150 | name: "liblinker_main", |
| 151 | defaults: ["linker_defaults", "linker_all_targets"], |
| 152 | srcs: ["linker_main.cpp"], |
| 153 | |
| 154 | // Ensure that the compiler won't insert string function calls before ifuncs are resolved. |
| 155 | cflags: ["-ffreestanding"], |
| 156 | } |
| 157 | |
| 158 | cc_library_static { |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 159 | name: "liblinker_malloc", |
| 160 | defaults: ["linker_defaults", "linker_all_targets"], |
| 161 | srcs: ["linker_memory.cpp"], |
| 162 | } |
| 163 | |
| 164 | cc_library_static { |
| 165 | name: "liblinker_debuggerd_stub", |
| 166 | defaults: ["linker_defaults", "linker_all_targets"], |
| 167 | srcs: ["linker_debuggerd_stub.cpp"], |
| 168 | } |
| 169 | |
| 170 | // ======================================================== |
| 171 | // template for the linker binary |
| 172 | // ======================================================== |
| 173 | |
dimitry | b8b3a76 | 2018-09-25 12:31:11 +0200 | [diff] [blame] | 174 | filegroup { |
| 175 | name: "linker_sources", |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 176 | srcs: [ |
| 177 | "dlfcn.cpp", |
| 178 | "linker.cpp", |
| 179 | "linker_block_allocator.cpp", |
Dimitry Ivanov | 769b33f | 2016-07-21 11:33:40 -0700 | [diff] [blame] | 180 | "linker_dlwarning.cpp", |
Evgenii Stepanov | 0a3637d | 2016-07-06 13:20:59 -0700 | [diff] [blame] | 181 | "linker_cfi.cpp", |
Dimitry Ivanov | 4cabfaa | 2017-03-07 11:19:05 -0800 | [diff] [blame] | 182 | "linker_config.cpp", |
Ryan Prichard | 551565e | 2019-12-23 16:03:14 -0800 | [diff] [blame] | 183 | "linker_debug.cpp", |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 184 | "linker_gdb_support.cpp", |
Dimitry Ivanov | 48ec288 | 2016-08-04 11:50:36 -0700 | [diff] [blame] | 185 | "linker_globals.cpp", |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 186 | "linker_libc_support.c", |
Dimitry Ivanov | 451909d | 2017-01-26 16:52:59 -0800 | [diff] [blame] | 187 | "linker_libcxx_support.cpp", |
Dimitry Ivanov | b943f30 | 2016-08-03 16:00:10 -0700 | [diff] [blame] | 188 | "linker_namespaces.cpp", |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 189 | "linker_logger.cpp", |
| 190 | "linker_mapped_file_fragment.cpp", |
Tamas Petz | 8d55d18 | 2020-02-24 14:15:25 +0100 | [diff] [blame] | 191 | "linker_note_gnu_property.cpp", |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 192 | "linker_phdr.cpp", |
Ryan Prichard | 339ecef | 2020-01-02 16:36:06 -0800 | [diff] [blame] | 193 | "linker_relocate.cpp", |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 194 | "linker_sdk_versions.cpp", |
Dimitry Ivanov | 48ec288 | 2016-08-04 11:50:36 -0700 | [diff] [blame] | 195 | "linker_soinfo.cpp", |
Ryan Prichard | 45d1349 | 2019-01-03 02:51:30 -0800 | [diff] [blame] | 196 | "linker_tls.cpp", |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 197 | "linker_utils.cpp", |
| 198 | "rt.cpp", |
| 199 | ], |
dimitry | b8b3a76 | 2018-09-25 12:31:11 +0200 | [diff] [blame] | 200 | } |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 201 | |
dimitry | b8b3a76 | 2018-09-25 12:31:11 +0200 | [diff] [blame] | 202 | filegroup { |
| 203 | name: "linker_sources_arm", |
| 204 | srcs: [ |
| 205 | "arch/arm/begin.S", |
Ryan Prichard | 129f7a1 | 2019-12-23 16:45:47 -0800 | [diff] [blame] | 206 | "arch/arm_neon/linker_gnu_hash_neon.cpp", |
dimitry | b8b3a76 | 2018-09-25 12:31:11 +0200 | [diff] [blame] | 207 | ], |
| 208 | } |
| 209 | |
| 210 | filegroup { |
| 211 | name: "linker_sources_arm64", |
| 212 | srcs: [ |
| 213 | "arch/arm64/begin.S", |
Ryan Prichard | ffaae70 | 2019-01-23 17:47:10 -0800 | [diff] [blame] | 214 | "arch/arm64/tlsdesc_resolver.S", |
Ryan Prichard | 129f7a1 | 2019-12-23 16:45:47 -0800 | [diff] [blame] | 215 | "arch/arm_neon/linker_gnu_hash_neon.cpp", |
dimitry | b8b3a76 | 2018-09-25 12:31:11 +0200 | [diff] [blame] | 216 | ], |
| 217 | } |
| 218 | |
| 219 | filegroup { |
| 220 | name: "linker_sources_x86", |
| 221 | srcs: [ |
| 222 | "arch/x86/begin.S", |
| 223 | ], |
| 224 | } |
| 225 | |
| 226 | filegroup { |
| 227 | name: "linker_sources_x86_64", |
| 228 | srcs: [ |
| 229 | "arch/x86_64/begin.S", |
| 230 | ], |
| 231 | } |
| 232 | |
dimitry | b8b3a76 | 2018-09-25 12:31:11 +0200 | [diff] [blame] | 233 | cc_defaults { |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 234 | name: "linker_version_script_overlay", |
| 235 | arch: { |
| 236 | arm: { version_script: "linker.arm.map" }, |
| 237 | arm64: { version_script: "linker.generic.map" }, |
| 238 | x86: { version_script: "linker.generic.map" }, |
| 239 | x86_64: { version_script: "linker.generic.map" }, |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 240 | }, |
| 241 | } |
| 242 | |
| 243 | // A template for the linker binary. May be inherited by native bridge implementations. |
| 244 | cc_defaults { |
| 245 | name: "linker_bin_template", |
| 246 | defaults: ["linker_defaults"], |
| 247 | |
| 248 | srcs: [":linker_sources"], |
| 249 | |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 250 | arch: { |
| 251 | arm: { |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 252 | srcs: [":linker_sources_arm"], |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 253 | }, |
| 254 | arm64: { |
| 255 | srcs: [":linker_sources_arm64"], |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 256 | }, |
| 257 | x86: { |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 258 | srcs: [":linker_sources_x86"], |
| 259 | }, |
| 260 | x86_64: { |
| 261 | srcs: [":linker_sources_x86_64"], |
| 262 | }, |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 263 | }, |
| 264 | |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 265 | // -shared is used to overwrite the -Bstatic and -static flags triggered by enabling |
| 266 | // static_executable. This dynamic linker is actually a shared object linked with static |
| 267 | // libraries. |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 268 | ldflags: [ |
| 269 | "-shared", |
| 270 | "-Wl,-Bsymbolic", |
| 271 | "-Wl,--exclude-libs,ALL", |
dimitry | 8e8c2c0 | 2018-01-04 12:08:32 +0100 | [diff] [blame] | 272 | "-Wl,-soname,ld-android.so", |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 273 | ], |
| 274 | |
Dimitry Ivanov | fc0d480 | 2016-12-06 11:10:09 -0800 | [diff] [blame] | 275 | // we are going to link libc++_static manually because |
| 276 | // when stl is not set to "none" build system adds libdl |
| 277 | // to the list of static libraries which needs to be |
| 278 | // avoided in the case of building loader. |
| 279 | stl: "none", |
| 280 | |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 281 | // we don't want crtbegin.o (because we have begin.o), so unset it |
| 282 | // just for this module |
| 283 | nocrt: true, |
| 284 | |
dimitry | b8b3a76 | 2018-09-25 12:31:11 +0200 | [diff] [blame] | 285 | static_executable: true, |
| 286 | |
| 287 | // Leave the symbols in the shared library so that stack unwinders can produce |
| 288 | // meaningful name resolution. |
| 289 | strip: { |
| 290 | keep_symbols: true, |
| 291 | }, |
| 292 | |
| 293 | // Insert an extra objcopy step to add prefix to symbols. This is needed to prevent gdb |
| 294 | // looking up symbols in the linker by mistake. |
| 295 | prefix_symbols: "__dl_", |
| 296 | |
| 297 | sanitize: { |
| 298 | hwaddress: false, |
| 299 | }, |
dimitry | b8b3a76 | 2018-09-25 12:31:11 +0200 | [diff] [blame] | 300 | |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 301 | static_libs: [ |
Ryan Prichard | 249757b | 2019-11-01 17:18:28 -0700 | [diff] [blame] | 302 | "liblinker_main", |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 303 | "liblinker_malloc", |
| 304 | |
| 305 | "libc++_static", |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 306 | "libc_nomalloc", |
Ryan Prichard | 249757b | 2019-11-01 17:18:28 -0700 | [diff] [blame] | 307 | "libc_dynamic_dispatch", |
Dimitry Ivanov | 451909d | 2017-01-26 16:52:59 -0800 | [diff] [blame] | 308 | "libm", |
Ryan Prichard | cdf7175 | 2020-12-16 03:37:22 -0800 | [diff] [blame] | 309 | "libunwind", |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 310 | ], |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 311 | |
Ryan Prichard | d9a4115 | 2019-10-14 16:58:53 -0700 | [diff] [blame] | 312 | // Ensure that if the linker needs __gnu_Unwind_Find_exidx, then the linker will have a |
| 313 | // definition of the symbol. The linker links against libgcc.a, whose arm32 unwinder has a weak |
| 314 | // reference to __gnu_Unwind_Find_exidx, which isn't sufficient to pull in the strong definition |
| 315 | // of __gnu_Unwind_Find_exidx from libc. An unresolved weak reference would create a |
| 316 | // non-relative dynamic relocation in the linker binary, which complicates linker startup. |
| 317 | // |
| 318 | // This line should be unnecessary because the linker's dependency on libunwind_llvm.a should |
| 319 | // override libgcc.a, but this line provides a simpler guarantee. It can be removed once the |
| 320 | // linker stops linking against libgcc.a's arm32 unwinder. |
| 321 | whole_static_libs: ["libc_unwind_static"], |
| 322 | |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 323 | system_shared_libs: [], |
| 324 | |
| 325 | // Opt out of native_coverage when opting out of system_shared_libs |
| 326 | native_coverage: false, |
| 327 | } |
| 328 | |
| 329 | // ======================================================== |
| 330 | // linker[_asan][64] binary |
| 331 | // ======================================================== |
| 332 | |
| 333 | cc_binary { |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 334 | name: "linker", |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 335 | defaults: [ |
| 336 | "linker_bin_template", |
| 337 | "linux_bionic_supported", |
| 338 | "linker_version_script_overlay", |
| 339 | ], |
| 340 | |
Victor Khimenko | d15229d | 2020-05-14 22:14:45 +0200 | [diff] [blame] | 341 | srcs: [ |
| 342 | "linker_translate_path.cpp", |
| 343 | ], |
| 344 | |
Colin Cross | 10fffb4 | 2016-12-08 09:57:35 -0800 | [diff] [blame] | 345 | symlinks: ["linker_asan"], |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 346 | multilib: { |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 347 | lib64: { |
| 348 | suffix: "64", |
Colin Cross | 10fffb4 | 2016-12-08 09:57:35 -0800 | [diff] [blame] | 349 | }, |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 350 | }, |
Pirama Arumuga Nainar | fcd3538 | 2019-02-14 13:48:01 -0800 | [diff] [blame] | 351 | |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 352 | compile_multilib: "both", |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 353 | |
| 354 | recovery_available: true, |
Yifan Hong | b04490d | 2020-10-21 18:36:36 -0700 | [diff] [blame] | 355 | vendor_ramdisk_available: true, |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 356 | apex_available: [ |
| 357 | "//apex_available:platform", |
| 358 | "com.android.runtime", |
| 359 | ], |
Pirama Arumuga Nainar | fcd3538 | 2019-02-14 13:48:01 -0800 | [diff] [blame] | 360 | |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 361 | target: { |
Dan Willemsen | 7ec52b1 | 2016-11-28 17:02:25 -0800 | [diff] [blame] | 362 | android: { |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 363 | srcs: [ |
| 364 | "linker_debuggerd_android.cpp", |
| 365 | ], |
Dan Albert | 4ea1921 | 2019-07-23 13:31:14 -0700 | [diff] [blame] | 366 | static_libs: [ |
| 367 | "libc++demangle", |
| 368 | "libdebuggerd_handler_fallback", |
| 369 | ], |
Dan Willemsen | 7ec52b1 | 2016-11-28 17:02:25 -0800 | [diff] [blame] | 370 | }, |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 371 | linux_bionic: { |
| 372 | static_libs: [ |
| 373 | "liblinker_debuggerd_stub", |
| 374 | ], |
Yi Kong | 6f6daaa | 2020-12-10 01:27:44 +0800 | [diff] [blame] | 375 | }, |
| 376 | android_arm64: { |
| 377 | pgo: { |
| 378 | profile_file: "bionic/linker_arm_arm64.profdata", |
| 379 | }, |
| 380 | }, |
| 381 | android_arm: { |
| 382 | pgo: { |
| 383 | profile_file: "bionic/linker_arm_arm64.profdata", |
| 384 | }, |
| 385 | }, |
| 386 | android_x86_64: { |
| 387 | pgo: { |
| 388 | profile_file: "bionic/linker_x86_x86_64.profdata", |
| 389 | }, |
| 390 | }, |
| 391 | android_x86: { |
| 392 | pgo: { |
| 393 | profile_file: "bionic/linker_x86_x86_64.profdata", |
| 394 | }, |
| 395 | }, |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 396 | }, |
Yi Kong | a7e363f | 2020-10-01 04:10:01 +0800 | [diff] [blame] | 397 | |
| 398 | lto: { |
| 399 | never: true, |
| 400 | }, |
Yi Kong | 6f6daaa | 2020-12-10 01:27:44 +0800 | [diff] [blame] | 401 | pgo: { |
| 402 | sampling: true, |
| 403 | }, |
Colin Cross | 97f0aef | 2016-07-14 16:05:46 -0700 | [diff] [blame] | 404 | } |
dimitry | 11da1dc | 2018-01-05 13:35:43 +0100 | [diff] [blame] | 405 | |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 406 | // ======================================================== |
| 407 | // assorted modules |
| 408 | // ======================================================== |
| 409 | |
Elliott Hughes | 90f96b9 | 2019-05-09 15:56:39 -0700 | [diff] [blame] | 410 | sh_binary { |
| 411 | name: "ldd", |
Rupert Shuttleworth | a7e29a8 | 2021-02-18 13:35:22 +0000 | [diff] [blame] | 412 | src: "ldd.sh", |
Rupert Shuttleworth | 344b8da | 2021-02-09 11:35:04 +0000 | [diff] [blame] | 413 | bazel_module: { bp2build_available: true }, |
Elliott Hughes | 90f96b9 | 2019-05-09 15:56:39 -0700 | [diff] [blame] | 414 | } |
| 415 | |
dimitry | 11da1dc | 2018-01-05 13:35:43 +0100 | [diff] [blame] | 416 | cc_library { |
| 417 | // NOTE: --exclude-libs=libgcc.a makes sure that any symbols ld-android.so pulls from |
| 418 | // libgcc.a are made static to ld-android.so. This in turn ensures that libraries that |
| 419 | // a) pull symbols from libgcc.a and b) depend on ld-android.so will not rely on ld-android.so |
| 420 | // to provide those symbols, but will instead pull them from libgcc.a. Specifically, |
| 421 | // we use this property to make sure libc.so has its own copy of the code from |
| 422 | // libgcc.a it uses. |
| 423 | // |
| 424 | // DO NOT REMOVE --exclude-libs! |
| 425 | |
Yi Kong | 7786a34 | 2018-08-31 19:01:56 -0700 | [diff] [blame] | 426 | ldflags: [ |
| 427 | "-Wl,--exclude-libs=libgcc.a", |
Yi Kong | 7ac2afb | 2019-05-06 16:23:10 -0700 | [diff] [blame] | 428 | "-Wl,--exclude-libs=libgcc_stripped.a", |
Yi Kong | 7786a34 | 2018-08-31 19:01:56 -0700 | [diff] [blame] | 429 | "-Wl,--exclude-libs=libclang_rt.builtins-arm-android.a", |
| 430 | "-Wl,--exclude-libs=libclang_rt.builtins-aarch64-android.a", |
Ryan Prichard | ef14787 | 2021-01-28 14:06:52 -0800 | [diff] [blame] | 431 | "-Wl,--exclude-libs=libclang_rt.builtins-i686-android.a", |
Yi Kong | 7786a34 | 2018-08-31 19:01:56 -0700 | [diff] [blame] | 432 | "-Wl,--exclude-libs=libclang_rt.builtins-x86_64-android.a", |
| 433 | ], |
dimitry | 11da1dc | 2018-01-05 13:35:43 +0100 | [diff] [blame] | 434 | |
| 435 | // for x86, exclude libgcc_eh.a for the same reasons as above |
| 436 | arch: { |
| 437 | x86: { |
| 438 | ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"], |
| 439 | }, |
| 440 | x86_64: { |
| 441 | ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"], |
| 442 | }, |
| 443 | }, |
dimitry | 581723e | 2018-01-05 14:31:44 +0100 | [diff] [blame] | 444 | |
| 445 | srcs: ["ld_android.cpp"], |
dimitry | 11da1dc | 2018-01-05 13:35:43 +0100 | [diff] [blame] | 446 | cflags: [ |
| 447 | "-Wall", |
| 448 | "-Wextra", |
| 449 | "-Wunused", |
| 450 | "-Werror", |
| 451 | ], |
| 452 | stl: "none", |
| 453 | |
| 454 | name: "ld-android", |
Ryan Prichard | 80e40f0 | 2019-10-31 19:54:46 -0700 | [diff] [blame] | 455 | defaults: ["linux_bionic_supported", "linker_version_script_overlay"], |
Yifan Hong | 5a39cee | 2020-01-21 16:43:56 -0800 | [diff] [blame] | 456 | ramdisk_available: true, |
Yifan Hong | b04490d | 2020-10-21 18:36:36 -0700 | [diff] [blame] | 457 | vendor_ramdisk_available: true, |
Jiyong Park | 5603c6e | 2018-04-27 21:53:11 +0900 | [diff] [blame] | 458 | recovery_available: true, |
dimitry | 7f04880 | 2019-05-03 15:57:34 +0200 | [diff] [blame] | 459 | native_bridge_supported: true, |
dimitry | 11da1dc | 2018-01-05 13:35:43 +0100 | [diff] [blame] | 460 | |
Ryan Prichard | 470b666 | 2018-03-27 22:10:55 -0700 | [diff] [blame] | 461 | nocrt: true, |
dimitry | 11da1dc | 2018-01-05 13:35:43 +0100 | [diff] [blame] | 462 | system_shared_libs: [], |
Martin Stjernholm | 82d84bc | 2020-04-06 20:32:09 +0100 | [diff] [blame] | 463 | header_libs: ["libc_headers"], |
dimitry | 11da1dc | 2018-01-05 13:35:43 +0100 | [diff] [blame] | 464 | |
Pirama Arumuga Nainar | fcd3538 | 2019-02-14 13:48:01 -0800 | [diff] [blame] | 465 | // Opt out of native_coverage when opting out of system_shared_libs |
| 466 | native_coverage: false, |
| 467 | |
dimitry | 11da1dc | 2018-01-05 13:35:43 +0100 | [diff] [blame] | 468 | sanitize: { |
| 469 | never: true, |
| 470 | }, |
Jiyong Park | e87e0dc | 2019-10-02 17:09:33 +0900 | [diff] [blame] | 471 | |
| 472 | apex_available: [ |
| 473 | "//apex_available:platform", |
| 474 | "com.android.runtime", |
| 475 | ], |
Yi Kong | 15a05a7 | 2020-09-22 00:56:13 +0800 | [diff] [blame] | 476 | |
| 477 | lto: { |
| 478 | never: true, |
| 479 | }, |
dimitry | 11da1dc | 2018-01-05 13:35:43 +0100 | [diff] [blame] | 480 | } |
Elliott Hughes | 15a2b7b | 2019-02-15 13:48:38 -0800 | [diff] [blame] | 481 | |
| 482 | cc_test { |
| 483 | name: "linker-unit-tests", |
| 484 | |
| 485 | cflags: [ |
| 486 | "-g", |
| 487 | "-Wall", |
| 488 | "-Wextra", |
| 489 | "-Wunused", |
| 490 | "-Werror", |
| 491 | ], |
| 492 | |
| 493 | // We need to access Bionic private headers in the linker. |
| 494 | include_dirs: ["bionic/libc"], |
| 495 | |
| 496 | srcs: [ |
| 497 | // Tests. |
| 498 | "linker_block_allocator_test.cpp", |
| 499 | "linker_config_test.cpp", |
| 500 | "linked_list_test.cpp", |
Tamas Petz | 8d55d18 | 2020-02-24 14:15:25 +0100 | [diff] [blame] | 501 | "linker_note_gnu_property_test.cpp", |
Elliott Hughes | 15a2b7b | 2019-02-15 13:48:38 -0800 | [diff] [blame] | 502 | "linker_sleb128_test.cpp", |
| 503 | "linker_utils_test.cpp", |
Ryan Prichard | 129f7a1 | 2019-12-23 16:45:47 -0800 | [diff] [blame] | 504 | "linker_gnu_hash_test.cpp", |
Elliott Hughes | 15a2b7b | 2019-02-15 13:48:38 -0800 | [diff] [blame] | 505 | |
| 506 | // Parts of the linker that we're testing. |
| 507 | "linker_block_allocator.cpp", |
| 508 | "linker_config.cpp", |
Ryan Prichard | 551565e | 2019-12-23 16:03:14 -0800 | [diff] [blame] | 509 | "linker_debug.cpp", |
Tamas Petz | 8d55d18 | 2020-02-24 14:15:25 +0100 | [diff] [blame] | 510 | "linker_note_gnu_property.cpp", |
Elliott Hughes | 15a2b7b | 2019-02-15 13:48:38 -0800 | [diff] [blame] | 511 | "linker_test_globals.cpp", |
| 512 | "linker_utils.cpp", |
| 513 | ], |
| 514 | |
| 515 | static_libs: [ |
| 516 | "libasync_safe", |
| 517 | "libbase", |
| 518 | "liblog", |
| 519 | ], |
Ryan Prichard | 129f7a1 | 2019-12-23 16:45:47 -0800 | [diff] [blame] | 520 | |
| 521 | arch: { |
| 522 | arm: { |
| 523 | srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"], |
| 524 | }, |
| 525 | arm64: { |
| 526 | srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"], |
| 527 | }, |
| 528 | }, |
| 529 | } |
| 530 | |
| 531 | cc_benchmark { |
| 532 | name: "linker-benchmarks", |
| 533 | |
| 534 | srcs: [ |
| 535 | "linker_gnu_hash_benchmark.cpp", |
| 536 | ], |
| 537 | |
| 538 | arch: { |
| 539 | arm: { |
| 540 | srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"], |
| 541 | }, |
| 542 | arm64: { |
| 543 | srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"], |
| 544 | }, |
| 545 | }, |
Elliott Hughes | 15a2b7b | 2019-02-15 13:48:38 -0800 | [diff] [blame] | 546 | } |