mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-01-23 00:30:29 +01:00
Fix linker errors with recent binutils
Without this, tests that called unw_getcontext() got a linker error Signed-off-by: Arun Sharma <asharma@fb.com>
This commit is contained in:
parent
f89fb17695
commit
42b67080eb
1 changed files with 7 additions and 7 deletions
|
@ -128,8 +128,8 @@ LIBUNWIND_setjmp = $(top_builddir)/src/libunwind-setjmp.la \
|
|||
|
||||
test_async_sig_LDADD = $(LIBUNWIND_local) -lpthread
|
||||
test_flush_cache_LDADD = $(LIBUNWIND_local)
|
||||
test_init_remote_LDADD = $(LIBUNWIND)
|
||||
test_mem_LDADD = $(LIBUNWIND)
|
||||
test_init_remote_LDADD = $(LIBUNWIND) $(LIBUNWIND_local)
|
||||
test_mem_LDADD = $(LIBUNWIND) $(LIBUNWIND_local)
|
||||
test_ptrace_LDADD = $(LIBUNWIND_ptrace) $(LIBUNWIND)
|
||||
test_proc_info_LDADD = $(LIBUNWIND)
|
||||
test_static_link_LDADD = $(LIBUNWIND)
|
||||
|
@ -137,12 +137,12 @@ test_strerror_LDADD = $(LIBUNWIND)
|
|||
rs_race_LDADD = $(LIBUNWIND) -lpthread
|
||||
test_varargs_LDADD = @BACKTRACELIB@
|
||||
|
||||
Gtest_bt_LDADD = $(LIBUNWIND)
|
||||
Gtest_concurrent_LDADD = $(LIBUNWIND) -lpthread
|
||||
Gtest_bt_LDADD = $(LIBUNWIND) $(LIBUNWIND_local)
|
||||
Gtest_concurrent_LDADD = $(LIBUNWIND) $(LIBUNWIND_local) -lpthread
|
||||
Gtest_dyn1_LDADD = $(LIBUNWIND) $(LIBUNWIND_local)
|
||||
Gtest_exc_LDADD = $(LIBUNWIND)
|
||||
Gtest_init_LDADD = $(LIBUNWIND)
|
||||
Gtest_resume_sig_LDADD = $(LIBUNWIND)
|
||||
Gtest_exc_LDADD = $(LIBUNWIND) $(LIBUNWIND_local)
|
||||
Gtest_init_LDADD = $(LIBUNWIND) $(LIBUNWIND_local)
|
||||
Gtest_resume_sig_LDADD = $(LIBUNWIND) $(LIBUNWIND_local)
|
||||
Gperf_simple_LDADD = $(LIBUNWIND) $(LIBUNWIND_local)
|
||||
Gtest_trace_LDADD=$(LIBUNWIND) $(LIBUNWIND_local)
|
||||
Gperf_trace_LDADD = $(LIBUNWIND) $(LIBUNWIND_local)
|
||||
|
|
Loading…
Reference in a new issue