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