forked from pool/julia
e15cadffe0
- Remove debug package. It's not created. Still we won't strip debug symbols from julia as it will cause issues. - Declare that it conflicts with juliaup. - Update tagged release banner message that says it is an unofficial experimental build - Add mbedtls-hardcoded-libs.patch - Update description - Add llvm-link-shared.patch - Add openlibm.patch - Add libblastrampoline-hardcoded-libs.patch - Add use-system-libuv-correctly.patch - Use sed to replace julia-hardcoded-libs.patch - Add patch julia-suitesparse-7.patch - Update julia-env-script-interpreter.patch - Add new patches * 21d4c2f1.patch * 959902f1.patch * e08e1444.patch * f11bfc6c.patch * julia-hardcoded-libs.patch * julia-libgit2-1.7.patch * julia-libunwind-1.9.patch - Update to julia version 1.9.4 ** CHANGELOG TOO HUGE SINCE 1.6.3 ** See https://github.com/JuliaLang/julia/compare/v1.6.3...v1.9.4 - Remove a lot of old patches * julia-fix_doc_build.patch * julia-fix-mbedtls-build-failure-gcc-11.patch * julia-fix-task-build-failure-gcc-11.patch OBS-URL: https://build.opensuse.org/request/show/1132207 OBS-URL: https://build.opensuse.org/package/show/science/julia?expand=0&rev=114
21 lines
750 B
Diff
21 lines
750 B
Diff
diff --git a/src/debuginfo.cpp b/src/debuginfo.cpp
|
|
index 95b562311b..69fceb0cfe 100644
|
|
--- a/src/debuginfo.cpp
|
|
+++ b/src/debuginfo.cpp
|
|
@@ -265,6 +265,7 @@ public:
|
|
di->format = UNW_INFO_FORMAT_ARM_EXIDX;
|
|
di->start_ip = (uintptr_t)arm_text_addr;
|
|
di->end_ip = (uintptr_t)(arm_text_addr + arm_text_len);
|
|
+ di->load_offset = 0;
|
|
di->u.rti.name_ptr = 0;
|
|
di->u.rti.table_data = arm_exidx_addr;
|
|
di->u.rti.table_len = arm_exidx_len;
|
|
@@ -1577,6 +1578,7 @@ void register_eh_frames(uint8_t *Addr, size_t Size)
|
|
di->u.rti.table_data = (unw_word_t)table;
|
|
di->start_ip = start_ip;
|
|
di->end_ip = end_ip;
|
|
+ di->load_offset = 0;
|
|
|
|
jl_profile_atomic([&]() {
|
|
_U_dyn_register(di);
|