Statically Linking V8 libraray causes relocation R_X86_64_TPOFF32 against symbol g_current_local_heap

121 views
Skip to first unread message

Pradish

unread,
Mar 20, 2025, 2:06:03 AMMar 20
to v8-users

I am able to build V8 as a static library using the following args.gn

V8 Version: 13.4.114.19, but when trying to link it statically with another shared libraray which is part of our application it is failing with errors 


On Linux RHEL 8 

the args.gn used is 


v8_static_library = true
is_component_build = false
is_debug = false
target_cpu = "x64"
use_custom_libcxx = false
v8_monolithic = true
v8_use_external_startup_data = false
is_clang = false
clang_use_chrome_plugins = false
treat_warnings_as_errors = false
v8_enable_fast_torque = false
v8_enable_sandbox = false
v8_enable_backtrace = false
v8_enable_disassembler = false
v8_enable_object_print = false
v8_enable_verify_heap = false
dcheck_always_on = false
v8_enable_i18n_support = false
use_sysroot = false
v8_enable_webassembly = false


Errors:
release/libv8_monolith.a(api.o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making a shared object; recompile with -fPIC


/release/libv8_monolith.a(isolate.o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal21g_current_local_heap_E' can not be used when making a shared object; recompile with -fPIC


on further exploring the errors, we found that this declaration in the isolate.h is causing the issue

 in isolate.h

it is declared as

 __attribute__((tls_model(V8_TLS_MODEL))) extern thread_local Isolate* g_current_isolate_ V8_CONSTINIT;  

in Isolate.cc

thread_local Isolate::PerIsolateThreadData* g_current_per_isolate_thread_data_
    V8_CONSTINIT = nullptr;

thread_local Isolate* g_current_isolate_ V8_CONSTINIT = nullptr;

 

After some google , i changed the code to  the following 

in Isolate.h
 __attribute__((tls_model("global-dynamic"))) extern thread_local Isolate* g_current_isolate_ V8_CONSTINIT;


in isolate.cc 

__attribute__((tls_model("global-dynamic")))
thread_local Isolate::PerIsolateThreadData* g_current_per_isolate_thread_data_
    V8_CONSTINIT = nullptr;

__attribute__((tls_model("global-dynamic")))
thread_local Isolate* g_current_isolate_ V8_CONSTINIT = nullptr;


Still no success. 

also note that this was working earlier when the V8 libraries where shared libraires , but after moveing to static this issue is seen

can anyone share some pointers or a fix to resolve the issue.

 regards

Pradish

Igor Sheludko

unread,
Mar 20, 2025, 7:01:34 AMMar 20
to v8-u...@googlegroups.com
Hello!

Could you please try to apply this patch https://crrev.com/c/6375266 and add v8_monolithic_for_shared_library=true to your GN args?

--
--
v8-users mailing list
v8-u...@googlegroups.com
http://groups.google.com/group/v8-users
---
You received this message because you are subscribed to the Google Groups "v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to v8-users+u...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/v8-users/349430fd-d9af-47b4-9412-57ceb2a18e9dn%40googlegroups.com.


--

Igor Sheludko

Software Engineer

ish...@google.com


Google Germany GmbH

Erika-Mann-Straße 33

80636 München


Geschäftsführer: Paul Manicle, Liana Sebastian

Registergericht und -nummer: Hamburg, HRB 86891

Sitz der Gesellschaft: Hamburg


Diese E-Mail ist vertraulich. Falls sie diese fälschlicherweise erhalten haben sollten, leiten Sie diese bitte nicht an jemand anderes weiter, löschen Sie alle Kopien und Anhänge davon und lassen Sie mich bitte wissen, dass die E-Mail an die falsche Person gesendet wurde.

    

This e-mail is confidential. If you received this communication by mistake, please don't forward it to anyone else, please erase all copies and attachments, and please let me know that it has gone to the wrong person.




Pradish

unread,
Mar 21, 2025, 2:25:07 AMMar 21
to v8-users
Hi Igor,

Thankyou for looking into this.

i tired the changes that you had suggested to the BUILD.gn, Updated by args.gn to use the new  v8_monolithic_for_shared_library = true


v8_static_library = true
is_component_build = false
is_debug = false
target_cpu = "x64"
use_custom_libcxx = false
v8_monolithic = true
v8_monolithic_for_shared_library = true

v8_use_external_startup_data = false
is_clang = true

clang_use_chrome_plugins = false
treat_warnings_as_errors = false
v8_enable_fast_torque = false
v8_enable_sandbox = false
v8_enable_backtrace = false
v8_enable_disassembler = false
v8_enable_object_print = false
v8_enable_verify_heap = false
dcheck_always_on = false
v8_enable_i18n_support = false
use_sysroot = false
v8_enable_webassembly = false

Errors seen During linking the static libraray with the shared libraray

/lib/release/libv8_monolith.a(api.o): relocat                      ion R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making a share                      d object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(isolate.o): rel                      ocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal21g_current_local_heap_E' can not be used when making                       a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(factory.o): rel                      ocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making a s                      hared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(heap-write-barr                      ier.o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal21g_current_local_heap_E' can not be used w                      hen making a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(heap.o): reloca                      tion R_X86_64_TPOFF32 against symbol `_ZN2v88internal21g_current_local_heap_E' can not be used when making a s                      hared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(local-heap.o):                       relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making                       a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(mark-compact.o)                      : relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when makin                      g a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(stub-cache.o):                       relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making                       a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(bootstrapper.o)                      : relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when makin                      g a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(bytecode-array-                      iterator.o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal21g_current_local_heap_E' can not be u                      sed when making a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(log.o): relocat                      ion R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making a share                      d object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(compilation-cac                      he-table.o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used                       when making a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(contexts.o): re                      location R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making a                       shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(js-objects.o):                       relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making                       a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(js-regexp.o): r                      elocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making a                       shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(js-struct.o): r                      elocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making a                       shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(keys.o): reloca                      tion R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making a shar                      ed object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(literal-objects                      .o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when ma                      king a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(lookup.o): relo                      cation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making a sh                      ared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(map.o): relocat                      ion R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making a share                      d object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(objects.o): rel                      ocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making a s                      hared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(ordered-hash-ta                      ble.o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when                       making a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(scope-info.o):                       relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making                       a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(source-text-mod                      ule.o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when                       making a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(string-forwardi                      ng-table.o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used                       when making a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(string-table.o)                      : relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when makin                      g a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(string.o): relo                      cation R_X86_64_TPOFF32 against symbol `_ZN2v88internal21g_current_local_heap_E' can not be used when making a                       shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(swiss-name-dict                      ionary.o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used w                      hen making a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(transitions.o):                       relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making                       a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(regexp.o): relo                      cation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making a sh                      ared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(runtime-object.                      o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when mak                      ing a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(deserializer.o)                      : relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when makin                      g a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(string-stream.o                      ): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when maki                      ng a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(bytecode-offset                      -iterator.o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal21g_current_local_heap_E' can not be                       used when making a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(builtins-string                      .o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal21g_current_local_heap_E' can not be used when                       making a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(builtins-struct                      .o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when ma                      king a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(external-refere                      nce.o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when                       making a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(log-file.o): re                      location R_X86_64_TPOFF32 against symbol `_ZN2v88internal21g_current_local_heap_E' can not be used when making                       a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(runtime-test.o)                      : relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal21g_current_local_heap_E' can not be used when ma                      king a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(maglev-ir.o): r                      elocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal21g_current_local_heap_E' can not be used when makin                      g a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(access-info.o):                       relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be used when making                       a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(compilation-dep                      endencies.o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal18g_current_isolate_E' can not be use                      d when making a shared object; recompile with -fPIC
/opt/rh/devtoolset-12/root/usr/libexec/gcc/x86_64-redhat-linux/12/ld: /nfshome/ProductDirectory/x86_64-suse-linux/lib/release/libv8_monolith.a(js-native-conte                      xt-specialization.o): relocation R_X86_64_TPOFF32 against symbol `_ZN2v88internal21g_current_local_heap_E' can                       not be used when making a shared object; recompile with -fPIC
collect2: error: ld returned 1 exit status


 output of objdump tool on the libv8_monolith.a 

[machine@txtxtxclone obj]$ objdump -r libv8_monolith.a | grep -E "R_X86_64_PC32|R_X86_64_PLT32"
objdump: libv8_monolith.a(bits.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(bounded-page-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cpu.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(stack_trace.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(division-by-constant.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(emulated-virtual-address-subspace.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(file-utils.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(fpu.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(ieee754.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(logging.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bignum-dtoa.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bignum.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cached-powers.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(diy-fp.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(dtoa.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(fast-dtoa.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(fixed-dtoa.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(strtod.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(once.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(page-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(condition-variable.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memory-protection-key.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(mutex.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(platform.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(semaphore.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(time.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(region-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(lsan-page-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(lsan-virtual-address-space.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(strings.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(sys-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(random-number-generator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(virtual-address-space-page-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(virtual-address-space.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(vlq-base64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(platform-posix.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(platform-posix-time.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(stack_trace_posix.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(platform-linux.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(default-foreground-task-runner.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(default-job.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(default-platform.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(default-thread-isolated-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(default-worker-threads-task-runner.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(delayed-task-queue.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(task-queue.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(trace-buffer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(trace-config.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(trace-object.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(trace-writer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(tracing-controller.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(worker-thread.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(api-arguments.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(api-natives.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(api.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(ast-function-literal-id-reindexer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(ast-value-factory.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(ast.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(modules.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(prettyprinter.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(scopes.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(source-range-ast-visitor.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(variables.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(baseline.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-offset-iterator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(accessors.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-abstract-module-source.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-api.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-array.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-arraybuffer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-async-disposable-stack.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-async-module.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-atomics-synchronization.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-bigint.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-callsite.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-collections.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-console.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-dataview.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-date.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-disposable-stack.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-error.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-function.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-global.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-internal.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-json.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-number.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-object.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-reflect.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-regexp.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-shadow-realm.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-shared-array.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-sharedarraybuffer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-string.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-struct.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-symbol.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-temporal.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-trace.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-typed-array.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins-weak-refs.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtins.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(constants-table-builder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(aligned-slot-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(assembler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bailout-reason.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(code-comments.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(code-desc.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(code-factory.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(code-reference.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(compilation-cache.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(compiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(constant-pool.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(external-reference-encoder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(external-reference-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(external-reference.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(flush-instruction-cache.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(handler-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(interface-descriptors.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(machine-type.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(macro-assembler-base.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-safepoint-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(optimized-compilation-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(pending-optimization-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(register-configuration.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(reloc-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(safepoint-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(source-position-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(source-position.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(tick-counter.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(unoptimized-compilation-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(assert-scope.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(code-memory-access.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(ptr-compr.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(lazy-compile-dispatcher.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(optimizing-compile-dispatcher.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(date.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(dateparser.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(debug-coverage.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(debug-evaluate.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(debug-frames.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(debug-interface.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(debug-property-iterator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(debug-scope-iterator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(debug-scopes.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(debug-stack-trace-iterator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(debug.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(liveedit-diff.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(liveedit.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(deoptimize-reason.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(deoptimized-frame-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(deoptimizer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(frame-translation-builder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(materialized-object-store.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(translated-state.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(basic-block-profiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(compilation-statistics.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(disassembler.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(eh-frame.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(gdb-jit.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(objects-debug.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(objects-printer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(perf-jit.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(unwinder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(arguments.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(clobber-registers.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(embedder-state.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(encoded-c-signature.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(execution.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(frames.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(futex-emulation.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(interrupts-scope.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(isolate.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(local-isolate.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(messages.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(microtask-queue.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(protectors.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(simulator-base.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(stack-guard.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(thread-id.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(thread-local-top.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(tiering-manager.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8threads.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cputracemark-extension.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(externalize-string-extension.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(gc-extension.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(ignition-statistics-extension.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(statistics-extension.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(trigger-failure-extension.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(flags.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(global-handles.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(handles.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(local-handles.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(persistent-handles.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(shared-object-conveyor-handles.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(traced-handles.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(allocation-observer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(array-buffer-sweeper.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(code-range.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(code-stats.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(collection-barrier.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(combined-heap.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(concurrent-marking.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cpp-heap.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cpp-snapshot.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cross-heap-remembered-set.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(unified-heap-marking-state.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(unified-heap-marking-verifier.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(unified-heap-marking-visitor.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(ephemeron-remembered-set.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(evacuation-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(evacuation-verifier.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(factory-base.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(factory.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(finalization-registry-cleanup-task.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(free-list.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(gc-tracer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-controller.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-layout-tracer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-layout.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-verifier.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(heap-visitor.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-write-barrier.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(incremental-marking-job.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(incremental-marking.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(index-generator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(large-page-metadata.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(large-spaces.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(local-factory.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(local-heap.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(main-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(mark-compact.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(mark-sweep-utilities.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(marking-barrier.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(marking-worklist.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(marking.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memory-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memory-balancer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memory-chunk-metadata.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memory-chunk.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memory-measurement.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memory-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(minor-gc-job.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(minor-mark-sweep.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(mutable-page-metadata.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(new-spaces.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(object-stats.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(page-metadata.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(paged-spaces.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(pretenuring-handler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(read-only-heap.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(read-only-promotion.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(read-only-spaces.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(safepoint.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(scavenger.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(slot-set.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(spaces.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(stress-scavenge-observer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(sweeper.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(traced-handles-marking-visitor.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(trusted-range.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(visit-object.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(weak-object-worklists.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(zapping.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(call-optimization.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(handler-configuration.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(ic-stats.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(ic.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(stub-cache.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bootstrapper.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(icu_util.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(isolate-group.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(startup-data-util.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(v8.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-array-builder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-array-iterator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-array-random-iterator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-array-writer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-decoder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-flags-and-tokens.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-generator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-label.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-node.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-operands.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-register-optimizer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-register.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-source-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecodes.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(constant-array-builder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(control-flow-builders.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(handler-table-builder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(interpreter-intrinsics.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(interpreter.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(json-parser.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(json-stringifier.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(sampler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(counters.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(local-logger.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(log-file.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(log.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(metrics.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(conversions.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(ieee754.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(math-random.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(abstract-code.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(backing-store.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bigint.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-array.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(call-site-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(code-kind.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(code.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(compilation-cache-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(contexts.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(debug-objects.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(deoptimization-data.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(dependent-code.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(elements-kind.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(elements.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(embedder-data-array.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(feedback-vector.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(field-type.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(fixed-array.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(instruction-stream.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-array-buffer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-atomics-synchronization.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-disposable-stack.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-function.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-objects.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-raw-json.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-regexp.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-struct.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-temporal-objects.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-weak-refs.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(keys.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(literal-objects.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(lookup-cache.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(lookup.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(managed.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(map-updater.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(map.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(module.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(object-type.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(objects.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(option-utils.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(ordered-hash-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(property-descriptor.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(property.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-match-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(scope-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(shared-function-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(simd.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(source-text-module.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(string-comparator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(string-forwarding-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(string-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(string.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(swiss-name-dictionary.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(symbol-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(synthetic-module.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(tagged-impl.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(template-objects.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(templates.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(transitions.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(type-hints.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(value-serializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(visitors.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(waiter-queue-node.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(func-name-inferrer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(import-attributes.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(literal-buffer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(parse-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(parser.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(parsing.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(pending-compilation-error-handler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(preparse-data.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(preparser.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(rewriter.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(scanner-character-streams.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(scanner.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(token.o): unknown type [0x40000014] section `.crel.data.rel.ro'
objdump: libv8_monolith.a(allocation-tracker.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cpu-profiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-profiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-snapshot-generator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(profile-generator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(profiler-listener.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(profiler-stats.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(sampling-heap-profiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(strings-storage.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(symbolizer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(tick-sample.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(tracing-cpu-profiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(weak-code-registry.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(experimental-bytecode.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(experimental-compiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(experimental-interpreter.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(experimental.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-ast.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-bytecode-generator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-bytecode-peephole.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-bytecodes.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-compiler-tonode.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-compiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-dotprinter.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-error.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-interpreter.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-macro-assembler-tracer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-macro-assembler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-parser.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-result-vector.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-stack.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-utils.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(roots.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-array.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-atomics.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-bigint.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-classes.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-collections.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-compiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-date.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-debug.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-forin.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-function.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-futex.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-generator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-internal.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-literals.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-module.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-numbers.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-object.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-operators.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-promise.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-proxy.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-regexp.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-scopes.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-shadow-realm.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-strings.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-symbol.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-temporal.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-test.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-trace.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(runtime-typedarray.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime-utils.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(runtime-weak-refs.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(runtime.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(code-pointer-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cppheap-pointer-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(external-pointer-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(hardware-support.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(js-dispatch-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(sandbox.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(testing.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(trusted-pointer-scope.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(trusted-pointer-table.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(code-serializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(context-deserializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(context-serializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(deserializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(embedded-data.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(object-deserializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(read-only-deserializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(read-only-serializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(roots-serializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(serializer-deserializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(serializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(shared-heap-deserializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(shared-heap-serializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(snapshot-data.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(snapshot-source-sink.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(snapshot-utils.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(snapshot.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(sort-builtins.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(startup-deserializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(startup-serializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(string-builder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(string-case.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(string-hasher.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(string-stream.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(unicode-decoder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(unicode.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(uri.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cancelable-task.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(operations-barrier.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(task-utils.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(temporal-parser.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(trace-event.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(traced-value.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(tracing-category-observer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(address-map.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(allocation.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bit-vector.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(hex-format.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(identity-map.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memcopy.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(ostreams.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(sha-256.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(utils.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(version.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(accounting-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(zone-segment.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(zone.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(halfsiphash.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(baseline-batch-compiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(baseline-compiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-assembler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-code-generator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-compilation-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-compilation-unit.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-compiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-concurrent-dispatcher.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-graph-builder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-graph-printer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-interpreter-frame-state.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-ir.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-phi-representation-selector.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-pipeline-statistics.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-regalloc.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-assembler-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-ir-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(macro-assembler-shared-ia32-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(assembler-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(builtin-jump-table-info-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cpu-x64.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(macro-assembler-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(deoptimizer-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(disasm-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(eh-frame-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(unwinder-x64.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(frame-constants-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-macro-assembler-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(allocation.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(compaction-worklists.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(compactor.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(concurrent-marker.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(explicit-management.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(free-list.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(gc-info-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(gc-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(gc-invoker.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-base.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-consistency.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(heap-growing.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-object-header.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-page.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-space.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-state.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-statistics-collector.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(liveness-broker.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(logging.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(marker.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(marking-state.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(marking-verifier.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(marking-visitor.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(marking-worklists.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(member-storage.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memory.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(name-trait.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(object-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(object-size-trait.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(page-memory.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(persistent-node.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(platform.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(pointer-policies.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(prefinalizer-handler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(process-heap.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(raw-heap.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(remembered-set.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(stats-collector.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(sweeper.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(testing.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(trace-trait.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(virtual-memory.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(visitor.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(write-barrier.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(caged-heap-local-data.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(caged-heap.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cycleclock.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(spinlock.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(sysinfo.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(thread_identity.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(unscaledcycleclock.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(log_severity.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(raw_logging.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(spinlock_wait.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(demangle.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(demangle_rust.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(decode_rust_punycode.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(utf8_for_code_point.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(ascii.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(charconv.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(escaping.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(charconv_bigint.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(charconv_parse.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(damerau_levenshtein_distance.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memutil.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(stringify_sink.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(match.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(numbers.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(str_cat.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(str_replace.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(str_split.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(substitute.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(throw_delegate.o): unknown type [0x40000014] section `.crel.text.unlikely.'
objdump: libv8_monolith.a(escaping.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(ostringstream.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(utf8.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(int128.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cord.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cord_analysis.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cord_internal.o): unknown type [0x40000014] section `.crel.text.unlikely.'
objdump: libv8_monolith.a(cord_rep_btree.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cord_rep_btree_navigator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cord_rep_btree_reader.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cord_rep_consume.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cord_rep_crc.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(crc_cord_state.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(crc32c.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(crc_memcpy_fallback.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(crc_non_temporal_memcpy.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cpu_detect.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(crc.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(crc_x86_arm_combined.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(arg.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bind.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(extension.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(float_conversion.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(output.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(parser.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cordz_info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cordz_functions.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(exponential_biased.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cordz_handle.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(barrier.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(blocking_counter.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(create_thread_identity.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(futex_waiter.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(per_thread_sem.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(pthread_waiter.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(sem_waiter.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(stdcpp_waiter.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(waiter_base.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(mutex.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(notification.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(graphcycles.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(low_level_alloc.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(kernel_timeout.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(civil_time.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(clock.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(duration.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(format.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(time.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(civil_time_detail.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(time_zone_fixed.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(time_zone_format.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(time_zone_if.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(time_zone_impl.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(time_zone_info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(time_zone_libc.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(time_zone_lookup.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(time_zone_posix.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(zone_info_source.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(tracing.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(stacktrace.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(address_is_readable.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(elf_mem_image.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(vdso_support.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(symbolize.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(hash.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(city.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(low_level_hash.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(raw_hash_set.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(hashtablez_sampler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(hashtablez_sampler_force_weak_definition.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(failure_signal_handler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(examine_stack.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(check_op.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(log_message.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(log_format.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(globals.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(log_sink_set.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(globals.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(vlog_config.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(fnmatch.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(log_sink.o): unknown type [0x40000014] section `.crel.data.rel.ro'
objdump: libv8_monolith.a(proto.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(structured_proto.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(strerror.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(leak_check.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(conditions.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(die_if_null.o): unknown type [0x40000014] section `.crel.text.unlikely.'
objdump: libv8_monolith.a(initialize.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(discrete_distribution.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(seed_sequences.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(seed_gen_exception.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(entropy_pool.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(randen.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(randen_detect.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(randen_hwaes.o): unknown type [0x40000014] section `.crel.text.unlikely.'
objdump: libv8_monolith.a(randen_slow.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(seed_material.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(status_internal.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(status.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(status_payload_printer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(statusor.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(branred.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(s_sin.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(active-system-pages.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(incremental-marking-schedule.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memory-tagging.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(stack.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(worklist.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(simdutf.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(factory.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(allocation-site-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(api-callbacks-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(arguments-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(call-site-info-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cell-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-array-tq.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(contexts-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(data-handler-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(debug-objects-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(descriptor-array-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(embedder-data-array-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(feedback-cell-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(feedback-vector-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(fixed-array-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(foreign-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(free-space-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-number-tq.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(js-array-buffer-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-array-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-atomics-synchronization-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-collection-iterator-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-collection-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-disposable-stack-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-function-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-generator-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-iterator-helpers-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-objects-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-promise-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-proxy-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-raw-json-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-regexp-string-iterator-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-regexp-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-shadow-realm-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-shared-array-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-struct-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-temporal-objects-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-weak-refs-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(literal-objects-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(map-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(megadom-handler-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(microtask-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(module-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(name-tq.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(oddball-tq.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(hole-tq.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(trusted-object-tq.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(primitive-heap-object-tq.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(promise-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(property-array-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(property-cell-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(property-descriptor-object-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(prototype-info-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(regexp-match-info-tq.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(scope-info-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(script-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(shared-function-info-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(source-text-module-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(string-tq.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(struct-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(synthetic-module-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(template-objects-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(templates-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(torque-defined-classes-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(turbofan-types-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(turboshaft-types-tq.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bigint-internal.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bitwise.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(div-burnikel.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(div-helpers.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(div-schoolbook.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(fromstring.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(mul-karatsuba.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(mul-schoolbook.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(tostring.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(vector-arithmetic.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(div-barrett.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(mul-fft.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(mul-toom.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(Protocol.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(Console.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(Debugger.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(HeapProfiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(Profiler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(Runtime.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(Schema.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(crc32.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(custom-preview.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(injected-script.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(inspected-context.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(remote-object-id.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(search-util.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(string-16.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(string-util.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(test-interface.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-console-agent-impl.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-console-message.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-console.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-debugger-agent-impl.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-debugger-barrier.o): unknown type [0x40000014] section `.crel.eh_frame'
objdump: libv8_monolith.a(v8-debugger-id.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-debugger-script.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-debugger.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-deep-serializer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-heap-profiler-agent-impl.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-inspector-impl.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-inspector-session-impl.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-profiler-agent-impl.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-regex.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-runtime-agent-impl.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-schema-agent-impl.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-serialization-duplicate-tracker.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-stack-trace-impl.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-value-utils.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(value-mirror.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(v8-string-conversions.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cbor.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(dispatch.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(error_support.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(json.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(protocol_core.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(serializable.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(span.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(status.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(json_platform_v8.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(abort.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(aligned_allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(per_target.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(print.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(stats.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(targets.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(timer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(adler32.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(compress.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(cpu_features.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(crc32.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(deflate.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(gzclose.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(gzlib.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(gzread.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(gzwrite.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(infback.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(inffast.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(inftrees.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(trees.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(uncompr.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(zutil.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(adler32_simd.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(inffast_chunk.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(inflate.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(crc32_simd.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(crc_folding.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(compression_utils_portable.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(access-builder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(access-info.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(add-type-assertions-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(all-nodes.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bitcast-elider.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(code-generator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(frame-elider.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(gap-resolver.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(instruction-scheduler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(instruction-selector.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(instruction.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(jump-threading.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(move-optimizer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(register-allocator-verifier.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(register-allocator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(spill-placer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(basic-block-instrumentor.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(branch-condition-duplicator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(branch-elimination.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-analysis.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-graph-builder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(bytecode-liveness-map.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(c-linkage.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(checkpoint-elimination.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(code-assembler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(common-node-cache.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(common-operator-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(common-operator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(compilation-dependencies.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(compiler-source-position-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(constant-folding-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(control-equivalence.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(csa-load-elimination.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(dead-code-elimination.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(decompression-optimizer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(escape-analysis-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(escape-analysis.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(fast-api-calls.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(feedback-source.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(frame-states.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(frame.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(graph-assembler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(graph-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(graph-trimmer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(heap-refs.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-call-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-context-specialization.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-create-lowering.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-generic-lowering.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-graph.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-heap-broker.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-inlining-heuristic.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-inlining.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-intrinsic-lowering.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-native-context-specialization.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-operator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-type-hint-lowering.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(js-typed-lowering.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(late-escape-analysis.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(linkage.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(load-elimination.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(loop-analysis.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(loop-peeling.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(loop-unrolling.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(loop-variable-optimizer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(machine-graph-verifier.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(machine-graph.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(machine-operator-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(machine-operator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(map-inference.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memory-lowering.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memory-optimizer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(node-marker.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(node-matchers.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(node-observer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(node-origin-table.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(node-properties.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(node.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(opcodes.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(operation-typer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(operator-properties.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(operator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(osr.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(pair-load-store-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(pipeline-statistics.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(pipeline.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(property-access-builder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(raw-machine-assembler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(redundancy-elimination.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(refs-map.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(representation-change.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(schedule.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(scheduler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(select-lowering.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(simplified-lowering-verifier.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(simplified-lowering.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(simplified-operator-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(simplified-operator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(state-values-utils.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(string-builder-optimizer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(turbofan-enabled.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(turbofan-graph-visualizer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(turbofan-graph.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(turbofan-typer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(turbofan-types.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(analyzer-iterator.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(assembler.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(block-instrumentation-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(block-instrumentation-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(build-graph-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(code-elimination-and-simplification-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(copying-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(csa-optimize-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(debug-feature-lowering-phase.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(decompression-optimization-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(decompression-optimization.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(graph-builder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(graph-visualizer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(graph.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(instruction-selection-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(late-escape-analysis-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(late-load-elimination-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(loop-finder.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(loop-peeling-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(loop-unrolling-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(loop-unrolling-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(machine-lowering-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(maglev-graph-building-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(memory-optimization-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(operations.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(optimize-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(pipelines.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(pretenuring-propagation-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(representations.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(sidetable.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(simplify-tf-loops.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(store-store-elimination-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(string-escape-analysis-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(type-assertions-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(type-parser.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(typed-optimizations-phase.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(typer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(types.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(use-map.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(utils.o): unknown type [0x40000014] section `.crel.text.startup'
objdump: libv8_monolith.a(type-cache.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(type-narrowing-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(typed-optimization.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(value-numbering-reducer.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(verifier.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(zone-stats.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(code-generator-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(instruction-scheduler-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(instruction-selector-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(unwinding-info-writer-x64.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(setup-isolate-deserialize.o): unknown type [0x40000014] section `.crel.text'
objdump: libv8_monolith.a(snapshot.o): unknown type [0x40000014] section `.crel.text'

Pradish

unread,
Mar 25, 2025, 6:17:30 AMMar 25
to v8-users
Hi Igor,

is this a know issue ? will there be a fix for this in future.

regards
Pradish

Sam Cao

unread,
Apr 8, 2025, 5:09:35 PMApr 8
to v8-users
Hi All,

I'm having the same issue from v13.3 to v13.5 on Linux x86_64. There are thousands of lines of error messages as follows.

/usr/bin/ld: unknown architecture of input file `x64.release/obj/libv8_monolith.a(spill-placer.o)' is incompatible with i386:x86-64 output
/usr/bin/ld: unknown architecture of input file `x64.release/obj/libv8_monolith.a(basic-block-instrumentor.o)' is incompatible with i386:x86-64 output                              
/usr/bin/ld: error in x64.release/obj/libv8_monolith.a(js-array-buffer-tq.o)(.eh_frame); no .eh_frame_hdr table will be created
/usr/bin/ld: error in x64.release/obj/libv8_monolith.a(js-array-tq.o)(.eh_frame); no .eh_frame_hdr table will be created  

It works well on Windows and MacOS. Now my project has been blocked at v13.2. I wonder if there is a flag in args.gn has the default value flipped, but I cannot find it.

Thank you,
Sam

Sam Cao

unread,
Apr 9, 2025, 1:07:15 PMApr 9
to v8-users
So here is the way I fix this issue.

Set linker to lld by -fuse-ld=lld and disable compression by -Wl,--compress-sections=.text=none.

Best regards,
Sam
Reply all
Reply to author
Forward
0 new messages