]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgcc/Makefile.in
Use -fbuilding-libgcc for more target macros used in libgcc.
[thirdparty/gcc.git] / libgcc / Makefile.in
CommitLineData
fa958513
DJ
1# Makefile.in
2
ac1dca3c 3# Copyright (C) 2005-2014 Free Software Foundation, Inc.
fa958513
DJ
4#
5# This file is part of GCC.
6#
7# GCC is free software; you can redistribute it and/or modify it under the
8# terms of the GNU Library General Public License as published by the Free
748086b7 9# Software Foundation; either version 3 of the License, or (at your option)
fa958513
DJ
10# any later version.
11#
12# GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14# FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15# more details.
16#
17# You should have received a copy of the GNU General Public License along
748086b7
JJ
18# with GCC; see the file COPYING3. If not see
19# <http://www.gnu.org/licenses/>.
fa958513
DJ
20#
21
22libgcc_topdir = @libgcc_topdir@
14e8fc8b
PB
23host_subdir = @host_subdir@
24
14e8fc8b 25gcc_objdir = $(MULTIBUILDTOP)../../$(host_subdir)/gcc
fa958513
DJ
26
27srcdir = @srcdir@
28
29prefix = @prefix@
30
31exec_prefix = @exec_prefix@
32libdir = @libdir@
89deeaff 33shlib_slibdir = @slibdir@
fa958513
DJ
34
35SHELL = @SHELL@
36
ca24c5ad 37cpu_type = @cpu_type@
fa958513 38enable_shared = @enable_shared@
569dc494
RO
39double_type_size = @double_type_size@
40long_double_type_size = @long_double_type_size@
fa958513 41decimal_float = @decimal_float@
2077db1b 42enable_vtable_verify = @enable_vtable_verify@
79b87c74 43enable_decimal_float = @enable_decimal_float@
8d2a9e0e 44fixed_point = @fixed_point@
fa958513
DJ
45
46host_noncanonical = @host_noncanonical@
58c741a6 47target_noncanonical = @target_noncanonical@
fa958513
DJ
48
49# List of extra object files that should be compiled for this target machine.
50# The rules for compiling them should be in the t-* file for the machine.
51EXTRA_PARTS = @extra_parts@
52
5f73c6cc
RO
53extra-parts = libgcc-extra-parts
54
fa958513
DJ
55# Multilib support variables.
56MULTISRCTOP =
57MULTIBUILDTOP =
58MULTIDIRS =
59MULTISUBDIR =
60MULTIDO = true
61MULTICLEAN = true
62
63INSTALL = @INSTALL@
64INSTALL_PROGRAM = @INSTALL_PROGRAM@
65INSTALL_DATA = @INSTALL_DATA@
66mkinstalldirs = $(SHELL) $(libgcc_topdir)/mkinstalldirs
5f73c6cc 67INSTALL_PARTS = $(EXTRA_PARTS)
fa958513
DJ
68
69objext = .o
70
71AR = @AR@
72AR_FLAGS = rc
73
74CC = @CC@
75CFLAGS = @CFLAGS@
76RANLIB = @RANLIB@
fa958513 77LN_S = @LN_S@
fa958513
DJ
78
79PWD_COMMAND = $${PWDCMD-pwd}
80
81# Flags to pass to a recursive make.
82FLAGS_TO_PASS = \
83 "AR=$(AR)" \
84 "AR_FLAGS=$(AR_FLAGS)" \
85 "CC=$(CC)" \
86 "CFLAGS=$(CFLAGS)" \
87 "DESTDIR=$(DESTDIR)" \
88 "EXTRA_OFILES=$(EXTRA_OFILES)" \
89 "HDEFINES=$(HDEFINES)" \
90 "INSTALL=$(INSTALL)" \
91 "INSTALL_DATA=$(INSTALL_DATA)" \
92 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
93 "LDFLAGS=$(LDFLAGS)" \
94 "LOADLIBES=$(LOADLIBES)" \
95 "RANLIB=$(RANLIB)" \
96 "SHELL=$(SHELL)" \
97 "prefix=$(prefix)" \
98 "exec_prefix=$(exec_prefix)" \
99 "libdir=$(libdir)" \
100 "libsubdir=$(libsubdir)" \
101 "tooldir=$(tooldir)"
102
103# Dependencies for "all" are set later in the file.
104all: all-multi
105 # Now that we have built all the objects, we need to copy
106 # them back to the GCC directory. Too many things (other
107 # in-tree libraries, and DejaGNU) know about the layout
108 # of the build tree, for now.
edbf8b16 109 $(MAKE) install-leaf DESTDIR=$(gcc_objdir) \
fa958513
DJ
110 slibdir= libsubdir= MULTIOSDIR=$(MULTIDIR)
111
112.PHONY: all-multi
113all-multi:
114 # If this is the top-level multilib, build all the other
115 # multilibs.
116 @: $(MAKE) ; exec $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
117
118.PHONY: check installcheck
119check:
120installcheck:
121
122.PHONY: all clean
123
124clean:
9d2cdf25
CJW
125 -rm -f libgcc_tm.h libgcc.map
126 -rm -f libgcc_tm.stamp stmp-ldirs
fa958513
DJ
127 -rm -f *$(objext)
128 -rm -f *.dep
129 -rm -f *.a
130 -rm -f libunwind$(SHLIB_EXT)
131 -rm -f libgcc_s*
132 @$(MULTICLEAN) multi-clean DO=clean
133distclean: clean
134 @$(MULTICLEAN) multi-clean DO=distclean
9d2cdf25
CJW
135 -rm -f auto-target.h
136 -rm -f stamp-h
fa958513
DJ
137 -rm -f *~ Makefile config.cache config.status multilib.out
138 -rm -f config.log
139maintainer-clean realclean: distclean
140
141Makefile: $(srcdir)/Makefile.in config.status
142 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
143
144# Depending on Makefile makes sure that config.status has been re-run
145# if needed. This prevents problems with parallel builds.
aca06c90 146auto-target.h: stamp-h ; @true
fa958513 147stamp-h: $(srcdir)/config.in config.status Makefile
aca06c90 148 CONFIG_FILES= CONFIG_HEADERS=auto-target.h:$(srcdir)/config.in $(SHELL) ./config.status
fa958513 149
ff473280 150config.status: $(srcdir)/configure $(srcdir)/config.host
fa958513
DJ
151 $(SHELL) ./config.status --recheck
152
6efbd53f
RW
153AUTOCONF = autoconf
154configure_deps = \
155 $(srcdir)/../config/enable.m4 \
156 $(srcdir)/../config/tls.m4 \
157 $(srcdir)/../config/acx.m4 \
158 $(srcdir)/../config/no-executables.m4 \
159 $(srcdir)/../config/override.m4 \
3c39bca6 160 $(srcdir)/../config/dfp.m4 \
6efbd53f
RW
161
162$(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac $(configure_deps)
163 cd $(srcdir) && $(AUTOCONF)
164
fa958513
DJ
165include $(gcc_objdir)/libgcc.mvars
166
167# Flags to pass to recursive makes.
168
169AR_FOR_TARGET = $(AR)
170AR_FLAGS_FOR_TARGET =
171AR_CREATE_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) rc
172AR_EXTRACT_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) x
173AWK = @AWK@
174GCC_FOR_TARGET = $(CC)
175LIPO = @LIPO@
176LIPO_FOR_TARGET = $(LIPO)
177MACHMODE_H = machmode.h mode-classes.def insn-modes.h
178NM = @NM@
179NM_FOR_TARGET = $(NM)
180RANLIB_FOR_TARGET = $(RANLIB)
181STRIP = @STRIP@
182STRIP_FOR_TARGET = $(STRIP)
183
184# Directory in which the compiler finds libraries etc.
185libsubdir = $(libdir)/gcc/$(host_noncanonical)/$(version)
186# Used to install the shared libgcc.
187slibdir = @slibdir@
58c741a6
DK
188# Maybe used for DLLs on Windows targets.
189toolexecdir = @toolexecdir@
190toolexeclibdir = @toolexeclibdir@
fa958513
DJ
191
192export AR_FOR_TARGET
193export AR_CREATE_FOR_TARGET
194export AR_FLAGS_FOR_TARGET
195export AR_EXTRACT_FOR_TARGET
196export AWK
197export DESTDIR
198export GCC_FOR_TARGET
199export INCLUDES
200export INSTALL_DATA
201export LIB1ASMSRC
202export LIBGCC2_CFLAGS
203export LIPO_FOR_TARGET
204export MACHMODE_H
205export NM_FOR_TARGET
206export STRIP_FOR_TARGET
207export RANLIB_FOR_TARGET
208export libsubdir
209export slibdir
58c741a6
DK
210export toolexecdir
211export toolexeclibdir
fa958513 212
cd25dea0 213version := $(shell cat $(srcdir)/../gcc/BASE-VER)
79e6eaeb 214
79b87c74 215ifeq ($(decimal_float),yes)
200359e8
L
216ifeq ($(enable_decimal_float),bid)
217DECNUMINC = -I$(srcdir)/config/libbid -DENABLE_DECIMAL_BID_FORMAT
218else
79b87c74 219DECNUMINC = -I$(srcdir)/../libdecnumber/$(enable_decimal_float) \
bc6d4c3f 220 -I$(srcdir)/../libdecnumber
200359e8 221endif
79b87c74
MM
222else
223DECNUMINC =
224endif
fa958513 225
f9989b51
RO
226# Options to use when compiling libgcc2.a.
227#
228LIBGCC2_DEBUG_CFLAGS = -g
229LIBGCC2_CFLAGS = -O2 $(LIBGCC2_INCLUDES) $(GCC_CFLAGS) $(HOST_LIBGCC2_CFLAGS) \
5d1c8e77 230 $(LIBGCC2_DEBUG_CFLAGS) -DIN_LIBGCC2 \
f9989b51
RO
231 -fbuilding-libgcc -fno-stack-protector \
232 $(INHIBIT_LIBC_CFLAGS)
233
234# Additional options to use when compiling libgcc2.a.
235# Some targets override this to -isystem include
236LIBGCC2_INCLUDES =
237
238# Additional target-dependent options for compiling libgcc2.a.
239HOST_LIBGCC2_CFLAGS =
240
241PICFLAG = @PICFLAG@
242
243# Defined in libgcc2.c, included only in the static library.
244LIB2FUNCS_ST = _eprintf __gcc_bcmp
245
246# List of functions not to build from libgcc2.c.
247LIB2FUNCS_EXCLUDE =
248
249# These might cause a divide overflow trap and so are compiled with
250# unwinder info.
251LIB2_DIVMOD_FUNCS = _divdi3 _moddi3 _udivdi3 _umoddi3 _udiv_w_sdiv _udivmoddi4
252
253# List of extra C and assembler files to add to static and shared libgcc2.
254# Assembler files should have names ending in `.S'.
255LIB2ADD =
256
257# List of extra C and assembler files to add to static libgcc2.
258# Assembler files should have names ending in `.S'.
259LIB2ADD_ST =
260
fa958513
DJ
261# Specify the directories to be searched for header files.
262# Both . and srcdir are used, in that order,
263# so that *config.h will be found in the compilation
264# subdirectory rather than in the source directory.
265# -I$(@D) and -I$(srcdir)/$(@D) cause the subdirectory of the file
266# currently being compiled, in both source trees, to be examined as well.
267INCLUDES = -I. -I$(@D) -I$(gcc_objdir) \
268 -I$(srcdir) -I$(srcdir)/$(@D) -I$(srcdir)/../gcc \
269 -I$(srcdir)/../include $(DECNUMINC)
270
9891ec5f
DJ
271# Forcibly remove any profiling-related flags. There is no point
272# in supporting profiled bootstrap in this library.
273override CFLAGS := $(filter-out -fprofile-generate -fprofile-use,$(CFLAGS))
274
fa958513
DJ
275# CFLAGS first is not perfect; normally setting CFLAGS should override any
276# options in LIBGCC2_CFLAGS. But LIBGCC2_CFLAGS may contain -g0, and CFLAGS
277# will usually contain -g, so for the moment CFLAGS goes first. We must
278# include CFLAGS - that's where multilib options live.
6f461e76 279INTERNAL_CFLAGS = $(CFLAGS) $(LIBGCC2_CFLAGS) $(HOST_LIBGCC2_CFLAGS) \
368fabd5 280 $(INCLUDES) @set_have_cc_tls@ @set_use_emutls@
fa958513 281
5f73c6cc
RO
282# Options to use when compiling crtbegin/end.
283CRTSTUFF_CFLAGS = -O2 $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
284 -finhibit-size-directive -fno-inline -fno-exceptions \
285 -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize \
53d68b9f 286 -fbuilding-libgcc -fno-stack-protector \
5f73c6cc
RO
287 $(INHIBIT_LIBC_CFLAGS)
288
289# Extra flags to use when compiling crt{begin,end}.o.
290CRTSTUFF_T_CFLAGS =
291
fa958513
DJ
292MULTIDIR := $(shell $(CC) $(CFLAGS) -print-multi-directory)
293MULTIOSDIR := $(shell $(CC) $(CFLAGS) -print-multi-os-directory)
294
295MULTIOSSUBDIR := $(shell if test $(MULTIOSDIR) != .; then echo /$(MULTIOSDIR); fi)
296inst_libdir = $(libsubdir)$(MULTISUBDIR)
297inst_slibdir = $(slibdir)$(MULTIOSSUBDIR)
298
299gcc_compile_bare = $(CC) $(INTERNAL_CFLAGS)
300compile_deps = -MT $@ -MD -MP -MF $(basename $@).dep
301gcc_compile = $(gcc_compile_bare) -o $@ $(compile_deps)
302gcc_s_compile = $(gcc_compile) -DSHARED
303
304objects = $(filter %$(objext),$^)
305
306# Collect any host-specific information from Makefile fragments.
cdbf4541
BS
307
308LIBGCC_VER_GNU_PREFIX = __
247eb06f 309LIBGCC_VER_FIXEDPOINT_GNU_PREFIX = __
cdbf4541
BS
310LIBGCC_VER_SYMBOLS_PREFIX =
311
569dc494
RO
312FPBIT_FUNCS = _pack_sf _unpack_sf _addsub_sf _mul_sf _div_sf \
313 _fpcmp_parts_sf _compare_sf _eq_sf _ne_sf _gt_sf _ge_sf \
314 _lt_sf _le_sf _unord_sf _si_to_sf _sf_to_si _negate_sf _make_sf \
315 _sf_to_df _sf_to_tf _thenan_sf _sf_to_usi _usi_to_sf
316
317DPBIT_FUNCS = _pack_df _unpack_df _addsub_df _mul_df _div_df \
318 _fpcmp_parts_df _compare_df _eq_df _ne_df _gt_df _ge_df \
319 _lt_df _le_df _unord_df _si_to_df _df_to_si _negate_df _make_df \
320 _df_to_sf _df_to_tf _thenan_df _df_to_usi _usi_to_df
321
322TPBIT_FUNCS = _pack_tf _unpack_tf _addsub_tf _mul_tf _div_tf \
323 _fpcmp_parts_tf _compare_tf _eq_tf _ne_tf _gt_tf _ge_tf \
324 _lt_tf _le_tf _unord_tf _si_to_tf _tf_to_si _negate_tf _make_tf \
325 _tf_to_df _tf_to_sf _thenan_tf _tf_to_usi _usi_to_tf
326
201cdb74
RO
327# Additional sources to handle exceptions; overridden by targets as needed.
328LIB2ADDEH = $(srcdir)/unwind-dw2.c $(srcdir)/unwind-dw2-fde.c \
329 $(srcdir)/unwind-sjlj.c $(srcdir)/unwind-c.c
330LIB2ADDEHSTATIC = $(LIB2ADDEH)
331LIB2ADDEHSHARED = $(LIB2ADDEH)
332
b040f2be
RO
333# nm flags to list global symbols in libgcc object files.
334SHLIB_NM_FLAGS = -pg
335
201cdb74
RO
336# Don't build libunwind by default.
337LIBUNWIND =
338SHLIBUNWIND_LINK =
339SHLIBUNWIND_INSTALL =
340
fa958513
DJ
341tmake_file = @tmake_file@
342include $(srcdir)/empty.mk $(tmake_file)
343
852b75ed
RO
344# Collect target defines and headers from config.host.
345libgcc_tm_defines = @tm_defines@
346libgcc_tm_file = @tm_file@
347libgcc_tm.h: libgcc_tm.stamp; @true
348libgcc_tm.stamp:
349 DEFINES='$(libgcc_tm_defines)' HEADERS='$(libgcc_tm_file)' \
350 $(srcdir)/mkheader.sh > tmp-libgcc_tm.h
351 $(SHELL) $(srcdir)/../move-if-change tmp-libgcc_tm.h libgcc_tm.h
352 echo timestamp > $@
353
fa958513
DJ
354# Only handle shared libraries if both:
355# - the user requested them
356# - we know how to build them
357ifeq ($(SHLIB_LINK),)
358 enable_shared := no
359endif
360
361ifeq ($(enable_shared),yes)
362 iterator = $(srcdir)/empty.mk $(patsubst %,$(srcdir)/shared-object.mk,$(iter-items))
363
364 install-shared = install-shared
365
366 ifneq ($(LIBUNWIND),)
367 install-libunwind = install-libunwind
368 endif
130e00bd 369endif
fa958513
DJ
370
371# For -fvisibility=hidden. We need both a -fvisibility=hidden on
372# the command line, and a #define to prevent libgcc2.h etc from
373# overriding that with #pragmas.
374vis_hide = @vis_hide@
375
376ifneq (,$(vis_hide))
377
378# If we have -fvisibility=hidden, then we need to generate hide
379# lists for object files implemented in assembly.
380ASM_HIDDEN_OP = @asm_hidden_op@
381
382define gen-hide-list
383$(NM) -pg $< | \
c252db20
L
384 $(AWK) 'NF == 3 && $$2 !~ /^[UN]$$/ && $$3 !~ /.*_compat/ \
385 && $$3 !~ /.*@.*/ \
386 { print "\t$(ASM_HIDDEN_OP)", $$3 }' > $@T
fa958513
DJ
387mv -f $@T $@
388endef
389else
390gen-hide-list = echo > $@
391endif
392
130e00bd 393ifneq ($(enable_shared),yes)
fa958513 394iterator = $(srcdir)/empty.mk $(patsubst %,$(srcdir)/static-object.mk,$(iter-items))
fa958513
DJ
395endif
396
10e48e39
RO
397LIB2ADD += enable-execute-stack.c
398
6685dd96
HPN
399# While emutls.c has nothing to do with EH, it is in LIB2ADDEH*
400# instead of LIB2ADD because that's the way to be sure on some targets
401# (e.g. *-*-darwin*) only one copy of it is linked.
201cdb74
RO
402LIB2ADDEH += $(srcdir)/emutls.c
403LIB2ADDEHSTATIC += $(srcdir)/emutls.c
404LIB2ADDEHSHARED += $(srcdir)/emutls.c
405
fa958513
DJ
406# Library members defined in libgcc2.c.
407lib2funcs = _muldi3 _negdi2 _lshrdi3 _ashldi3 _ashrdi3 _cmpdi2 _ucmpdi2 \
10e48e39 408 _clear_cache _trampoline __main _absvsi2 \
fa958513
DJ
409 _absvdi2 _addvsi3 _addvdi3 _subvsi3 _subvdi3 _mulvsi3 _mulvdi3 \
410 _negvsi2 _negvdi2 _ctors _ffssi2 _ffsdi2 _clz _clzsi2 _clzdi2 \
411 _ctzsi2 _ctzdi2 _popcount_tab _popcountsi2 _popcountdi2 \
412 _paritysi2 _paritydi2 _powisf2 _powidf2 _powixf2 _powitf2 \
413 _mulsc3 _muldc3 _mulxc3 _multc3 _divsc3 _divdc3 _divxc3 \
3801c801 414 _divtc3 _bswapsi2 _bswapdi2 _clrsbsi2 _clrsbdi2
fa958513
DJ
415
416# The floating-point conversion routines that involve a single-word integer.
417# XX stands for the integer mode.
418swfloatfuncs = $(patsubst %,_fixuns%XX,sf df xf)
419
420# Likewise double-word routines.
421dwfloatfuncs = $(patsubst %,_fix%XX,sf df xf tf) \
422 $(patsubst %,_fixuns%XX,sf df xf tf) \
423 $(patsubst %,_floatXX%,sf df xf tf) \
424 $(patsubst %,_floatunXX%,sf df xf tf)
425
426ifeq ($(LIB2_SIDITI_CONV_FUNCS),)
427 lib2funcs += $(subst XX,si,$(swfloatfuncs))
428 lib2funcs += $(subst XX,di,$(dwfloatfuncs))
429endif
430
431# These might cause a divide overflow trap and so are compiled with
432# unwinder info.
433LIB2_DIVMOD_FUNCS = _divdi3 _moddi3 _udivdi3 _umoddi3 _udiv_w_sdiv _udivmoddi4
434
435# Remove any objects from lib2funcs and LIB2_DIVMOD_FUNCS that are
436# defined as optimized assembly code in LIB1ASMFUNCS or as C code
437# in LIB2FUNCS_EXCLUDE.
438lib2funcs := $(filter-out $(LIB2FUNCS_EXCLUDE) $(LIB1ASMFUNCS),$(lib2funcs))
439LIB2_DIVMOD_FUNCS := $(filter-out $(LIB2FUNCS_EXCLUDE) $(LIB1ASMFUNCS), \
440 $(LIB2_DIVMOD_FUNCS))
441
442# Build "libgcc1" (assembly) components.
fa958513
DJ
443
444lib1asmfuncs-o = $(patsubst %,%$(objext),$(LIB1ASMFUNCS))
45b86625
RO
445$(lib1asmfuncs-o): %$(objext): $(srcdir)/config/$(LIB1ASMSRC) %.vis
446 $(gcc_compile) -DL$* -xassembler-with-cpp -c $< -include $*.vis
fa958513
DJ
447$(patsubst %,%.vis,$(LIB1ASMFUNCS)): %.vis: %_s$(objext)
448 $(gen-hide-list)
449libgcc-objects += $(lib1asmfuncs-o)
450
451lib1asmfuncs-s-o = $(patsubst %,%_s$(objext),$(LIB1ASMFUNCS))
45b86625
RO
452$(lib1asmfuncs-s-o): %_s$(objext): $(srcdir)/config/$(LIB1ASMSRC)
453 $(gcc_s_compile) -DL$* -xassembler-with-cpp -c $<
130e00bd 454ifeq ($(enable_shared),yes)
fa958513 455
130e00bd 456libgcc-s-objects += $(lib1asmfuncs-s-o)
fa958513
DJ
457
458endif
459
460# Build lib2funcs. For the static library also include LIB2FUNCS_ST.
461lib2funcs-o = $(patsubst %,%$(objext),$(lib2funcs) $(LIB2FUNCS_ST))
f9989b51
RO
462$(lib2funcs-o): %$(objext): $(srcdir)/libgcc2.c
463 $(gcc_compile) -DL$* -c $< $(vis_hide)
fa958513
DJ
464libgcc-objects += $(lib2funcs-o)
465
466ifeq ($(enable_shared),yes)
467lib2funcs-s-o = $(patsubst %,%_s$(objext),$(lib2funcs))
f9989b51
RO
468$(lib2funcs-s-o): %_s$(objext): $(srcdir)/libgcc2.c
469 $(gcc_s_compile) -DL$* -c $<
fa958513
DJ
470libgcc-s-objects += $(lib2funcs-s-o)
471endif
472
473ifneq ($(LIB2_SIDITI_CONV_FUNCS),)
474# Build libgcc2.c for each conversion function, with a specific
475# L<func> definition and LIBGCC2_UNITS_PER_WORD setting. The DImode
476# functions are built with a wordsize of 4; the TImode functions are
477# built with the same labels, but a wordsize of 8.
478
0df8fcc8
UB
479sifuncs := $(filter-out $(LIB2FUNCS_EXCLUDE),$(subst XX,si,$(swfloatfuncs)))
480difuncs := $(filter-out $(LIB2FUNCS_EXCLUDE),$(subst XX,di,$(dwfloatfuncs)))
481tifuncs := $(filter-out $(LIB2FUNCS_EXCLUDE),$(subst XX,ti,$(dwfloatfuncs)))
fa958513
DJ
482
483iter-items := $(sifuncs) $(difuncs) $(tifuncs)
484iter-labels := $(sifuncs) $(difuncs) $(difuncs)
485iter-sizes := $(patsubst %,4,$(sifuncs) $(difuncs)) $(patsubst %,8,$(tifuncs))
486
487include $(srcdir)/empty.mk $(patsubst %,$(srcdir)/siditi-object.mk,$(iter-items))
488
489libgcc-objects += $(patsubst %,%$(objext),$(sifuncs) $(difuncs) $(tifuncs))
490ifeq ($(enable_shared),yes)
491libgcc-s-objects += $(patsubst %,%_s$(objext),$(sifuncs) $(difuncs) $(tifuncs))
492endif
493endif
494
a508e1a8
JB
495ifeq ($(LIB2_DIVMOD_EXCEPTION_FLAGS),)
496# Provide default flags for compiling divmod functions, if they haven't been
497# set already by a target-specific Makefile fragment.
498LIB2_DIVMOD_EXCEPTION_FLAGS := -fexceptions -fnon-call-exceptions
499endif
500
fa958513
DJ
501# Build LIB2_DIVMOD_FUNCS.
502lib2-divmod-o = $(patsubst %,%$(objext),$(LIB2_DIVMOD_FUNCS))
f9989b51
RO
503$(lib2-divmod-o): %$(objext): $(srcdir)/libgcc2.c
504 $(gcc_compile) -DL$* -c $< \
a508e1a8 505 $(LIB2_DIVMOD_EXCEPTION_FLAGS) $(vis_hide)
fa958513
DJ
506libgcc-objects += $(lib2-divmod-o)
507
508ifeq ($(enable_shared),yes)
509lib2-divmod-s-o = $(patsubst %,%_s$(objext),$(LIB2_DIVMOD_FUNCS))
f9989b51
RO
510$(lib2-divmod-s-o): %_s$(objext): $(srcdir)/libgcc2.c
511 $(gcc_s_compile) -DL$* -c $< \
a508e1a8 512 $(LIB2_DIVMOD_EXCEPTION_FLAGS)
fa958513
DJ
513libgcc-s-objects += $(lib2-divmod-s-o)
514endif
515
fa958513
DJ
516ifeq ($(TPBIT),)
517# _sf_to_tf and _df_to_tf require tp-bit.c being compiled in.
518FPBIT_FUNCS := $(filter-out _sf_to_tf,$(FPBIT_FUNCS))
519DPBIT_FUNCS := $(filter-out _df_to_tf,$(DPBIT_FUNCS))
520endif
521
b588ae30
GJL
522FPBIT_FUNCS := $(filter-out $(LIB2FUNCS_EXCLUDE),$(FPBIT_FUNCS))
523DPBIT_FUNCS := $(filter-out $(LIB2FUNCS_EXCLUDE),$(DPBIT_FUNCS))
524TPBIT_FUNCS := $(filter-out $(LIB2FUNCS_EXCLUDE),$(TPBIT_FUNCS))
525
569dc494
RO
526fpbit-src := $(srcdir)/fp-bit.c
527
fa958513
DJ
528# Build FPBIT.
529ifneq ($(FPBIT),)
530fpbit-o = $(patsubst %,%$(objext),$(FPBIT_FUNCS))
569dc494
RO
531$(fpbit-o): %$(objext): $(fpbit-src)
532 $(gcc_compile) -DFINE_GRAINED_LIBRARIES -DL$* -DFLOAT $(FPBIT_CFLAGS) -c $< $(vis_hide)
fa958513
DJ
533libgcc-objects += $(fpbit-o)
534
535ifeq ($(enable_shared),yes)
536fpbit-s-o = $(patsubst %,%_s$(objext),$(FPBIT_FUNCS))
569dc494
RO
537$(fpbit-s-o): %_s$(objext): $(fpbit-src)
538 $(gcc_s_compile) -DFINE_GRAINED_LIBRARIES -DL$* -DFLOAT $(FPBIT_CFLAGS) -c $<
fa958513
DJ
539libgcc-s-objects += $(fpbit-s-o)
540endif
541endif
542
543# Build DPBIT.
544ifneq ($(DPBIT),)
545dpbit-o = $(patsubst %,%$(objext),$(DPBIT_FUNCS))
569dc494
RO
546$(dpbit-o): %$(objext): $(fpbit-src)
547 $(gcc_compile) -DFINE_GRAINED_LIBRARIES -DL$* $(DPBIT_CFLAGS) -c $< $(vis_hide)
fa958513
DJ
548libgcc-objects += $(dpbit-o)
549
550ifeq ($(enable_shared),yes)
551dpbit-s-o = $(patsubst %,%_s$(objext),$(DPBIT_FUNCS))
569dc494
RO
552$(dpbit-s-o): %_s$(objext): $(fpbit-src)
553 $(gcc_s_compile) -DFINE_GRAINED_LIBRARIES -DL$* $(DPBIT_CFLAGS) -c $<
fa958513
DJ
554libgcc-s-objects += $(dpbit-s-o)
555endif
556endif
557
558# Build TPBIT.
559ifneq ($(TPBIT),)
560tpbit-o = $(patsubst %,%$(objext),$(TPBIT_FUNCS))
569dc494
RO
561$(tpbit-o): %$(objext): $(fpbit-src)
562 $(gcc_compile) -DFINE_GRAINED_LIBRARIES -DL$* -DTFLOAT $(TPBIT_CFLAGS) -c $< $(vis_hide)
fa958513
DJ
563libgcc-objects += $(tpbit-o)
564
565ifeq ($(enable_shared),yes)
566tpbit-s-o = $(patsubst %,%_s$(objext),$(TPBIT_FUNCS))
569dc494
RO
567$(tpbit-s-o): %_s$(objext): $(fpbit-src)
568 $(gcc_s_compile) -DFINE_GRAINED_LIBRARIES -DL$* -DTFLOAT $(TPBIT_CFLAGS) -c $<
fa958513
DJ
569libgcc-s-objects += $(tpbit-s-o)
570endif
571endif
572
573# Build decimal floating point support.
574ifeq ($(decimal_float),yes)
575
576# If $DFP_ENABLE is set, then we want all data type sizes.
577ifneq ($(DFP_ENABLE),)
578D32PBIT = 1
579D64PBIT = 1
580D128PBIT = 1
581endif
582
200359e8 583dfp-filenames =
fa958513 584ifneq ($(D32PBIT)$(D64PBIT)$(D128PBIT),)
200359e8 585ifeq ($(enable_decimal_float),bid)
b2a00c89
L
586dfp-filenames += bid_decimal_globals bid_decimal_data \
587 bid_binarydecimal bid_convert_data \
588 _isinfd32 _isinfd64 _isinfd128 bid64_noncomp \
589 bid128_noncomp bid128_fma bid_round bid_from_int \
200359e8
L
590 bid64_add bid128_add bid64_div bid128_div \
591 bid64_mul bid128_mul bid64_compare bid128_compare \
592 bid128 bid32_to_bid64 bid32_to_bid128 bid64_to_bid128 \
593 bid64_to_int32 bid64_to_int64 \
594 bid64_to_uint32 bid64_to_uint64 \
595 bid128_to_int32 bid128_to_int64 \
596 bid128_to_uint32 bid128_to_uint64
597else
2533577f 598dfp-filenames += decContext decNumber decExcept decRound decLibrary decDouble decPacked decQuad decSingle
200359e8 599endif
fa958513
DJ
600endif
601
200359e8
L
602dfp-objects = $(patsubst %,%$(objext),$(dfp-filenames))
603ifeq ($(enable_decimal_float),bid)
604$(dfp-objects): %$(objext): $(srcdir)/config/libbid/%.c
605else
606$(dfp-objects): %$(objext): $(srcdir)/../libdecnumber/%.c
607endif
79b87c74 608 $(gcc_compile) -c $<
200359e8 609libgcc-objects += $(dfp-objects)
79b87c74
MM
610
611decbits-filenames =
200359e8 612ifneq ($(enable_decimal_float),bid)
fa958513 613ifneq ($(D32PBIT),)
79b87c74 614decbits-filenames += decimal32
fa958513
DJ
615endif
616
617ifneq ($(D64PBIT),)
79b87c74 618decbits-filenames += decimal64
fa958513
DJ
619endif
620
621ifneq ($(D128PBIT),)
79b87c74 622decbits-filenames += decimal128
fa958513 623endif
79b87c74
MM
624endif
625
626decbits-objects = $(patsubst %,%$(objext),$(decbits-filenames))
200359e8
L
627ifeq ($(enable_decimal_float),bid)
628$(decbits-objects): %$(objext): $(srcdir)/config/libbid/%.c
629else
79b87c74 630$(decbits-objects): %$(objext): $(srcdir)/../libdecnumber/$(enable_decimal_float)/%.c
200359e8 631endif
fa958513 632 $(gcc_compile) -c $<
79b87c74 633libgcc-objects += $(decbits-objects)
fa958513
DJ
634
635# Next build individual support functions.
2d8d5935
RO
636D32PBIT_FUNCS = _addsub_sd _div_sd _mul_sd _plus_sd _minus_sd \
637 _eq_sd _ne_sd _lt_sd _gt_sd _le_sd _ge_sd \
638 _sd_to_si _sd_to_di _sd_to_usi _sd_to_udi \
639 _si_to_sd _di_to_sd _usi_to_sd _udi_to_sd \
640 _sd_to_sf _sd_to_df _sd_to_xf _sd_to_tf \
641 _sf_to_sd _df_to_sd _xf_to_sd _tf_to_sd \
642 _sd_to_dd _sd_to_td _unord_sd _conv_sd
643
644D64PBIT_FUNCS = _addsub_dd _div_dd _mul_dd _plus_dd _minus_dd \
645 _eq_dd _ne_dd _lt_dd _gt_dd _le_dd _ge_dd \
646 _dd_to_si _dd_to_di _dd_to_usi _dd_to_udi \
647 _si_to_dd _di_to_dd _usi_to_dd _udi_to_dd \
648 _dd_to_sf _dd_to_df _dd_to_xf _dd_to_tf \
649 _sf_to_dd _df_to_dd _xf_to_dd _tf_to_dd \
650 _dd_to_sd _dd_to_td _unord_dd _conv_dd
651
652D128PBIT_FUNCS = _addsub_td _div_td _mul_td _plus_td _minus_td \
653 _eq_td _ne_td _lt_td _gt_td _le_td _ge_td \
654 _td_to_si _td_to_di _td_to_usi _td_to_udi \
655 _si_to_td _di_to_td _usi_to_td _udi_to_td \
656 _td_to_sf _td_to_df _td_to_xf _td_to_tf \
657 _sf_to_td _df_to_td _xf_to_td _tf_to_td \
658 _td_to_sd _td_to_dd _unord_td _conv_td
659
200359e8
L
660ifeq ($(enable_decimal_float),bid)
661ifneq ($(D32PBIT),)
662D32PBIT_FUNCS:=$(filter-out _plus_sd _minus_sd _conv_sd, $(D32PBIT_FUNCS))
663endif
664
665ifneq ($(D64PBIT),)
666D64PBIT_FUNCS:=$(filter-out _plus_dd _minus_dd _conv_dd, $(D64PBIT_FUNCS))
667endif
668
669ifneq ($(D128PBIT),)
670D128PBIT_FUNCS:=$(filter-out _plus_td _minus_td _conv_td, $(D128PBIT_FUNCS))
671endif
672endif
673
fa958513
DJ
674ifneq ($(D32PBIT),)
675d32pbit-o = $(patsubst %,%$(objext),$(D32PBIT_FUNCS))
200359e8
L
676ifeq ($(enable_decimal_float),bid)
677$(d32pbit-o): %$(objext): $(srcdir)/config/libbid/%.c
678else
2d8d5935 679$(d32pbit-o): %$(objext): $(srcdir)/dfp-bit.c
200359e8 680endif
fa958513
DJ
681 $(gcc_compile) -DFINE_GRAINED_LIBRARIES -DL$* -DWIDTH=32 -c $<
682libgcc-objects += $(d32pbit-o)
683endif
684
685ifneq ($(D64PBIT),)
686d64pbit-o = $(patsubst %,%$(objext),$(D64PBIT_FUNCS))
200359e8
L
687ifeq ($(enable_decimal_float),bid)
688$(d64pbit-o): %$(objext): $(srcdir)/config/libbid/%.c
689else
2d8d5935 690$(d64pbit-o): %$(objext): $(srcdir)/dfp-bit.c
200359e8 691endif
fa958513
DJ
692 $(gcc_compile) -DFINE_GRAINED_LIBRARIES -DL$* -DWIDTH=64 -c $<
693libgcc-objects += $(d64pbit-o)
694endif
695
696ifneq ($(D128PBIT),)
697d128pbit-o = $(patsubst %,%$(objext),$(D128PBIT_FUNCS))
200359e8
L
698ifeq ($(enable_decimal_float),bid)
699$(d128pbit-o): %$(objext): $(srcdir)/config/libbid/%.c
700else
2d8d5935 701$(d128pbit-o): %$(objext): $(srcdir)/dfp-bit.c
200359e8 702endif
fa958513
DJ
703 $(gcc_compile) -DFINE_GRAINED_LIBRARIES -DL$* -DWIDTH=128 -c $<
704libgcc-objects += $(d128pbit-o)
705endif
706
707endif
708
c6412d86 709ifeq ($(SYNC),yes)
f92518d7
RS
710libgcc-sync-size-funcs := $(foreach op, add sub or and xor nand, \
711 sync_fetch_and_$(op) \
712 sync_$(op)_and_fetch) \
713 sync_bool_compare_and_swap \
714 sync_val_compare_and_swap \
715 sync_lock_test_and_set
716
717libgcc-sync-size-funcs := $(foreach prefix, $(libgcc-sync-size-funcs), \
718 $(foreach suffix, 1 2 4 8 16, \
719 $(prefix)_$(suffix)))
720
721libgcc-sync-size-funcs-o = $(patsubst %,%$(objext),$(libgcc-sync-size-funcs))
c6412d86
RO
722$(libgcc-sync-size-funcs-o): %$(objext): $(srcdir)/sync.c
723 $(gcc_compile) $(SYNC_CFLAGS) \
f92518d7
RS
724 -DFN=`echo "$*" | sed 's/_[^_]*$$//'` \
725 -DSIZE=`echo "$*" | sed 's/.*_//'` \
c6412d86 726 -c $< $(vis_hide)
f92518d7
RS
727libgcc-objects += $(libgcc-sync-size-funcs-o)
728
729libgcc-sync-funcs := sync_synchronize
730
731libgcc-sync-funcs-o = $(patsubst %,%$(objext),$(libgcc-sync-funcs))
c6412d86
RO
732$(libgcc-sync-funcs-o): %$(objext): $(srcdir)/sync.c
733 $(gcc_compile) $(SYNC_CFLAGS) \
f92518d7 734 -DL$* \
c6412d86 735 -c $< $(vis_hide)
f92518d7
RS
736libgcc-objects += $(libgcc-sync-funcs-o)
737
738ifeq ($(enable_shared),yes)
739libgcc-sync-size-funcs-s-o = $(patsubst %,%_s$(objext), \
740 $(libgcc-sync-size-funcs))
c6412d86
RO
741$(libgcc-sync-size-funcs-s-o): %_s$(objext): $(srcdir)/sync.c
742 $(gcc_s_compile) $(SYNC_CFLAGS) \
f92518d7
RS
743 -DFN=`echo "$*" | sed 's/_[^_]*$$//'` \
744 -DSIZE=`echo "$*" | sed 's/.*_//'` \
c6412d86 745 -c $<
f92518d7
RS
746libgcc-s-objects += $(libgcc-sync-size-funcs-s-o)
747
748libgcc-sync-funcs-s-o = $(patsubst %,%_s$(objext),$(libgcc-sync-funcs))
c6412d86
RO
749$(libgcc-sync-funcs-s-o): %_s$(objext): $(srcdir)/sync.c
750 $(gcc_s_compile) $(SYNC_CFLAGS) \
f92518d7 751 -DL$* \
c6412d86 752 -c $<
f92518d7
RS
753libgcc-s-objects += $(libgcc-sync-funcs-s-o)
754endif
755endif
756
8d2a9e0e
CF
757# Build fixed-point support.
758ifeq ($(fixed_point),yes)
759
760# Generate permutations of function name and mode
761fixed-labels := $(shell $(SHELL) $(srcdir)/gen-fixed.sh arith labels)
762fixed-funcs := $(shell $(SHELL) $(srcdir)/gen-fixed.sh arith funcs)
763fixed-modes := $(shell $(SHELL) $(srcdir)/gen-fixed.sh arith modes)
764
765# Generate the rules for each arithmetic function
766iter-items := $(fixed-funcs)
767iter-labels := $(fixed-labels)
768iter-from := $(fixed-modes)
769iter-to := $(fixed-modes)
770include $(srcdir)/empty.mk $(patsubst %,$(srcdir)/fixed-obj.mk,$(iter-items))
771
772# Add arithmetic functions to list of objects to be built
a147b6d2 773libgcc-objects += $(patsubst %,%$(objext),$(filter-out $(LIB2FUNCS_EXCLUDE),$(fixed-funcs)))
8d2a9e0e 774ifeq ($(enable_shared),yes)
a147b6d2 775libgcc-s-objects += $(patsubst %,%_s$(objext),$(filter-out $(LIB2FUNCS_EXCLUDE),$(fixed-funcs)))
8d2a9e0e
CF
776endif
777
778# Convert from or to fractional
779fixed-conv-funcs := $(shell $(SHELL) $(srcdir)/gen-fixed.sh conv funcs)
780fixed-conv-labels := $(shell $(SHELL) $(srcdir)/gen-fixed.sh conv labels)
781fixed-conv-from := $(shell $(SHELL) $(srcdir)/gen-fixed.sh conv from)
782fixed-conv-to := $(shell $(SHELL) $(srcdir)/gen-fixed.sh conv to)
783
784# Generate the make rules for each conversion function
785iter-items := $(fixed-conv-funcs)
786iter-labels := $(fixed-conv-labels)
787iter-from := $(fixed-conv-from)
788iter-to := $(fixed-conv-to)
789include $(srcdir)/empty.mk $(patsubst %,$(srcdir)/fixed-obj.mk,$(iter-items))
790
791# Add conversion functions to list of objects to be built
a147b6d2 792libgcc-objects += $(patsubst %,%$(objext),$(filter-out $(LIB2FUNCS_EXCLUDE),$(fixed-conv-funcs)))
8d2a9e0e 793ifeq ($(enable_shared),yes)
a147b6d2 794libgcc-s-objects += $(patsubst %,%_s$(objext),$(filter-out $(LIB2FUNCS_EXCLUDE),$(fixed-conv-funcs)))
8d2a9e0e
CF
795endif
796
797endif
798
fa958513
DJ
799# Build LIB2ADD and LIB2ADD_ST.
800ifneq ($(filter-out %.c %.S %.asm,$(LIB2ADD) $(LIB2ADD_ST)),)
801$(error Unsupported files in LIB2ADD or LIB2ADD_ST.)
802endif
803
804libgcc-objects += $(addsuffix $(objext),$(basename $(notdir $(LIB2ADD))))
805libgcc-objects += $(addsuffix $(objext),$(basename $(notdir $(LIB2ADD_ST))))
806
807c_flags :=
808iter-items := $(LIB2ADD) $(LIB2ADD_ST)
809include $(iterator)
810
811ifeq ($(enable_shared),yes)
812libgcc-s-objects += $(addsuffix _s$(objext),$(basename $(notdir $(LIB2ADD))))
813endif
814
815# Build LIB2ADDEH, LIB2ADDEHSTATIC, and LIB2ADDEHSHARED. If we don't have
816# libgcc_eh.a, only LIB2ADDEH matters. If we do, only LIB2ADDEHSTATIC and
817# LIB2ADDEHSHARED matter. (Usually all three are identical.)
818
819c_flags := -fexceptions
820
821ifeq ($(enable_shared),yes)
822
823libgcc-eh-objects += $(addsuffix $(objext),$(basename $(notdir $(LIB2ADDEHSTATIC))))
824libgcc-s-objects += $(addsuffix _s$(objext),$(basename $(notdir $(LIB2ADDEHSHARED))))
825
826iter-items := $(sort $(LIB2ADDEHSTATIC) $(LIB2ADDEHSHARED))
827include $(iterator)
828
829else
830# Not shared. LIB2ADDEH are added to libgcc.a.
831
832libgcc-objects += $(addsuffix $(objext),$(basename $(notdir $(LIB2ADDEH))))
833
834iter-items := $(LIB2ADDEH)
835include $(iterator)
836
837endif
838
93aeb62b
SE
839# Build LIBUNWIND. Use -fno-exceptions so that the unwind library does
840# not generate calls to __gcc_personality_v0.
fa958513 841
93aeb62b 842c_flags := -fno-exceptions
fa958513
DJ
843
844libunwind-objects += $(addsuffix $(objext),$(basename $(notdir $(LIBUNWIND))))
845
846ifeq ($(enable_shared),yes)
847libunwind-s-objects += $(addsuffix _s$(objext),$(basename $(notdir $(LIBUNWIND))))
848endif
849
850iter-items := $(LIBUNWIND)
851include $(iterator)
852
853# Build libgcov components.
2c50b2c3 854
b98a872b
NS
855LIBGCOV_MERGE = _gcov_merge_add _gcov_merge_single _gcov_merge_delta \
856 _gcov_merge_ior _gcov_merge_time_profile
857LIBGCOV_PROFILER = _gcov_interval_profiler _gcov_pow2_profiler \
858 _gcov_one_value_profiler _gcov_indirect_call_profiler \
859 _gcov_average_profiler _gcov_ior_profiler \
860 _gcov_indirect_call_profiler_v2 _gcov_time_profiler
861LIBGCOV_INTERFACE = _gcov_flush _gcov_fork _gcov_execl _gcov_execlp \
4303c581
NS
862 _gcov_execle _gcov_execv _gcov_execvp _gcov_execve _gcov_reset
863LIBGCOV_DRIVER = _gcov _gcov_dump
d6d3f033
RX
864
865libgcov-merge-objects = $(patsubst %,%$(objext),$(LIBGCOV_MERGE))
866libgcov-profiler-objects = $(patsubst %,%$(objext),$(LIBGCOV_PROFILER))
867libgcov-interface-objects = $(patsubst %,%$(objext),$(LIBGCOV_INTERFACE))
868libgcov-driver-objects = $(patsubst %,%$(objext),$(LIBGCOV_DRIVER))
869libgcov-objects = $(libgcov-merge-objects) $(libgcov-profiler-objects) \
870 $(libgcov-interface-objects) $(libgcov-driver-objects)
871
40d6b753 872$(libgcov-merge-objects): %$(objext): $(srcdir)/libgcov-merge.c $(srcdir)/libgcov.h
d6d3f033 873 $(gcc_compile) -DL$* -c $(srcdir)/libgcov-merge.c
40d6b753 874$(libgcov-profiler-objects): %$(objext): $(srcdir)/libgcov-profiler.c $(srcdir)/libgcov.h
d6d3f033 875 $(gcc_compile) -DL$* -c $(srcdir)/libgcov-profiler.c
40d6b753 876$(libgcov-interface-objects): %$(objext): $(srcdir)/libgcov-interface.c $(srcdir)/libgcov.h
d6d3f033
RX
877 $(gcc_compile) -DL$* -c $(srcdir)/libgcov-interface.c
878$(libgcov-driver-objects): %$(objext): $(srcdir)/libgcov-driver.c \
40d6b753 879 $(srcdir)/libgcov-driver-system.c $(srcdir)/libgcov.h
d6d3f033 880 $(gcc_compile) -DL$* -c $(srcdir)/libgcov-driver.c
fa958513
DJ
881
882
883# Static libraries.
884libgcc.a: $(libgcc-objects)
885libgcov.a: $(libgcov-objects)
886libunwind.a: $(libunwind-objects)
887libgcc_eh.a: $(libgcc-eh-objects)
888
889libgcc.a libgcov.a libunwind.a libgcc_eh.a:
890 -rm -f $@
891
892 objects="$(objects)"; \
893 if test -z "$$objects"; then \
894 echo 'int __libgcc_eh_dummy;' > eh_dummy.c; \
895 $(gcc_compile_bare) $(vis_hide) -c eh_dummy.c \
896 -o eh_dummy$(objext); \
897 objects=eh_dummy$(objext); \
898 fi; \
899 $(AR_CREATE_FOR_TARGET) $@ $$objects
900
901 $(RANLIB) $@
902
903all: libgcc.a libgcov.a
904
905ifneq ($(LIBUNWIND),)
906all: libunwind.a
cd5c2357 907libgcc_s$(SHLIB_EXT): libunwind$(SHLIB_EXT)
fa958513
DJ
908endif
909
910ifeq ($(enable_shared),yes)
911all: libgcc_eh.a libgcc_s$(SHLIB_EXT)
912ifneq ($(LIBUNWIND),)
913all: libunwind$(SHLIB_EXT)
914endif
915endif
916
917ifeq ($(enable_shared),yes)
918
919# Map-file generation.
920ifneq ($(SHLIB_MKMAP),)
921libgcc.map: $(SHLIB_MKMAP) $(SHLIB_MAPFILES) $(libgcc-s-objects)
922 { $(NM) $(SHLIB_NM_FLAGS) $(libgcc-s-objects); echo %%; \
923 cat $(SHLIB_MAPFILES) \
924 | sed -e '/^[ ]*#/d' \
925 -e 's/^%\(if\|else\|elif\|endif\|define\)/#\1/' \
926 | $(gcc_compile_bare) -E -xassembler-with-cpp -; \
927 } | $(AWK) -f $(SHLIB_MKMAP) $(SHLIB_MKMAP_OPTS) > tmp-$@
928 mv tmp-$@ $@
929libgcc_s$(SHLIB_EXT): libgcc.map
930mapfile = libgcc.map
931endif
932
cdbf4541 933libgcc-std.ver: $(srcdir)/libgcc-std.ver.in
247eb06f
JB
934 sed -e 's/__PFX__/$(LIBGCC_VER_GNU_PREFIX)/g' \
935 -e 's/__FIXPTPFX__/$(LIBGCC_VER_FIXEDPOINT_GNU_PREFIX)/g' < $< > $@
cdbf4541 936
066161a2 937libgcc_s$(SHLIB_EXT): $(libgcc-s-objects) $(extra-parts) libgcc.a
fa958513
DJ
938 # @multilib_flags@ is still needed because this may use
939 # $(GCC_FOR_TARGET) and $(LIBGCC2_CFLAGS) directly.
940 # @multilib_dir@ is not really necessary, but sometimes it has
941 # more uses than just a directory name.
942 $(mkinstalldirs) $(MULTIDIR)
cd5c2357 943 $(subst @multilib_flags@,$(CFLAGS) -B./,$(subst \
fa958513 944 @multilib_dir@,$(MULTIDIR),$(subst \
066161a2 945 @shlib_objs@,$(objects) libgcc.a,$(subst \
fa958513
DJ
946 @shlib_base_name@,libgcc_s,$(subst \
947 @shlib_map_file@,$(mapfile),$(subst \
89deeaff
EK
948 @shlib_slibdir_qual@,$(MULTIOSSUBDIR),$(subst \
949 @shlib_slibdir@,$(shlib_slibdir),$(SHLIB_LINK))))))))
fa958513
DJ
950
951libunwind$(SHLIB_EXT): $(libunwind-s-objects) $(extra-parts)
952 # @multilib_flags@ is still needed because this may use
953 # $(GCC_FOR_TARGET) and $(LIBGCC2_CFLAGS) directly.
954 # @multilib_dir@ is not really necessary, but sometimes it has
955 # more uses than just a directory name.
956 $(mkinstalldirs) $(MULTIDIR)
cd5c2357 957 $(subst @multilib_flags@,$(CFLAGS) -B./,$(subst \
fa958513
DJ
958 @multilib_dir@,$(MULTIDIR),$(subst \
959 @shlib_objs@,$(objects),$(subst \
960 @shlib_base_name@,libunwind,$(subst \
961 @shlib_slibdir_qual@,$(MULTIOSSUBDIR),$(SHLIBUNWIND_LINK))))))
962
963endif
964
965# Build the standard GCC startfiles and endfiles.
966ALL_CRT_CFLAGS = $(CFLAGS) $(CRTSTUFF_CFLAGS) $(INCLUDES)
967crt_compile = $(CC) $(ALL_CRT_CFLAGS) -o $@ $(compile_deps)
968
969ifeq ($(CUSTOM_CRTSTUFF),)
5f73c6cc
RO
970# Compile two additional files that are linked with every program
971# linked using GCC on systems using COFF or ELF, for the sake of C++
972# constructors.
973crtbegin$(objext): $(srcdir)/crtstuff.c
974 $(crt_compile) $(CRTSTUFF_T_CFLAGS) -c $< -DCRT_BEGIN
fa958513 975
5f73c6cc
RO
976crtend$(objext): $(srcdir)/crtstuff.c
977 $(crt_compile) $(CRTSTUFF_T_CFLAGS) -c $< -DCRT_END
fa958513
DJ
978
979# These are versions of crtbegin and crtend for shared libraries.
5f73c6cc
RO
980crtbeginS$(objext): $(srcdir)/crtstuff.c
981 $(crt_compile) $(CRTSTUFF_T_CFLAGS_S) -c $< -DCRT_BEGIN -DCRTSTUFFS_O
fa958513 982
5f73c6cc
RO
983crtendS$(objext): $(srcdir)/crtstuff.c
984 $(crt_compile) $(CRTSTUFF_T_CFLAGS_S) -c $< -DCRT_END -DCRTSTUFFS_O
fa958513
DJ
985
986# This is a version of crtbegin for -static links.
5f73c6cc
RO
987crtbeginT$(objext): $(srcdir)/crtstuff.c
988 $(crt_compile) $(CRTSTUFF_T_CFLAGS) -c $< -DCRT_BEGIN -DCRTSTUFFT_O
2077db1b
CT
989
990ifeq ($(enable_vtable_verify),yes)
991# These are used in vtable verification; see comments in source files for
992# more details.
993vtv_start$(objext): $(srcdir)/vtv_start.c
994 $(crt_compile) $(CRTSTUFF_T_CFLAGS_S) -c $(srcdir)/vtv_start.c
995
996vtv_end$(objext): $(srcdir)/vtv_end.c
997 $(crt_compile) $(CRTSTUFF_T_CFLAGS_S) -c $(srcdir)/vtv_end.c
998
999vtv_start_preinit$(objext): $(srcdir)/vtv_start_preinit.c
1000 $(crt_compile) $(CRTSTUFF_T_CFLAGS_S) -c $(srcdir)/vtv_start_preinit.c
1001
1002vtv_end_preinit$(objext): $(srcdir)/vtv_end_preinit.c
1003 $(crt_compile) $(CRTSTUFF_T_CFLAGS_S) -c $(srcdir)/vtv_end_preinit.c
1004endif
5f73c6cc
RO
1005endif
1006
1007ifeq ($(CUSTOM_CRTIN),)
1008# -x assembler-with-cpp is only needed on case-insensitive filesystem.
1009crti$(objext): $(srcdir)/config/$(cpu_type)/crti.S
1010 $(crt_compile) -c -x assembler-with-cpp $<
1011
1012crtn$(objext): $(srcdir)/config/$(cpu_type)/crtn.S
1013 $(crt_compile) -c -x assembler-with-cpp $<
fa958513
DJ
1014endif
1015
1016# Build extra startfiles in the libgcc directory.
1017.PHONY: libgcc-extra-parts
1018libgcc-extra-parts: $(EXTRA_PARTS)
fa958513
DJ
1019
1020 # Early copyback; see "all" above for the rationale. The
1021 # early copy is necessary so that the gcc -B options find
1022 # the right startup files when linking shared libgcc.
1023 $(mkinstalldirs) $(gcc_objdir)$(MULTISUBDIR)
1024 parts="$(EXTRA_PARTS)"; \
1025 for file in $$parts; do \
1026 rm -f $(gcc_objdir)$(MULTISUBDIR)/$$file; \
1027 $(INSTALL_DATA) $$file $(gcc_objdir)$(MULTISUBDIR)/; \
5b50fc0c
IS
1028 case $$file in \
1029 *.a) \
1030 $(RANLIB) $(gcc_objdir)$(MULTISUBDIR)/$$file ;; \
1031 esac; \
fa958513
DJ
1032 done
1033
fa958513
DJ
1034all: $(extra-parts)
1035
852b75ed
RO
1036$(libgcc-objects) $(libgcc-s-objects) $(libgcc-eh-objects) \
1037 $(libgcov-objects) \
1038 $(libunwind-objects) $(libunwind-s-objects) \
5e490f2a 1039 $(EXTRA_PARTS): libgcc_tm.h
852b75ed 1040
4677d2eb
OH
1041# Copy unwind.h to the place where gcc will look for it at build-time
1042install-unwind_h-forbuild:
1563503d
PB
1043 dest=$(gcc_objdir)/include/tmp$$$$-unwind.h; \
1044 cp unwind.h $$dest; \
1045 chmod a+r $$dest; \
1046 sh $(srcdir)/../move-if-change $$dest $(gcc_objdir)/include/unwind.h
201cdb74 1047
4677d2eb
OH
1048# Copy unwind.h to the place where gcc will look at run-time, once installed
1049#
1050# This is redundant with the internal copy above when using a regular toplevel
1051# "install" target, because gcc's install will copy to the destination as well.
1052#
1053# This is however useful for "install-no-fixincludes" case, when only the gcc
1054# internal headers are copied by gcc's install.
1055install-unwind_h:
1056 $(mkinstalldirs) $(DESTDIR)$(libsubdir)/include
1057 $(INSTALL_DATA) unwind.h $(DESTDIR)$(libsubdir)/include
1058
1059all: install-unwind_h-forbuild
201cdb74 1060
e0a9456a 1061# Documentation targets (empty).
e8bb4597 1062.PHONY: info html dvi pdf install-info install-html install-pdf
b0088af7 1063
e0a9456a 1064info:
e8bb4597 1065install-info:
e0a9456a 1066html:
ac84c172 1067install-html:
e0a9456a 1068dvi:
e0a9456a 1069pdf:
ac84c172 1070install-pdf:
e0a9456a 1071
fa958513
DJ
1072# Install rules. These do not depend on "all", so that they can be invoked
1073# recursively from it.
1074install-libunwind:
1075 $(mkinstalldirs) $(DESTDIR)$(inst_slibdir)
1076
1077 # NOTE: Maybe this should go into $(inst_libdir), but this
1078 # is where the old mklibgcc.in put it.
1079 $(INSTALL_DATA) libunwind.a $(DESTDIR)$(inst_slibdir)/
1080 chmod 644 $(DESTDIR)$(inst_slibdir)/libunwind.a
1081 $(RANLIB) $(DESTDIR)$(inst_slibdir)/libunwind.a
1082
1083 $(subst @multilib_dir@,$(MULTIDIR),$(subst \
1084 @shlib_base_name@,libunwind,$(subst \
1085 @shlib_slibdir_qual@,$(MULTIOSSUBDIR),$(SHLIBUNWIND_INSTALL))))
1086
1087install-shared:
1088 $(mkinstalldirs) $(DESTDIR)$(inst_libdir)
1089
1090 $(INSTALL_DATA) libgcc_eh.a $(DESTDIR)$(inst_libdir)/
1091 chmod 644 $(DESTDIR)$(inst_libdir)/libgcc_eh.a
1092 $(RANLIB) $(DESTDIR)$(inst_libdir)/libgcc_eh.a
1093
1094 $(subst @multilib_dir@,$(MULTIDIR),$(subst \
1095 @shlib_base_name@,libgcc_s,$(subst \
1096 @shlib_slibdir_qual@,$(MULTIOSSUBDIR),$(SHLIB_INSTALL))))
1097
7c7c339b 1098install-leaf: $(install-shared) $(install-libunwind)
fa958513
DJ
1099 $(mkinstalldirs) $(DESTDIR)$(inst_libdir)
1100
1101 $(INSTALL_DATA) libgcc.a $(DESTDIR)$(inst_libdir)/
1102 chmod 644 $(DESTDIR)$(inst_libdir)/libgcc.a
1103 $(RANLIB) $(DESTDIR)$(inst_libdir)/libgcc.a
1104 $(INSTALL_DATA) libgcov.a $(DESTDIR)$(inst_libdir)/
1105 chmod 644 $(DESTDIR)$(inst_libdir)/libgcov.a
1106 $(RANLIB) $(DESTDIR)$(inst_libdir)/libgcov.a
1107
1108 parts="$(INSTALL_PARTS)"; \
1109 for file in $$parts; do \
1110 rm -f $(DESTDIR)$(inst_libdir)/$$file; \
1111 $(INSTALL_DATA) $$file $(DESTDIR)$(inst_libdir)/; \
5b50fc0c
IS
1112 case $$file in \
1113 *.a) \
1114 $(RANLIB) $(gcc_objdir)$(MULTISUBDIR)/$$file ;; \
1115 esac; \
fa958513
DJ
1116 done
1117
7c7c339b 1118install: install-leaf install-unwind_h
ef74edbd 1119 @: $(MAKE) ; $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
97af925b 1120
455c8f48
RW
1121install-strip: install
1122
1123.PHONY: install install-shared install-libunwind install-strip
4677d2eb 1124.PHONY: install-unwind_h install-unwind_h-forbuild
fa958513
DJ
1125
1126# Don't export variables to the environment, in order to not confuse
1127# configure.
1128.NOEXPORT:
1129
1130include $(srcdir)/empty.mk $(wildcard *.dep)