mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-12-23 20:03:43 +01:00
(lib_LTLIBRARIES_cdep_setjmp): New macro. Move libunwind-setjmp.la
from lib_LTLIBRARIES_cdep to here. (libunwind_la_SOURCES_x86_64_common): Mention x86_64/ucontext_i.h so it gets included in the tar-ball, too. (lib_LTLIBRARIES): List $(lib_LTLIBRARIES_cdep_setjmp) after the other libraries. (Logical change 1.254)
This commit is contained in:
parent
49af3506c7
commit
f028c7db74
1 changed files with 6 additions and 3 deletions
|
@ -11,9 +11,11 @@ COMMON_SO_LDFLAGS = -XCClinker -nostartfiles \
|
|||
if REMOTE_ONLY
|
||||
LIBRARIES_cdep =
|
||||
lib_LTLIBRARIES_cdep =
|
||||
lib_LTLIBRARIES_cdep_setjmp =
|
||||
else
|
||||
LIBRARIES_cdep = libunwind-ptrace.a
|
||||
lib_LTLIBRARIES_cdep = libunwind.la libunwind-setjmp.la
|
||||
lib_LTLIBRARIES_cdep = libunwind.la
|
||||
lib_LTLIBRARIES_cdep_setjmp = libunwind-setjmp.la
|
||||
endif
|
||||
|
||||
### libunwind-ptrace:
|
||||
|
@ -162,7 +164,7 @@ libunwind_x86_la_SOURCES_x86 = $(libunwind_la_SOURCES_x86_common) \
|
|||
# The list of files that go both into libunwind and libunwind-x86_64:
|
||||
libunwind_la_SOURCES_x86_64_common = $(libunwind_la_SOURCES_common) \
|
||||
$(dwarf_SOURCES_common) \
|
||||
x86_64/init.h x86_64/unwind_i.h \
|
||||
x86_64/init.h x86_64/unwind_i.h x86_64/ucontext_i.h \
|
||||
x86_64/is_fpreg.c x86_64/regname.c
|
||||
|
||||
# The list of files that go into libunwind:
|
||||
|
@ -270,7 +272,8 @@ libunwind_la_LDFLAGS = $(COMMON_SO_LDFLAGS) -version-info $(SOVERSION)
|
|||
libunwind_la_LIBADD = -lc
|
||||
|
||||
lib_LIBRARIES = $(LIBRARIES_cdep)
|
||||
lib_LTLIBRARIES = $(lib_LTLIBRARIES_cdep) $(lib_LTLIBRARIES_arch)
|
||||
lib_LTLIBRARIES = $(lib_LTLIBRARIES_cdep) $(lib_LTLIBRARIES_arch) \
|
||||
$(lib_LTLIBRARIES_cdep_setjmp)
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include/$(arch) -I$(top_srcdir)/include -I.
|
||||
AM_CCASFLAGS = $(AM_CPPFLAGS)
|
||||
|
|
Loading…
Reference in a new issue