1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-09-27 17:09:29 +02:00

Replace libuwind-elf32.la with $(LIBUNWIND_ELF)

This was needed to fix build errors on x86_64.

Signed-off-by: Arun Sharma <asharma@fb.com>
This commit is contained in:
Arun Sharma 2011-03-22 08:34:33 -07:00
parent 4870386087
commit 57695518b3

View file

@ -110,8 +110,19 @@ Ltest_nomalloc_SOURCES = Ltest-nomalloc.c
LIBUNWIND = $(top_builddir)/src/libunwind-$(arch).la $(LIBUNWIND_local)
LIBUNWIND_ptrace = $(top_builddir)/src/libunwind-ptrace.a
if USE_ELF32
LIBUNWIND_ELF = $(top_builddir)/src/libunwind-elf32.la
endif
if USE_ELF64
LIBUNWIND_ELF = $(top_builddir)/src/libunwind-elf64.la
endif
if USE_ELFXX
LIBUNWIND_ELF = $(top_builddir)/src/libunwind-elfxx.la
endif
LIBUNWIND_setjmp = $(top_builddir)/src/libunwind-setjmp.la \
$(top_builddir)/src/libunwind-elf32.la $(LIBUNWIND)
$(LIBUNWIND_ELF) $(LIBUNWIND)
test_async_sig_LDADD = $(LIBUNWIND) -lpthread
test_flush_cache_LDADD = $(LIBUNWIND)
@ -143,4 +154,4 @@ Lperf_simple_LDADD = $(LIBUNWIND_local)
test_setjmp_LDADD = $(LIBUNWIND_setjmp)
ia64_test_setjmp_LDADD = $(LIBUNWIND_setjmp)
arm_extbl_test_LDADD = $(top_builddir)/src/libunwind-elf32.la $(LIBUNWIND)
arm_extbl_test_LDADD = $(LIBUNWIND_ELF) $(LIBUNWIND)