[RS6000] Replace TLSmode with P, and correct tls call mems
[official-gcc.git] / libbacktrace / Makefile.am
blob13e94f27aef5ef1a764ffd76867ddbc6ccba3c9b
1 # Makefile.am -- Backtrace Makefile.
2 # Copyright (C) 2012-2018 Free Software Foundation, Inc.
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
8 #     (1) Redistributions of source code must retain the above copyright
9 #     notice, this list of conditions and the following disclaimer.
11 #     (2) Redistributions in binary form must reproduce the above copyright
12 #     notice, this list of conditions and the following disclaimer in
13 #     the documentation and/or other materials provided with the
14 #     distribution.
16 #     (3) The name of the author may not be used to
17 #     endorse or promote products derived from this software without
18 #     specific prior written permission.
20 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 # DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24 # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28 # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29 # IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 # POSSIBILITY OF SUCH DAMAGE.
32 ACLOCAL_AMFLAGS = -I .. -I ../config
34 AM_CPPFLAGS = -I $(top_srcdir)/../include -I $(top_srcdir)/../libgcc \
35         -I ../libgcc
37 AM_CFLAGS = $(EXTRA_FLAGS) $(WARN_FLAGS) $(PIC_FLAG)
39 noinst_LTLIBRARIES = libbacktrace.la
41 libbacktrace_la_SOURCES = \
42         backtrace.h \
43         atomic.c \
44         dwarf.c \
45         fileline.c \
46         internal.h \
47         posix.c \
48         print.c \
49         sort.c \
50         state.c
52 BACKTRACE_FILES = \
53         backtrace.c \
54         simple.c \
55         nounwind.c
57 FORMAT_FILES = \
58         elf.c \
59         pecoff.c \
60         unknown.c \
61         xcoff.c
63 VIEW_FILES = \
64         read.c \
65         mmapio.c
67 ALLOC_FILES = \
68         alloc.c \
69         mmap.c
71 EXTRA_libbacktrace_la_SOURCES = \
72         $(BACKTRACE_FILES) \
73         $(FORMAT_FILES) \
74         $(VIEW_FILES) \
75         $(ALLOC_FILES)
77 libbacktrace_la_LIBADD = \
78         $(BACKTRACE_FILE) \
79         $(FORMAT_FILE) \
80         $(VIEW_FILE) \
81         $(ALLOC_FILE)
83 libbacktrace_la_DEPENDENCIES = $(libbacktrace_la_LIBADD)
85 # Testsuite.
87 check_PROGRAMS =
89 TESTS = $(check_PROGRAMS)
91 if NATIVE
92 unittest_SOURCES = unittest.c testlib.c
93 unittest_LDADD = libbacktrace.la
95 check_PROGRAMS += unittest
97 btest_SOURCES = btest.c testlib.c
98 btest_CFLAGS = $(AM_CFLAGS) -g -O
99 btest_LDADD = libbacktrace.la
101 check_PROGRAMS += btest
103 stest_SOURCES = stest.c
104 stest_LDADD = libbacktrace.la
106 check_PROGRAMS += stest
108 ztest_SOURCES = ztest.c testlib.c
109 ztest_CFLAGS = -DSRCDIR=\"$(srcdir)\"
110 ztest_LDADD = libbacktrace.la
112 if HAVE_ZLIB
113 ztest_LDADD += -lz
114 endif
115 ztest_LDADD += $(CLOCK_GETTIME_LINK)
117 check_PROGRAMS += ztest
119 edtest_SOURCES = edtest.c edtest2_build.c testlib.c
120 edtest_LDADD = libbacktrace.la
122 check_PROGRAMS += edtest
124 edtest2_build.c: gen_edtest2_build; @true
125 gen_edtest2_build: $(srcdir)/edtest2.c
126         cat $(srcdir)/edtest2.c > tmp-edtest2_build.c
127         $(SHELL) $(srcdir)/../move-if-change tmp-edtest2_build.c edtest2_build.c
128         echo timestamp > $@
130 if HAVE_PTHREAD
132 check_PROGRAMS += ttest
134 ttest_SOURCES = ttest.c testlib.c
135 ttest_CFLAGS = $(AM_CFLAGS) -pthread
136 ttest_LDADD = libbacktrace.la
138 endif HAVE_PTHREAD
140 if HAVE_OBJCOPY_DEBUGLINK
142 TESTS += dtest
144 dtest: btest
145         $(OBJCOPY) --only-keep-debug btest btest.debug
146         $(OBJCOPY) --strip-debug --add-gnu-debuglink=btest.debug btest dtest
148 endif HAVE_OBJCOPY_DEBUGLINK
150 if HAVE_COMPRESSED_DEBUG
152 ctestg_SOURCES = btest.c testlib.c
153 ctestg_CFLAGS = $(AM_CFLAGS) -g
154 ctestg_LDFLAGS = -Wl,--compress-debug-sections=zlib-gnu
155 ctestg_LDADD = libbacktrace.la
157 ctesta_SOURCES = btest.c testlib.c
158 ctesta_CFLAGS = $(AM_CFLAGS) -g
159 ctesta_LDFLAGS = -Wl,--compress-debug-sections=zlib-gabi
160 ctesta_LDADD = libbacktrace.la
162 check_PROGRAMS += ctestg ctesta
164 endif
166 endif NATIVE
168 # We can't use automake's automatic dependency tracking, because it
169 # breaks when using bootstrap-lean.  Automatic dependency tracking
170 # with GCC bootstrap will cause some of the objects to depend on
171 # header files in prev-gcc/include, e.g., stddef.h and stdarg.h.  When
172 # using bootstrap-lean, prev-gcc is removed after each stage.  When
173 # running "make install", those header files will be gone, causing the
174 # library to be rebuilt at install time.  That may not succeed.
176 # These manual dependencies do not include dependencies on unwind.h,
177 # even though that is part of GCC, because where to find it depends on
178 # whether we are being built as a host library or a target library.
180 INCDIR = $(top_srcdir)/../include
181 alloc.lo: config.h backtrace.h internal.h
182 backtrace.lo: config.h backtrace.h internal.h
183 btest.lo: (INCDIR)/filenames.h backtrace.h backtrace-supported.h
184 dwarf.lo: config.h $(INCDIR)/dwarf2.h $(INCDIR)/dwarf2.def \
185         $(INCDIR)/filenames.h backtrace.h internal.h
186 elf.lo: config.h backtrace.h internal.h
187 fileline.lo: config.h backtrace.h internal.h
188 mmap.lo: config.h backtrace.h internal.h
189 mmapio.lo: config.h backtrace.h internal.h
190 nounwind.lo: config.h internal.h
191 pecoff.lo: config.h backtrace.h internal.h
192 posix.lo: config.h backtrace.h internal.h
193 print.lo: config.h backtrace.h internal.h
194 read.lo: config.h backtrace.h internal.h
195 simple.lo: config.h backtrace.h internal.h
196 sort.lo: config.h backtrace.h internal.h
197 stest.lo: config.h backtrace.h internal.h
198 state.lo: config.h backtrace.h backtrace-supported.h internal.h
199 unknown.lo: config.h backtrace.h internal.h
200 xcoff.lo: config.h backtrace.h internal.h
202 include $(top_srcdir)/../multilib.am