blob: 5b06e3c4da9d23655e018e5d8ab442f64ae0fd46 [file] [log] [blame]
Ryan Prichard80e40f02019-10-31 19:54:46 -07001// ========================================================
2// linker_wrapper - Linux Bionic (on the host)
3// ========================================================
Colin Cross97f0aef2016-07-14 16:05:46 -07004
Dan Willemsen7ccc50d2017-09-18 21:28:14 -07005// 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 Badouraa7d8352021-02-19 13:06:22 -080012package {
13 default_applicable_licenses: ["bionic_linker_license"],
14}
15
16license {
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 Willemsen7ccc50d2017-09-18 21:28:14 -070027cc_object {
28 name: "linker_wrapper",
29 host_supported: true,
30 device_supported: false,
31 target: {
Elliott Hughesd50a1de2018-02-05 17:30:57 -080032 linux_bionic: {
33 enabled: true,
34 },
35 linux_glibc: {
36 enabled: false,
37 },
38 darwin: {
39 enabled: false,
40 },
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070041 },
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 Park3b47d602020-09-18 16:15:53 +090057 arm64: {
Colin Crossa0a591a2021-06-11 12:46:45 -070058 srcs: ["arch/arm64/linker_wrapper_begin.S"],
Jiyong Park3b47d602020-09-18 16:15:53 +090059 },
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070060 x86_64: {
Colin Crossa0a591a2021-06-11 12:46:45 -070061 srcs: ["arch/x86_64/linker_wrapper_begin.S"],
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070062 },
63 },
64
Martin Stjernholm82d84bc2020-04-06 20:32:09 +010065 header_libs: ["libc_headers"],
66
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070067 // We need to access Bionic private headers in the linker.
68 include_dirs: ["bionic/libc"],
Jingwen Chenc5794782021-03-10 03:24:48 -050069
70 // b/182338959
71 bazel_module: { bp2build_available: false },
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070072}
73
Ryan Prichard80e40f02019-10-31 19:54:46 -070074// ========================================================
75// linker default configuration
76// ========================================================
77
78// Configuration for the linker binary and any of its static libraries.
79cc_defaults {
80 name: "linker_defaults",
81 arch: {
82 arm: {
83 cflags: ["-D__work_around_b_24465209__"],
84 },
85 x86: {
86 cflags: ["-D__work_around_b_24465209__"],
87 },
88 },
89
90 cflags: [
91 "-fno-stack-protector",
92 "-Wstrict-overflow=5",
93 "-fvisibility=hidden",
94 "-Wall",
95 "-Wextra",
96 "-Wunused",
97 "-Werror",
98 ],
99
100 // TODO: split out the asflags.
101 asflags: [
102 "-fno-stack-protector",
103 "-Wstrict-overflow=5",
104 "-fvisibility=hidden",
105 "-Wall",
106 "-Wextra",
107 "-Wunused",
108 "-Werror",
109 ],
110
111 product_variables: {
112 debuggable: {
113 cppflags: ["-DUSE_LD_CONFIG_FILE"],
114 },
115 },
116
117 cppflags: ["-Wold-style-cast"],
118
119 static_libs: [
120 "libziparchive",
121 "libbase",
122 "libz",
123
124 "libasync_safe",
125
126 "liblog",
127 ],
128
129 // We need to access Bionic private headers in the linker.
130 include_dirs: ["bionic/libc"],
131}
132
133// ========================================================
134// linker components
135// ========================================================
136
137// Enable a module on all targets the linker runs on (ordinary Android targets, Linux Bionic, and
138// native bridge implementations).
139cc_defaults {
140 name: "linker_all_targets",
141 defaults: ["linux_bionic_supported"],
142 recovery_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -0700143 vendor_ramdisk_available: true,
Ryan Prichard80e40f02019-10-31 19:54:46 -0700144 native_bridge_supported: true,
145}
146
147cc_library_static {
Ryan Prichard249757b2019-11-01 17:18:28 -0700148 name: "liblinker_main",
149 defaults: ["linker_defaults", "linker_all_targets"],
150 srcs: ["linker_main.cpp"],
151
152 // Ensure that the compiler won't insert string function calls before ifuncs are resolved.
153 cflags: ["-ffreestanding"],
154}
155
156cc_library_static {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700157 name: "liblinker_malloc",
158 defaults: ["linker_defaults", "linker_all_targets"],
159 srcs: ["linker_memory.cpp"],
160}
161
162cc_library_static {
163 name: "liblinker_debuggerd_stub",
164 defaults: ["linker_defaults", "linker_all_targets"],
165 srcs: ["linker_debuggerd_stub.cpp"],
166}
167
168// ========================================================
169// template for the linker binary
170// ========================================================
171
dimitryb8b3a762018-09-25 12:31:11 +0200172filegroup {
173 name: "linker_sources",
Colin Cross97f0aef2016-07-14 16:05:46 -0700174 srcs: [
175 "dlfcn.cpp",
176 "linker.cpp",
177 "linker_block_allocator.cpp",
Dimitry Ivanov769b33f2016-07-21 11:33:40 -0700178 "linker_dlwarning.cpp",
Evgenii Stepanov0a3637d2016-07-06 13:20:59 -0700179 "linker_cfi.cpp",
Dimitry Ivanov4cabfaa2017-03-07 11:19:05 -0800180 "linker_config.cpp",
Ryan Prichard551565e2019-12-23 16:03:14 -0800181 "linker_debug.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700182 "linker_gdb_support.cpp",
Dimitry Ivanov48ec2882016-08-04 11:50:36 -0700183 "linker_globals.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700184 "linker_libc_support.c",
Dimitry Ivanov451909d2017-01-26 16:52:59 -0800185 "linker_libcxx_support.cpp",
Dimitry Ivanovb943f302016-08-03 16:00:10 -0700186 "linker_namespaces.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700187 "linker_logger.cpp",
188 "linker_mapped_file_fragment.cpp",
Tamas Petz8d55d182020-02-24 14:15:25 +0100189 "linker_note_gnu_property.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700190 "linker_phdr.cpp",
Ryan Prichard339ecef2020-01-02 16:36:06 -0800191 "linker_relocate.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700192 "linker_sdk_versions.cpp",
Dimitry Ivanov48ec2882016-08-04 11:50:36 -0700193 "linker_soinfo.cpp",
Collin Fijalkovich47d27aa2021-03-24 10:17:39 -0700194 "linker_transparent_hugepage_support.cpp",
Ryan Prichard45d13492019-01-03 02:51:30 -0800195 "linker_tls.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700196 "linker_utils.cpp",
197 "rt.cpp",
198 ],
dimitryb8b3a762018-09-25 12:31:11 +0200199}
Colin Cross97f0aef2016-07-14 16:05:46 -0700200
dimitryb8b3a762018-09-25 12:31:11 +0200201filegroup {
202 name: "linker_sources_arm",
203 srcs: [
204 "arch/arm/begin.S",
Ryan Prichard129f7a12019-12-23 16:45:47 -0800205 "arch/arm_neon/linker_gnu_hash_neon.cpp",
dimitryb8b3a762018-09-25 12:31:11 +0200206 ],
207}
208
209filegroup {
210 name: "linker_sources_arm64",
211 srcs: [
212 "arch/arm64/begin.S",
Ryan Prichardffaae702019-01-23 17:47:10 -0800213 "arch/arm64/tlsdesc_resolver.S",
Ryan Prichard129f7a12019-12-23 16:45:47 -0800214 "arch/arm_neon/linker_gnu_hash_neon.cpp",
dimitryb8b3a762018-09-25 12:31:11 +0200215 ],
216}
217
218filegroup {
219 name: "linker_sources_x86",
220 srcs: [
221 "arch/x86/begin.S",
222 ],
223}
224
225filegroup {
226 name: "linker_sources_x86_64",
227 srcs: [
228 "arch/x86_64/begin.S",
229 ],
230}
231
dimitryb8b3a762018-09-25 12:31:11 +0200232cc_defaults {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700233 name: "linker_version_script_overlay",
234 arch: {
235 arm: { version_script: "linker.arm.map" },
236 arm64: { version_script: "linker.generic.map" },
237 x86: { version_script: "linker.generic.map" },
238 x86_64: { version_script: "linker.generic.map" },
Ryan Prichard80e40f02019-10-31 19:54:46 -0700239 },
240}
241
242// A template for the linker binary. May be inherited by native bridge implementations.
243cc_defaults {
244 name: "linker_bin_template",
245 defaults: ["linker_defaults"],
246
247 srcs: [":linker_sources"],
248
Colin Cross97f0aef2016-07-14 16:05:46 -0700249 arch: {
250 arm: {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700251 srcs: [":linker_sources_arm"],
Ryan Prichard80e40f02019-10-31 19:54:46 -0700252 },
253 arm64: {
254 srcs: [":linker_sources_arm64"],
Colin Cross97f0aef2016-07-14 16:05:46 -0700255 },
256 x86: {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700257 srcs: [":linker_sources_x86"],
258 },
259 x86_64: {
260 srcs: [":linker_sources_x86_64"],
261 },
Colin Cross97f0aef2016-07-14 16:05:46 -0700262 },
263
Ryan Prichard80e40f02019-10-31 19:54:46 -0700264 // -shared is used to overwrite the -Bstatic and -static flags triggered by enabling
265 // static_executable. This dynamic linker is actually a shared object linked with static
266 // libraries.
Colin Cross97f0aef2016-07-14 16:05:46 -0700267 ldflags: [
268 "-shared",
269 "-Wl,-Bsymbolic",
270 "-Wl,--exclude-libs,ALL",
dimitry8e8c2c02018-01-04 12:08:32 +0100271 "-Wl,-soname,ld-android.so",
Colin Cross97f0aef2016-07-14 16:05:46 -0700272 ],
273
Dimitry Ivanovfc0d4802016-12-06 11:10:09 -0800274 // we are going to link libc++_static manually because
275 // when stl is not set to "none" build system adds libdl
276 // to the list of static libraries which needs to be
277 // avoided in the case of building loader.
278 stl: "none",
279
Colin Cross97f0aef2016-07-14 16:05:46 -0700280 // we don't want crtbegin.o (because we have begin.o), so unset it
281 // just for this module
282 nocrt: true,
283
dimitryb8b3a762018-09-25 12:31:11 +0200284 static_executable: true,
285
286 // Leave the symbols in the shared library so that stack unwinders can produce
287 // meaningful name resolution.
288 strip: {
289 keep_symbols: true,
290 },
291
292 // Insert an extra objcopy step to add prefix to symbols. This is needed to prevent gdb
293 // looking up symbols in the linker by mistake.
294 prefix_symbols: "__dl_",
295
296 sanitize: {
297 hwaddress: false,
298 },
dimitryb8b3a762018-09-25 12:31:11 +0200299
Colin Cross97f0aef2016-07-14 16:05:46 -0700300 static_libs: [
Ryan Prichard249757b2019-11-01 17:18:28 -0700301 "liblinker_main",
Ryan Prichard80e40f02019-10-31 19:54:46 -0700302 "liblinker_malloc",
303
304 "libc++_static",
Colin Cross97f0aef2016-07-14 16:05:46 -0700305 "libc_nomalloc",
Ryan Prichard249757b2019-11-01 17:18:28 -0700306 "libc_dynamic_dispatch",
Dimitry Ivanov451909d2017-01-26 16:52:59 -0800307 "libm",
Ryan Prichardcdf71752020-12-16 03:37:22 -0800308 "libunwind",
Colin Cross97f0aef2016-07-14 16:05:46 -0700309 ],
Colin Cross97f0aef2016-07-14 16:05:46 -0700310
Ryan Prichardd9a41152019-10-14 16:58:53 -0700311 // Ensure that if the linker needs __gnu_Unwind_Find_exidx, then the linker will have a
312 // definition of the symbol. The linker links against libgcc.a, whose arm32 unwinder has a weak
313 // reference to __gnu_Unwind_Find_exidx, which isn't sufficient to pull in the strong definition
314 // of __gnu_Unwind_Find_exidx from libc. An unresolved weak reference would create a
315 // non-relative dynamic relocation in the linker binary, which complicates linker startup.
316 //
317 // This line should be unnecessary because the linker's dependency on libunwind_llvm.a should
318 // override libgcc.a, but this line provides a simpler guarantee. It can be removed once the
319 // linker stops linking against libgcc.a's arm32 unwinder.
320 whole_static_libs: ["libc_unwind_static"],
321
Ryan Prichard80e40f02019-10-31 19:54:46 -0700322 system_shared_libs: [],
323
324 // Opt out of native_coverage when opting out of system_shared_libs
325 native_coverage: false,
326}
327
328// ========================================================
329// linker[_asan][64] binary
330// ========================================================
331
332cc_binary {
Colin Cross97f0aef2016-07-14 16:05:46 -0700333 name: "linker",
Ryan Prichard80e40f02019-10-31 19:54:46 -0700334 defaults: [
335 "linker_bin_template",
336 "linux_bionic_supported",
337 "linker_version_script_overlay",
338 ],
339
Victor Khimenkod15229d2020-05-14 22:14:45 +0200340 srcs: [
341 "linker_translate_path.cpp",
342 ],
343
Colin Cross10fffb42016-12-08 09:57:35 -0800344 symlinks: ["linker_asan"],
Colin Cross97f0aef2016-07-14 16:05:46 -0700345 multilib: {
Colin Cross97f0aef2016-07-14 16:05:46 -0700346 lib64: {
347 suffix: "64",
Colin Cross10fffb42016-12-08 09:57:35 -0800348 },
Colin Cross97f0aef2016-07-14 16:05:46 -0700349 },
Pirama Arumuga Nainarfcd35382019-02-14 13:48:01 -0800350
Ryan Prichard80e40f02019-10-31 19:54:46 -0700351 compile_multilib: "both",
Ryan Prichard80e40f02019-10-31 19:54:46 -0700352
353 recovery_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -0700354 vendor_ramdisk_available: true,
Ryan Prichard80e40f02019-10-31 19:54:46 -0700355 apex_available: [
356 "//apex_available:platform",
357 "com.android.runtime",
358 ],
Pirama Arumuga Nainarfcd35382019-02-14 13:48:01 -0800359
Colin Cross97f0aef2016-07-14 16:05:46 -0700360 target: {
Dan Willemsen7ec52b12016-11-28 17:02:25 -0800361 android: {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700362 srcs: [
363 "linker_debuggerd_android.cpp",
364 ],
Dan Albert4ea19212019-07-23 13:31:14 -0700365 static_libs: [
366 "libc++demangle",
367 "libdebuggerd_handler_fallback",
368 ],
Dan Willemsen7ec52b12016-11-28 17:02:25 -0800369 },
Ryan Prichard80e40f02019-10-31 19:54:46 -0700370 linux_bionic: {
371 static_libs: [
372 "liblinker_debuggerd_stub",
373 ],
Yi Kong6f6daaa2020-12-10 01:27:44 +0800374 },
375 android_arm64: {
376 pgo: {
377 profile_file: "bionic/linker_arm_arm64.profdata",
378 },
379 },
380 android_arm: {
381 pgo: {
382 profile_file: "bionic/linker_arm_arm64.profdata",
383 },
384 },
385 android_x86_64: {
386 pgo: {
387 profile_file: "bionic/linker_x86_x86_64.profdata",
388 },
389 },
390 android_x86: {
391 pgo: {
392 profile_file: "bionic/linker_x86_x86_64.profdata",
393 },
394 },
Colin Cross97f0aef2016-07-14 16:05:46 -0700395 },
Yi Konga7e363f2020-10-01 04:10:01 +0800396
397 lto: {
398 never: true,
399 },
Yi Kong6f6daaa2020-12-10 01:27:44 +0800400 pgo: {
401 sampling: true,
402 },
Colin Cross97f0aef2016-07-14 16:05:46 -0700403}
dimitry11da1dc2018-01-05 13:35:43 +0100404
Ryan Prichard80e40f02019-10-31 19:54:46 -0700405// ========================================================
406// assorted modules
407// ========================================================
408
Elliott Hughes90f96b92019-05-09 15:56:39 -0700409sh_binary {
410 name: "ldd",
Rupert Shuttlewortha7e29a82021-02-18 13:35:22 +0000411 src: "ldd.sh",
Rupert Shuttleworth344b8da2021-02-09 11:35:04 +0000412 bazel_module: { bp2build_available: true },
Elliott Hughes90f96b92019-05-09 15:56:39 -0700413}
414
Collin Fijalkovichc9521e02021-04-29 11:31:50 -0700415// Used to generate binaries that can be backed by transparent hugepages.
416cc_defaults {
417 name: "linker_hugepage_aligned",
418 arch: {
419 arm64: {
420 ldflags: ["-z max-page-size=0x200000"],
421 },
422 x86_64: {
423 ldflags: ["-z max-page-size=0x200000"],
424 },
425 },
426}
427
dimitry11da1dc2018-01-05 13:35:43 +0100428cc_library {
429 // NOTE: --exclude-libs=libgcc.a makes sure that any symbols ld-android.so pulls from
430 // libgcc.a are made static to ld-android.so. This in turn ensures that libraries that
431 // a) pull symbols from libgcc.a and b) depend on ld-android.so will not rely on ld-android.so
432 // to provide those symbols, but will instead pull them from libgcc.a. Specifically,
433 // we use this property to make sure libc.so has its own copy of the code from
434 // libgcc.a it uses.
435 //
436 // DO NOT REMOVE --exclude-libs!
437
Yi Kong7786a342018-08-31 19:01:56 -0700438 ldflags: [
439 "-Wl,--exclude-libs=libgcc.a",
Yi Kong7ac2afb2019-05-06 16:23:10 -0700440 "-Wl,--exclude-libs=libgcc_stripped.a",
Yi Kong7786a342018-08-31 19:01:56 -0700441 "-Wl,--exclude-libs=libclang_rt.builtins-arm-android.a",
442 "-Wl,--exclude-libs=libclang_rt.builtins-aarch64-android.a",
Ryan Prichardef147872021-01-28 14:06:52 -0800443 "-Wl,--exclude-libs=libclang_rt.builtins-i686-android.a",
Yi Kong7786a342018-08-31 19:01:56 -0700444 "-Wl,--exclude-libs=libclang_rt.builtins-x86_64-android.a",
445 ],
dimitry11da1dc2018-01-05 13:35:43 +0100446
447 // for x86, exclude libgcc_eh.a for the same reasons as above
448 arch: {
449 x86: {
450 ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
451 },
452 x86_64: {
453 ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
454 },
455 },
dimitry581723e2018-01-05 14:31:44 +0100456
457 srcs: ["ld_android.cpp"],
dimitry11da1dc2018-01-05 13:35:43 +0100458 cflags: [
459 "-Wall",
460 "-Wextra",
461 "-Wunused",
462 "-Werror",
463 ],
464 stl: "none",
465
466 name: "ld-android",
Ryan Prichard80e40f02019-10-31 19:54:46 -0700467 defaults: ["linux_bionic_supported", "linker_version_script_overlay"],
Yifan Hong5a39cee2020-01-21 16:43:56 -0800468 ramdisk_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -0700469 vendor_ramdisk_available: true,
Jiyong Park5603c6e2018-04-27 21:53:11 +0900470 recovery_available: true,
dimitry7f048802019-05-03 15:57:34 +0200471 native_bridge_supported: true,
dimitry11da1dc2018-01-05 13:35:43 +0100472
Ryan Prichard470b6662018-03-27 22:10:55 -0700473 nocrt: true,
dimitry11da1dc2018-01-05 13:35:43 +0100474 system_shared_libs: [],
Martin Stjernholm82d84bc2020-04-06 20:32:09 +0100475 header_libs: ["libc_headers"],
dimitry11da1dc2018-01-05 13:35:43 +0100476
Pirama Arumuga Nainarfcd35382019-02-14 13:48:01 -0800477 // Opt out of native_coverage when opting out of system_shared_libs
478 native_coverage: false,
479
dimitry11da1dc2018-01-05 13:35:43 +0100480 sanitize: {
481 never: true,
482 },
Jiyong Parke87e0dc2019-10-02 17:09:33 +0900483
484 apex_available: [
485 "//apex_available:platform",
486 "com.android.runtime",
487 ],
Yi Kong15a05a72020-09-22 00:56:13 +0800488
489 lto: {
490 never: true,
491 },
dimitry11da1dc2018-01-05 13:35:43 +0100492}
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800493
494cc_test {
495 name: "linker-unit-tests",
496
497 cflags: [
498 "-g",
499 "-Wall",
500 "-Wextra",
501 "-Wunused",
502 "-Werror",
503 ],
504
505 // We need to access Bionic private headers in the linker.
506 include_dirs: ["bionic/libc"],
507
508 srcs: [
509 // Tests.
510 "linker_block_allocator_test.cpp",
511 "linker_config_test.cpp",
512 "linked_list_test.cpp",
Tamas Petz8d55d182020-02-24 14:15:25 +0100513 "linker_note_gnu_property_test.cpp",
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800514 "linker_sleb128_test.cpp",
515 "linker_utils_test.cpp",
Ryan Prichard129f7a12019-12-23 16:45:47 -0800516 "linker_gnu_hash_test.cpp",
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800517
518 // Parts of the linker that we're testing.
519 "linker_block_allocator.cpp",
520 "linker_config.cpp",
Ryan Prichard551565e2019-12-23 16:03:14 -0800521 "linker_debug.cpp",
Tamas Petz8d55d182020-02-24 14:15:25 +0100522 "linker_note_gnu_property.cpp",
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800523 "linker_test_globals.cpp",
524 "linker_utils.cpp",
525 ],
526
527 static_libs: [
528 "libasync_safe",
529 "libbase",
530 "liblog",
531 ],
Ryan Prichard129f7a12019-12-23 16:45:47 -0800532
533 arch: {
534 arm: {
535 srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"],
536 },
537 arm64: {
538 srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"],
539 },
540 },
541}
542
543cc_benchmark {
544 name: "linker-benchmarks",
545
546 srcs: [
547 "linker_gnu_hash_benchmark.cpp",
548 ],
549
550 arch: {
551 arm: {
552 srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"],
553 },
554 arm64: {
555 srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"],
556 },
557 },
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800558}