RISC-V: Make stack_save_restore tests more robust
[official-gcc.git] / gcc / Makefile.in
blob78779546459f965f55ba59b04fd637b112e69ca0
1 # Makefile for GNU Compiler Collection
2 # Run 'configure' to generate Makefile from Makefile.in
4 # Copyright (C) 1987-2023 Free Software Foundation, Inc.
6 #This file is part of GCC.
8 #GCC is free software; you can redistribute it and/or modify
9 #it under the terms of the GNU General Public License as published by
10 #the Free Software Foundation; either version 3, or (at your option)
11 #any later version.
13 #GCC is distributed in the hope that it will be useful,
14 #but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 #GNU General Public License for more details.
18 #You should have received a copy of the GNU General Public License
19 #along with GCC; see the file COPYING3. If not see
20 #<http://www.gnu.org/licenses/>.
22 # The targets for external use include:
23 # all, doc, install, install-cross, install-cross-rest, install-strip,
24 # uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean.
26 # This is the default target.
27 # Set by autoconf to "all.internal" for a native build, or
28 # "all.cross" to build a cross compiler.
29 all: @ALL@
31 # Depend on this to specify a phony target portably.
32 force:
34 # This tells GNU make version 3 not to export the variables
35 # defined in this file into the environment (and thus recursive makes).
36 .NOEXPORT:
37 # And this tells it not to automatically pass command-line variables
38 # to recursive makes.
39 MAKEOVERRIDES =
41 # Suppress smart makes who think they know how to automake yacc and flex file
42 .y.c:
43 .l.c:
45 # The only suffixes we want for implicit rules are .c and .o, so clear
46 # the list and add them. This speeds up GNU Make, and allows -r to work.
47 # For i18n support, we also need .gmo, .po, .pox.
48 # This must come before the language makefile fragments to allow them to
49 # add suffixes and rules of their own.
50 .SUFFIXES:
51 .SUFFIXES: .c .cc .o .po .pox .gmo
53 # -------------------------------
54 # Standard autoconf-set variables
55 # -------------------------------
57 build=@build@
58 build_os=@build_os@
59 host=@host@
60 host_noncanonical=@host_noncanonical@
61 host_os=@host_os@
62 target=@target@
63 target_noncanonical:=@target_noncanonical@
65 # Normally identical to target_noncanonical, except for compilers built
66 # as accelerator targets.
67 real_target_noncanonical:=@real_target_noncanonical@
68 accel_dir_suffix = @accel_dir_suffix@
70 # Sed command to transform gcc to installed name.
71 program_transform_name := @program_transform_name@
73 # -----------------------------
74 # Directories used during build
75 # -----------------------------
77 # Directory where sources are, from where we are.
78 srcdir = @srcdir@
79 gcc_docdir = @srcdir@/doc
81 # Directory where sources are, absolute.
82 abs_srcdir = @abs_srcdir@
83 abs_docdir = @abs_srcdir@/doc
85 # Directory where sources are, relative to here.
86 top_srcdir = @top_srcdir@
88 # Top build directory for this package, relative to here.
89 top_builddir = .
91 # The absolute path to the current directory.
92 objdir := $(shell pwd)
94 host_subdir=@host_subdir@
95 build_subdir=@build_subdir@
96 target_subdir=@target_subdir@
97 build_libsubdir=@build_libsubdir@
99 # Top build directory for the "Cygnus tree", relative to $(top_builddir).
100 ifeq ($(host_subdir),.)
101 toplevel_builddir := ..
102 else
103 toplevel_builddir := ../..
104 endif
106 build_objdir := $(toplevel_builddir)/$(build_subdir)
107 build_libobjdir := $(toplevel_builddir)/$(build_libsubdir)
108 target_objdir := $(toplevel_builddir)/$(target_subdir)
110 # --------
111 # Defined vpaths
112 # --------
114 # Directory where sources are, from where we are.
115 VPATH = @srcdir@
117 # We define a vpath for the sources of the .texi files here because they
118 # are split between multiple directories and we would rather use one implicit
119 # pattern rule for everything.
120 # This vpath could be extended within the Make-lang fragments.
122 vpath %.texi $(gcc_docdir)
123 vpath %.texi $(gcc_docdir)/include
125 # --------
126 # UNSORTED
127 # --------
129 # Extra flags to pass to indicate cross compilation, which
130 # might be used or tested by Make-lang fragments.
131 CROSS=@CROSS@
133 # Variables that exist for you to override.
134 # See below for how to change them for certain systems.
136 # List of language subdirectories.
137 SUBDIRS =@subdirs@ build
139 # Selection of languages to be made.
140 CONFIG_LANGUAGES = @all_selected_languages@
141 LANGUAGES = c $(CONFIG_LANGUAGES)
142 ifeq (@enable_gcov@,yes)
143 LANGUAGES += gcov$(exeext) gcov-dump$(exeext) gcov-tool$(exeext)
144 endif
146 # Default values for variables overridden in Makefile fragments.
147 # CFLAGS is for the user to override to, e.g., do a cross build with -O2.
148 # TCFLAGS is used for compilations with the GCC just built.
149 # T_CFLAGS is used for all compilations and is overridden by t-* files.
150 # TFLAGS is also for the user to override, passed down from the top-level
151 # Makefile. It is used for all compilations.
152 T_CFLAGS =
153 TCFLAGS =
154 TFLAGS =
155 CFLAGS = @CFLAGS@
156 CXXFLAGS = @CXXFLAGS@
157 LDFLAGS = @LDFLAGS@
159 # Should we build position-independent host code?
160 PICFLAG = @PICFLAG@
162 # The linker flag for the above.
163 LD_PICFLAG = @LD_PICFLAG@
165 # Flags to determine code coverage. When coverage is disabled, this will
166 # contain the optimization flags, as you normally want code coverage
167 # without optimization.
168 COVERAGE_FLAGS = @coverage_flags@
169 coverageexts = .{gcda,gcno}
171 # The warning flags are separate from CFLAGS because people tend to
172 # override optimization flags and we'd like them to still have warnings
173 # turned on. These flags are also used to pass other stage dependent
174 # flags from configure. The user is free to explicitly turn these flags
175 # off if they wish.
176 # LOOSE_WARN are the warning flags to use when compiling something
177 # which is only compiled with gcc, such as libgcc.
178 # C_LOOSE_WARN is similar, but with C-only warnings.
179 # STRICT_WARN are the additional warning flags to
180 # apply to the back end and some front ends, which may be compiled
181 # with other compilers.
182 # C_STRICT_WARN is similar, with C-only warnings.
183 LOOSE_WARN = @loose_warn@
184 C_LOOSE_WARN = @c_loose_warn@
185 STRICT_WARN = @strict_warn@
186 C_STRICT_WARN = @c_strict_warn@
188 # This is set by --enable-checking. The idea is to catch forgotten
189 # "extern" tags in header files.
190 NOCOMMON_FLAG = @nocommon_flag@
192 NOEXCEPTION_FLAGS = @noexception_flags@
194 ALIASING_FLAGS = @aliasing_flags@
196 # This is set by --disable-maintainer-mode (default) to "#"
197 # FIXME: 'MAINT' will always be set to an empty string, no matter if
198 # --disable-maintainer-mode is used or not. This is because the
199 # following will expand to "MAINT := " in maintainer mode, and to
200 # "MAINT := #" in non-maintainer mode, but because '#' starts a comment,
201 # they mean exactly the same thing for make.
202 MAINT := @MAINT@
204 # The following provides the variable ENABLE_MAINTAINER_RULES that can
205 # be used in language Make-lang.in makefile fragments to enable
206 # maintainer rules. So, ENABLE_MAINTAINER_RULES is 'true' in
207 # maintainer mode, and '' otherwise.
208 @MAINT@ ENABLE_MAINTAINER_RULES = true
210 # These are set by --enable-checking=valgrind.
211 RUN_GEN = @valgrind_command@
212 VALGRIND_DRIVER_DEFINES = @valgrind_path_defines@
214 # This is how we control whether or not the additional warnings are applied.
215 .-warn = $(STRICT_WARN)
216 build-warn = $(STRICT_WARN)
217 rtl-ssa-warn = $(STRICT_WARN)
218 GCC_WARN_CFLAGS = $(LOOSE_WARN) $(C_LOOSE_WARN) $($(@D)-warn) $(if $(filter-out $(STRICT_WARN),$($(@D)-warn)),,$(C_STRICT_WARN)) $(NOCOMMON_FLAG) $($@-warn)
219 GCC_WARN_CXXFLAGS = $(LOOSE_WARN) $($(@D)-warn) $(NOCOMMON_FLAG) $($@-warn)
221 # 1 2 3 ... 9999
222 one_to_9999_0:=1 2 3 4 5 6 7 8 9
223 one_to_9999_1:=0 $(one_to_9999_0)
224 one_to_9999_2:=$(foreach i,$(one_to_9999_0),$(addprefix $(i),$(one_to_9999_1)))
225 one_to_9999_3:=$(addprefix 0,$(one_to_9999_1)) $(one_to_9999_2)
226 one_to_9999_4:=$(foreach i,$(one_to_9999_0),$(addprefix $(i),$(one_to_9999_3)))
227 one_to_9999_5:=$(addprefix 0,$(one_to_9999_3)) $(one_to_9999_4)
228 one_to_9999_6:=$(foreach i,$(one_to_9999_0),$(addprefix $(i),$(one_to_9999_5)))
229 one_to_9999:=$(one_to_9999_0) $(one_to_9999_2) $(one_to_9999_4) $(one_to_9999_6)
231 # The number of splits to be made for the match.pd files.
232 NUM_MATCH_SPLITS = @DEFAULT_MATCHPD_PARTITIONS@
233 MATCH_SPLITS_SEQ = $(wordlist 1,$(NUM_MATCH_SPLITS),$(one_to_9999))
234 GIMPLE_MATCH_PD_SEQ_SRC = $(patsubst %, gimple-match-%.cc, $(MATCH_SPLITS_SEQ))
235 GIMPLE_MATCH_PD_SEQ_O = $(patsubst %, gimple-match-%.o, $(MATCH_SPLITS_SEQ))
236 GENERIC_MATCH_PD_SEQ_SRC = $(patsubst %, generic-match-%.cc, $(MATCH_SPLITS_SEQ))
237 GENERIC_MATCH_PD_SEQ_O = $(patsubst %, generic-match-%.o, $(MATCH_SPLITS_SEQ))
239 # These files are to have specific diagnostics suppressed, or are not to
240 # be subject to -Werror:
241 # flex output may yield harmless "no previous prototype" warnings
242 build/gengtype-lex.o-warn = -Wno-error
243 gengtype-lex.o-warn = -Wno-error
244 libgcov-util.o-warn = -Wno-error
245 libgcov-driver-tool.o-warn = -Wno-error
246 libgcov-merge-tool.o-warn = -Wno-error
247 gimple-match-exports.o-warn = -Wno-unused
248 dfp.o-warn = -Wno-strict-aliasing
250 # All warnings have to be shut off in stage1 if the compiler used then
251 # isn't gcc; configure determines that. WARN_CFLAGS will be either
252 # $(GCC_WARN_CFLAGS), or nothing. Similarly, WARN_CXXFLAGS will be
253 # either $(GCC_WARN_CXXFLAGS), or nothing.
254 WARN_CFLAGS = @warn_cflags@
255 WARN_CXXFLAGS = @warn_cxxflags@
257 CPPFLAGS = @CPPFLAGS@
259 AWK = @AWK@
260 CC = @CC@
261 CXX = @CXX@
262 BISON = @BISON@
263 BISONFLAGS =
264 FLEX = @FLEX@
265 FLEXFLAGS =
266 AR = @AR@
267 AR_FLAGS = rc
268 NM = @NM@
269 RANLIB = @RANLIB@
270 RANLIB_FLAGS = @ranlib_flags@
272 # Libraries to use on the host.
273 HOST_LIBS = @HOST_LIBS@
275 # The name of the compiler to use.
276 COMPILER = $(CXX)
277 COMPILER_FLAGS = $(CXXFLAGS)
278 # If HOST_LIBS is set, then the user is controlling the libraries to
279 # link against. In that case, link with $(CC) so that the -lstdc++
280 # library is not introduced. If HOST_LIBS is not set, link with
281 # $(CXX) to pick up -lstdc++.
282 ifeq ($(HOST_LIBS),)
283 LINKER = $(CXX)
284 LINKER_FLAGS = $(CXXFLAGS)
285 else
286 LINKER = $(CC)
287 LINKER_FLAGS = $(CFLAGS)
288 endif
290 enable_host_pie = @enable_host_pie@
292 # Enable Intel CET on Intel CET enabled host if needed.
293 CET_HOST_FLAGS = @CET_HOST_FLAGS@
294 COMPILER += $(CET_HOST_FLAGS)
296 DO_LINK_MUTEX = @DO_LINK_MUTEX@
298 # Maybe compile the compilers with -fPIE or -fPIC.
299 COMPILER += $(PICFLAG)
301 # Link with -pie, or -no-pie, depending on the above.
302 LINKER += $(LD_PICFLAG)
304 # Like LINKER, but use a mutex for serializing front end links.
305 ifeq (@DO_LINK_MUTEX@,true)
306 LLINKER = $(SHELL) $(srcdir)/lock-and-run.sh linkfe.lck $(LINKER)
307 else
308 LLINKER = $(LINKER)
309 endif
311 THIN_ARCHIVE_SUPPORT = @thin_archive_support@
313 USE_THIN_ARCHIVES = no
314 ifeq ($(THIN_ARCHIVE_SUPPORT),yes)
315 ifeq ($(AR_FLAGS),rc)
316 ifeq ($(RANLIB_FLAGS),)
317 USE_THIN_ARCHIVES = yes
318 endif
319 endif
320 endif
322 # -------------------------------------------
323 # Programs which operate on the build machine
324 # -------------------------------------------
326 SHELL = @SHELL@
327 # pwd command to use. Allow user to override default by setting PWDCMD in
328 # the environment to account for automounters. The make variable must not
329 # be called PWDCMD, otherwise the value set here is passed to make
330 # subprocesses and overrides the setting from the user's environment.
331 # Don't use PWD since it is a common shell environment variable and we
332 # don't want to corrupt it.
333 PWD_COMMAND = $${PWDCMD-pwd}
334 # on sysV, define this as cp.
335 INSTALL = @INSTALL@
336 # Some systems may be missing symbolic links, regular links, or both.
337 # Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate.
338 LN=@LN@
339 LN_S=@LN_S@
340 # These permit overriding just for certain files.
341 INSTALL_PROGRAM = @INSTALL_PROGRAM@
342 INSTALL_DATA = @INSTALL_DATA@
343 INSTALL_SCRIPT = @INSTALL@
344 install_sh = $(SHELL) $(srcdir)/../install-sh
345 INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
346 MAKEINFO = @MAKEINFO@
347 MAKEINFOFLAGS = --no-split
348 TEXI2DVI = texi2dvi
349 TEXI2PDF = texi2pdf
350 TEXI2HTML = $(MAKEINFO) --html
351 TEXI2POD = perl $(srcdir)/../contrib/texi2pod.pl
352 POD2MAN = pod2man --center="GNU" --release="gcc-$(version)" --date=$(shell sed 's/\(....\)\(..\)\(..\)/\1-\2-\3/' <$(DATESTAMP))
353 # Some versions of `touch' (such as the version on Solaris 2.8)
354 # do not correctly set the timestamp due to buggy versions of `utime'
355 # in the kernel. So, we use `echo' instead.
356 STAMP = echo timestamp >
357 # If necessary (e.g., when using the MSYS shell on Microsoft Windows)
358 # translate the shell's notion of absolute pathnames to the native
359 # spelling.
360 build_file_translate = @build_file_translate@
362 # Make sure the $(MAKE) variable is defined.
363 @SET_MAKE@
365 # Locate mkinstalldirs.
366 mkinstalldirs=$(SHELL) $(srcdir)/../mkinstalldirs
368 # write_entries_to_file - writes each entry in a list
369 # to the specified file. Entries are written in chunks of
370 # $(write_entries_to_file_split) to accommodate systems with
371 # severe command-line-length limitations.
372 # Parameters:
373 # $(1): variable containing entries to iterate over
374 # $(2): output file
375 write_entries_to_file_split = 50
376 write_entries_to_file = $(shell rm -f $(2) || :) $(shell touch $(2)) \
377 $(foreach range, \
378 $(shell i=1; while test $$i -le $(words $(1)); do \
379 echo $$i; i=`expr $$i + $(write_entries_to_file_split)`; done), \
380 $(shell echo "$(wordlist $(range), \
381 $(shell expr $(range) + $(write_entries_to_file_split) - 1), $(1))" \
382 | tr ' ' '\012' >> $(2)))
384 # The jit documentation looks better if built with sphinx, but can be
385 # built with texinfo if sphinx is not available.
386 # configure sets "doc_build_sys" to "sphinx" or "texinfo" accordingly
387 doc_build_sys=@doc_build_sys@
389 # --------
390 # UNSORTED
391 # --------
393 # Dependency tracking stuff.
394 CXXDEPMODE = @CXXDEPMODE@
395 DEPDIR = @DEPDIR@
396 depcomp = $(SHELL) $(srcdir)/../depcomp
398 # In the past we used AC_PROG_CC_C_O and set this properly, but
399 # it was discovered that this hadn't worked in a long time, so now
400 # we just hard-code.
401 OUTPUT_OPTION = -o $@
403 # This is where we get zlib from. zlibdir is -L../zlib and zlibinc is
404 # -I../zlib, unless we were configured with --with-system-zlib, in which
405 # case both are empty.
406 ZLIB = @zlibdir@ -lz
407 ZLIBINC = @zlibinc@
409 # How to find GMP
410 GMPLIBS = @GMPLIBS@
411 GMPINC = @GMPINC@
413 # How to find isl.
414 ISLLIBS = @ISLLIBS@
415 ISLINC = @ISLINC@
417 # Set to 'yes' if the LTO front end is enabled.
418 enable_lto = @enable_lto@
420 # Compiler and flags needed for plugin support
421 PLUGINCC = @CXX@
422 PLUGINCFLAGS = @CXXFLAGS@
424 # Libs and linker options needed for plugin support
425 PLUGINLIBS = @pluginlibs@
427 enable_plugin = @enable_plugin@
429 # On MinGW plugin installation involves installing import libraries.
430 ifeq ($(enable_plugin),yes)
431 plugin_implib := $(if $(strip $(filter mingw%,$(host_os))),yes,no)
432 endif
434 enable_host_shared = @enable_host_shared@
436 enable_as_accelerator = @enable_as_accelerator@
438 CPPLIB = ../libcpp/libcpp.a
439 CPPINC = -I$(srcdir)/../libcpp/include
441 CODYLIB = ../libcody/libcody.a
442 CODYINC = -I$(srcdir)/../libcody
443 NETLIBS = @NETLIBS@
445 # Where to find decNumber
446 enable_decimal_float = @enable_decimal_float@
447 DECNUM = $(srcdir)/../libdecnumber
448 DECNUMFMT = $(srcdir)/../libdecnumber/$(enable_decimal_float)
449 DECNUMINC = -I$(DECNUM) -I$(DECNUMFMT) -I../libdecnumber
450 LIBDECNUMBER = ../libdecnumber/libdecnumber.a
452 # The backtrace library.
453 BACKTRACE = $(srcdir)/../libbacktrace
454 BACKTRACEINC = -I$(BACKTRACE)
455 LIBBACKTRACE = ../libbacktrace/.libs/libbacktrace.a
457 # Target to use when installing include directory. Either
458 # install-headers-tar, install-headers-cpio or install-headers-cp.
459 INSTALL_HEADERS_DIR = @build_install_headers_dir@
461 # Header files that are made available under the same name
462 # to programs compiled with GCC.
463 USER_H = $(srcdir)/ginclude/float.h \
464 $(srcdir)/ginclude/iso646.h \
465 $(srcdir)/ginclude/stdarg.h \
466 $(srcdir)/ginclude/stdbool.h \
467 $(srcdir)/ginclude/stddef.h \
468 $(srcdir)/ginclude/varargs.h \
469 $(srcdir)/ginclude/stdfix.h \
470 $(srcdir)/ginclude/stdnoreturn.h \
471 $(srcdir)/ginclude/stdalign.h \
472 $(srcdir)/ginclude/stdatomic.h \
473 $(srcdir)/ginclude/stdckdint.h \
474 $(EXTRA_HEADERS)
476 USER_H_INC_NEXT_PRE = @user_headers_inc_next_pre@
477 USER_H_INC_NEXT_POST = @user_headers_inc_next_post@
479 # Enable target overriding of this fragment, as in config/t-vxworks.
480 T_GLIMITS_H = $(srcdir)/glimits.h
481 T_STDINT_GCC_H = $(srcdir)/ginclude/stdint-gcc.h
483 # The GCC to use for compiling crt*.o.
484 # Usually the one we just built.
485 # Don't use this as a dependency--use $(GCC_PASSES).
486 GCC_FOR_TARGET = $(STAGE_CC_WRAPPER) ./xgcc -B./ -B$(build_tooldir)/bin/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include -L$(objdir)/../ld $(TFLAGS)
488 # Set if the compiler was configured with --with-build-sysroot.
489 SYSROOT_CFLAGS_FOR_TARGET = @SYSROOT_CFLAGS_FOR_TARGET@
491 # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
492 # It specifies -B./.
493 # It also specifies -isystem ./include to find, e.g., stddef.h.
494 GCC_CFLAGS=$(CFLAGS_FOR_TARGET) $(INTERNAL_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) $(C_LOOSE_WARN) -Wold-style-definition $($@-warn) -isystem ./include $(TCFLAGS)
496 # ---------------------------------------------------
497 # Programs which produce files for the target machine
498 # ---------------------------------------------------
500 AR_FOR_TARGET := $(shell \
501 if [ -f $(objdir)/../binutils/ar ] ; then \
502 echo $(objdir)/../binutils/ar ; \
503 else \
504 if [ "$(host)" = "$(target)" ] ; then \
505 echo $(AR); \
506 else \
507 t='$(program_transform_name)'; echo ar | sed -e "$$t" ; \
508 fi; \
510 AR_FLAGS_FOR_TARGET =
511 AR_CREATE_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) rc
512 AR_EXTRACT_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) x
513 LIPO_FOR_TARGET = lipo
514 ORIGINAL_AS_FOR_TARGET = @ORIGINAL_AS_FOR_TARGET@
515 RANLIB_FOR_TARGET := $(shell \
516 if [ -f $(objdir)/../binutils/ranlib ] ; then \
517 echo $(objdir)/../binutils/ranlib ; \
518 else \
519 if [ "$(host)" = "$(target)" ] ; then \
520 echo $(RANLIB); \
521 else \
522 t='$(program_transform_name)'; echo ranlib | sed -e "$$t" ; \
523 fi; \
525 ORIGINAL_LD_FOR_TARGET = @ORIGINAL_LD_FOR_TARGET@
526 ORIGINAL_NM_FOR_TARGET = @ORIGINAL_NM_FOR_TARGET@
527 NM_FOR_TARGET = ./nm
528 STRIP_FOR_TARGET := $(shell \
529 if [ -f $(objdir)/../binutils/strip-new ] ; then \
530 echo $(objdir)/../binutils/strip-new ; \
531 else \
532 if [ "$(host)" = "$(target)" ] ; then \
533 echo strip; \
534 else \
535 t='$(program_transform_name)'; echo strip | sed -e "$$t" ; \
536 fi; \
539 # --------
540 # UNSORTED
541 # --------
543 # Where to find some libiberty headers.
544 HASHTAB_H = $(srcdir)/../include/hashtab.h
545 OBSTACK_H = $(srcdir)/../include/obstack.h
546 SPLAY_TREE_H= $(srcdir)/../include/splay-tree.h
547 MD5_H = $(srcdir)/../include/md5.h
548 XREGEX_H = $(srcdir)/../include/xregex.h
549 FNMATCH_H = $(srcdir)/../include/fnmatch.h
551 # Linker plugin API headers
552 LINKER_PLUGIN_API_H = $(srcdir)/../include/plugin-api.h
554 # Default native SYSTEM_HEADER_DIR, to be overridden by targets.
555 NATIVE_SYSTEM_HEADER_DIR = @NATIVE_SYSTEM_HEADER_DIR@
556 # Default cross SYSTEM_HEADER_DIR, to be overridden by targets.
557 ifeq (@includedir@,$(prefix)/include)
558 CROSS_SYSTEM_HEADER_DIR = @CROSS_SYSTEM_HEADER_DIR@
559 else
560 CROSS_SYSTEM_HEADER_DIR = @includedir@
561 endif
563 # autoconf sets SYSTEM_HEADER_DIR to one of the above.
564 # Purge it of unnecessary internal relative paths
565 # to directories that might not exist yet.
566 # The sed idiom for this is to repeat the search-and-replace until it doesn't match, using :a ... ta.
567 # Use single quotes here to avoid nested double- and backquotes, this
568 # macro is also used in a double-quoted context.
569 SYSTEM_HEADER_DIR = `echo @SYSTEM_HEADER_DIR@ | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta`
571 # Path to the system headers on the build machine.
572 BUILD_SYSTEM_HEADER_DIR = `echo @BUILD_SYSTEM_HEADER_DIR@ | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta`
574 # Control whether to run fixincludes.
575 STMP_FIXINC = @STMP_FIXINC@
577 # Test to see whether <limits.h> exists in the system header files.
578 LIMITS_H_TEST = [ -f $(BUILD_SYSTEM_HEADER_DIR)/limits.h ]
580 # Directory for prefix to system directories, for
581 # each of $(system_prefix)/usr/include, $(system_prefix)/usr/lib, etc.
582 TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
583 TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
585 xmake_file=@xmake_file@
586 tmake_file=@tmake_file@
587 TM_ENDIAN_CONFIG=@TM_ENDIAN_CONFIG@
588 TM_MULTILIB_CONFIG=@TM_MULTILIB_CONFIG@
589 TM_MULTILIB_EXCEPTIONS_CONFIG=@TM_MULTILIB_EXCEPTIONS_CONFIG@
590 out_file=$(srcdir)/config/@out_file@
591 out_object_file=@out_object_file@
592 common_out_file=$(srcdir)/common/config/@common_out_file@
593 common_out_object_file=@common_out_object_file@
594 EXTRA_GTYPE_DEPS=
595 md_file=$(srcdir)/common.md $(srcdir)/config/@md_file@
596 tm_file_list=@tm_file_list@
597 tm_include_list=@tm_include_list@
598 tm_defines=@tm_defines@
599 tm_p_file_list=@tm_p_file_list@
600 tm_p_include_list=@tm_p_include_list@
601 tm_d_file_list=@tm_d_file_list@
602 tm_d_include_list=@tm_d_include_list@
603 build_xm_file_list=@build_xm_file_list@
604 build_xm_include_list=@build_xm_include_list@
605 build_xm_defines=@build_xm_defines@
606 host_xm_file_list=@host_xm_file_list@
607 host_xm_include_list=@host_xm_include_list@
608 host_xm_defines=@host_xm_defines@
609 xm_file_list=@xm_file_list@
610 xm_include_list=@xm_include_list@
611 xm_defines=@xm_defines@
612 lang_checks=
613 lang_checks_parallelized=
614 lang_opt_files=@lang_opt_files@ $(srcdir)/c-family/c.opt $(srcdir)/common.opt $(srcdir)/params.opt $(srcdir)/analyzer/analyzer.opt
615 lang_specs_files=@lang_specs_files@
616 lang_tree_files=@lang_tree_files@
617 target_cpu_default=@target_cpu_default@
618 OBJC_BOEHM_GC=@objc_boehm_gc@
619 extra_modes_file=@extra_modes_file@
620 extra_opt_files=@extra_opt_files@
621 host_hook_obj=@out_host_hook_obj@
623 # Multiarch support
624 enable_multiarch = @enable_multiarch@
625 with_cpu = @with_cpu@
626 with_float = @with_float@
627 ifeq ($(enable_multiarch),yes)
628 if_multiarch = $(1)
629 else
630 ifeq ($(enable_multiarch),auto)
631 # SYSTEM_HEADER_DIR is makefile syntax, cannot be evaluated in configure.ac
632 if_multiarch = $(if $(wildcard $(shell echo $(BUILD_SYSTEM_HEADER_DIR))/../../usr/lib/*/crti.o),$(1))
633 else
634 if_multiarch =
635 endif
636 endif
638 # ------------------------
639 # Installation directories
640 # ------------------------
642 # Common prefix for installation directories.
643 # NOTE: This directory must exist when you start installation.
644 prefix = @prefix@
645 # Directory in which to put localized header files. On the systems with
646 # gcc as the native cc, `local_prefix' may not be `prefix' which is
647 # `/usr'.
648 # NOTE: local_prefix *should not* default from prefix.
649 local_prefix = @local_prefix@
650 # Directory in which to put host dependent programs and libraries
651 exec_prefix = @exec_prefix@
652 # Directory in which to put the executable for the command `gcc'
653 bindir = @bindir@
654 # Directory in which to put the directories used by the compiler.
655 libdir = @libdir@
656 # Directory in which GCC puts its executables.
657 libexecdir = @libexecdir@
659 # --------
660 # UNSORTED
661 # --------
663 # Directory in which the compiler finds libraries etc.
664 libsubdir = $(libdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
665 # Directory in which the compiler finds executables
666 libexecsubdir = $(libexecdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
667 # Directory in which all plugin resources are installed
668 plugin_resourcesdir = $(libsubdir)/plugin
669 # Directory in which plugin headers are installed
670 plugin_includedir = $(plugin_resourcesdir)/include
671 # Directory in which plugin specific executables are installed
672 plugin_bindir = $(libexecsubdir)/plugin
673 # Used to produce a relative $(gcc_tooldir) in gcc.o
674 ifeq ($(enable_as_accelerator),yes)
675 unlibsubdir = ../../../../..
676 else
677 unlibsubdir = ../../..
678 endif
679 # $(prefix), expressed as a path relative to $(libsubdir).
681 # An explanation of the sed strings:
682 # -e 's|^$(prefix)||' matches and eliminates 'prefix' from 'exec_prefix'
683 # -e 's|/$$||' match a trailing forward slash and eliminates it
684 # -e 's|^[^/]|/|' forces the string to start with a forward slash (*)
685 # -e 's|/[^/]*|../|g' replaces each occurrence of /<directory> with ../
687 # (*) Note this pattern overwrites the first character of the string
688 # with a forward slash if one is not already present. This is not a
689 # problem because the exact names of the sub-directories concerned is
690 # unimportant, just the number of them matters.
692 # The practical upshot of these patterns is like this:
694 # prefix exec_prefix result
695 # ------ ----------- ------
696 # /foo /foo/bar ../
697 # /foo/ /foo/bar ../
698 # /foo /foo/bar/ ../
699 # /foo/ /foo/bar/ ../
700 # /foo /foo/bar/ugg ../../
701 libsubdir_to_prefix := \
702 $(unlibsubdir)/$(shell echo "$(libdir)" | \
703 sed -e 's|^$(prefix)||' -e 's|/$$||' -e 's|^[^/]|/|' \
704 -e 's|/[^/]*|../|g')
705 # $(exec_prefix), expressed as a path relative to $(prefix).
706 prefix_to_exec_prefix := \
707 $(shell echo "$(exec_prefix)" | \
708 sed -e 's|^$(prefix)||' -e 's|^/||' -e '/./s|$$|/|')
709 # Directory in which to find other cross-compilation tools and headers.
710 dollar = @dollar@
711 # Used in install-cross.
712 gcc_tooldir = @gcc_tooldir@
713 # Since gcc_tooldir does not exist at build-time, use -B$(build_tooldir)/bin/
714 build_tooldir = $(exec_prefix)/$(target_noncanonical)
715 # Directory in which the compiler finds target-independent g++ includes.
716 gcc_gxx_include_dir = @gcc_gxx_include_dir@
717 gcc_gxx_include_dir_add_sysroot = @gcc_gxx_include_dir_add_sysroot@
718 # Directory in which the compiler finds libc++ includes.
719 gcc_gxx_libcxx_include_dir = @gcc_gxx_libcxx_include_dir@
720 gcc_gxx_libcxx_include_dir_add_sysroot = @gcc_gxx_libcxx_include_dir_add_sysroot@
721 # Directory to search for site-specific includes.
722 local_includedir = $(local_prefix)/include
723 includedir = $(prefix)/include
724 # where the info files go
725 infodir = @infodir@
726 # Where cpp should go besides $prefix/bin if necessary
727 cpp_install_dir = @cpp_install_dir@
728 # where the locale files go
729 datadir = @datadir@
730 localedir = $(datadir)/locale
731 # Extension (if any) to put in installed man-page filename.
732 man1ext = .1
733 man7ext = .7
734 objext = .o
735 exeext = @host_exeext@
736 build_exeext = @build_exeext@
738 # Directory in which to put man pages.
739 mandir = @mandir@
740 man1dir = $(mandir)/man1
741 man7dir = $(mandir)/man7
742 # Dir for temp files.
743 tmpdir = /tmp
745 datarootdir = @datarootdir@
746 docdir = @docdir@
747 # Directory in which to put DVIs
748 dvidir = @dvidir@
749 # Directory in which to build HTML
750 build_htmldir = $(objdir)/HTML/gcc-$(version)
751 # Directory in which to put HTML
752 htmldir = @htmldir@
754 # Whether we were configured with NLS.
755 USE_NLS = @USE_NLS@
757 # Internationalization library.
758 INCINTL = @INCINTL@
759 LIBINTL = @LIBINTL@
760 LIBINTL_DEP = @LIBINTL_DEP@
762 # Character encoding conversion library.
763 LIBICONV = @LIBICONV@
764 LIBICONV_DEP = @LIBICONV_DEP@
766 # If a supplementary library is being used for the GC.
767 GGC_LIB=
769 # "true" if the target C library headers are unavailable; "false"
770 # otherwise.
771 inhibit_libc = @inhibit_libc@
772 ifeq ($(inhibit_libc),true)
773 INHIBIT_LIBC_CFLAGS = -Dinhibit_libc
774 endif
776 # List of extra executables that should be compiled for this target machine
777 # that are used when linking.
778 # The rules for compiling them should be in the t-* file for the machine.
779 EXTRA_PROGRAMS = @extra_programs@
781 # List of extra object files that should be compiled and linked with
782 # compiler proper (cc1, cc1obj, cc1plus).
783 EXTRA_OBJS = @extra_objs@
785 # List of extra object files that should be compiled and linked with
786 # the gcc driver.
787 EXTRA_GCC_OBJS =@extra_gcc_objs@
789 # List of extra libraries that should be linked with the gcc driver.
790 EXTRA_GCC_LIBS = @EXTRA_GCC_LIBS@
792 # List of additional header files to install.
793 EXTRA_HEADERS =@extra_headers_list@
795 # How to handle <stdint.h>.
796 USE_GCC_STDINT = @use_gcc_stdint@
798 # The configure script will set this to collect2$(exeext), except on a
799 # (non-Unix) host which cannot build collect2, for which it will be
800 # set to empty.
801 COLLECT2 = @collect2@
803 # Program to convert libraries.
804 LIBCONVERT =
806 # Control whether header files are installed.
807 INSTALL_HEADERS=install-headers install-mkheaders
809 # Control whether Info documentation is built and installed.
810 BUILD_INFO = @BUILD_INFO@
812 # Control flags for @contents placement in HTML output
813 MAKEINFO_TOC_INLINE_FLAG = @MAKEINFO_TOC_INLINE_FLAG@
815 # Control whether manpages generated by texi2pod.pl can be rebuilt.
816 GENERATED_MANPAGES = @GENERATED_MANPAGES@
818 # Additional directories of header files to run fixincludes on.
819 # These should be directories searched automatically by default
820 # just as /usr/include is.
821 # *Do not* use this for directories that happen to contain
822 # header files, but are not searched automatically by default.
823 # On most systems, this is empty.
824 OTHER_FIXINCLUDES_DIRS=
826 # A list of all the language-specific executables.
827 COMPILERS = @all_compilers@
829 # List of things which should already be built whenever we try to use xgcc
830 # to compile anything (without linking).
831 GCC_PASSES=xgcc$(exeext) specs
833 # Directory to link to, when using the target `maketest'.
834 DIR = ../gcc
836 # Native compiler for the build machine and its switches.
837 CC_FOR_BUILD = @CC_FOR_BUILD@
838 CXX_FOR_BUILD = @CXX_FOR_BUILD@
839 BUILD_CFLAGS= @BUILD_CFLAGS@ $(GENERATOR_CFLAGS) -DGENERATOR_FILE
840 BUILD_CXXFLAGS = @BUILD_CXXFLAGS@ $(GENERATOR_CFLAGS) -DGENERATOR_FILE
842 # Native compiler that we use. This may be C++ some day.
843 COMPILER_FOR_BUILD = $(CXX_FOR_BUILD)
844 BUILD_COMPILERFLAGS = $(BUILD_CXXFLAGS)
846 # Native linker that we use.
847 LINKER_FOR_BUILD = $(CXX_FOR_BUILD)
848 BUILD_LINKERFLAGS = $(BUILD_CXXFLAGS)
850 # Native linker and preprocessor flags. For x-fragment overrides.
851 BUILD_LDFLAGS=@BUILD_LDFLAGS@
852 BUILD_CPPFLAGS= -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
853 -I$(srcdir)/../include $(INCINTL) $(CPPINC) $(CPPFLAGS)
855 # Actual name to use when installing a native compiler.
856 GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)')
857 GCC_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo gcc|sed '$(program_transform_name)')
858 CPP_INSTALL_NAME := $(shell echo cpp|sed '$(program_transform_name)')
859 GCOV_INSTALL_NAME := $(shell echo gcov|sed '$(program_transform_name)')
860 GCOV_TOOL_INSTALL_NAME := $(shell echo gcov-tool|sed '$(program_transform_name)')
861 GCOV_DUMP_INSTALL_NAME := $(shell echo gcov-dump|sed '$(program_transform_name)')
863 # Setup the testing framework, if you have one
864 EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
865 echo $${rootme}/../expect/expect ; \
866 else echo expect ; fi`
868 RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
869 echo $${srcdir}/../dejagnu/runtest ; \
870 else echo runtest; fi`
871 RUNTESTFLAGS =
873 # This should name the specs file that we're going to install. Target
874 # Makefiles may override it and name another file to be generated from
875 # the built-in specs and installed as the default spec, as long as
876 # they also introduce a rule to generate a file name specs, to be used
877 # at build time.
878 SPECS = specs
880 # Extra include files that are defined by HeaderInclude directives in
881 # the .opt files
882 OPTIONS_H_EXTRA =
884 # Extra include files that are defined by SourceInclude directives in
885 # the .opt files
886 OPTIONS_C_EXTRA = $(PRETTY_PRINT_H)
888 @option_includes@
890 # End of variables for you to override.
892 # GTM_H lists the config files that the generator files depend on,
893 # while TM_H lists the ones ordinary gcc files depend on, which
894 # includes several files generated by those generators.
895 BCONFIG_H = bconfig.h $(build_xm_file_list)
896 CONFIG_H = config.h $(host_xm_file_list)
897 TCONFIG_H = tconfig.h $(xm_file_list)
898 # Some $(target)-protos.h depends on tree.h
899 TM_P_H = tm_p.h $(tm_p_file_list) $(TREE_H)
900 TM_D_H = tm_d.h $(tm_d_file_list)
901 GTM_H = tm.h $(tm_file_list) insn-constants.h
902 TM_H = $(GTM_H) insn-flags.h $(OPTIONS_H)
904 # Variables for version information.
905 BASEVER := $(srcdir)/BASE-VER # 4.x.y
906 DEVPHASE := $(srcdir)/DEV-PHASE # experimental, prerelease, ""
907 DATESTAMP := $(srcdir)/DATESTAMP # YYYYMMDD or empty
908 REVISION := $(srcdir)/REVISION # [BRANCH revision XXXXXX]
910 BASEVER_c := $(shell cat $(BASEVER))
911 DEVPHASE_c := $(shell cat $(DEVPHASE))
912 DATESTAMP_c := $(shell cat $(DATESTAMP))
914 ifeq (,$(wildcard $(REVISION)))
915 REVISION_c :=
916 REVISION :=
917 else
918 REVISION_c := $(shell cat $(REVISION))
919 endif
921 version := $(shell @get_gcc_base_ver@ $(BASEVER))
923 PATCHLEVEL_c := \
924 $(shell echo $(BASEVER_c) | sed -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\)$$/\1/')
927 # For use in version.cc - double quoted strings, with appropriate
928 # surrounding punctuation and spaces, and with the datestamp and
929 # development phase collapsed to the empty string in release mode
930 # (i.e. if DEVPHASE_c is empty and PATCHLEVEL_c is 0). The space
931 # immediately after the comma in the $(if ...) constructs is
932 # significant - do not remove it.
933 BASEVER_s := "\"$(BASEVER_c)\""
934 DEVPHASE_s := "\"$(if $(DEVPHASE_c), ($(DEVPHASE_c)))\""
935 DATESTAMP_s := \
936 "\"$(if $(DEVPHASE_c)$(filter-out 0,$(PATCHLEVEL_c)), $(DATESTAMP_c))\""
937 PKGVERSION_s:= "\"@PKGVERSION@\""
938 BUGURL_s := "\"@REPORT_BUGS_TO@\""
940 PKGVERSION := @PKGVERSION@
941 BUGURL_TEXI := @REPORT_BUGS_TEXI@
943 ifdef REVISION_c
944 REVISION_s := \
945 "\"$(if $(DEVPHASE_c)$(filter-out 0,$(PATCHLEVEL_c)), $(REVISION_c))\""
946 else
947 REVISION_s := "\"\""
948 endif
950 # Shorthand variables for dependency lists.
951 DUMPFILE_H = $(srcdir)/../libcpp/include/line-map.h dumpfile.h
952 VEC_H = vec.h statistics.h $(GGC_H)
953 HASH_TABLE_H = $(HASHTAB_H) hash-table.h $(GGC_H)
954 EXCEPT_H = except.h $(HASHTAB_H)
955 TARGET_DEF = target.def target-hooks-macros.h target-insns.def
956 C_TARGET_DEF = c-family/c-target.def target-hooks-macros.h
957 COMMON_TARGET_DEF = common/common-target.def target-hooks-macros.h
958 D_TARGET_DEF = d/d-target.def target-hooks-macros.h
959 TARGET_H = $(TM_H) target.h $(TARGET_DEF) insn-modes.h insn-codes.h
960 C_TARGET_H = c-family/c-target.h $(C_TARGET_DEF)
961 COMMON_TARGET_H = common/common-target.h $(INPUT_H) $(COMMON_TARGET_DEF)
962 D_TARGET_H = d/d-target.h $(D_TARGET_DEF)
963 MACHMODE_H = machmode.h mode-classes.def
964 HOOKS_H = hooks.h
965 HOSTHOOKS_DEF_H = hosthooks-def.h $(HOOKS_H)
966 LANGHOOKS_DEF_H = langhooks-def.h $(HOOKS_H)
967 TARGET_DEF_H = target-def.h target-hooks-def.h $(HOOKS_H) targhooks.h
968 C_TARGET_DEF_H = c-family/c-target-def.h c-family/c-target-hooks-def.h \
969 $(TREE_H) $(C_COMMON_H) $(HOOKS_H) common/common-targhooks.h
970 CORETYPES_H = coretypes.h insn-modes.h signop.h wide-int.h wide-int-print.h \
971 insn-modes-inline.h $(MACHMODE_H) double-int.h align.h poly-int.h \
972 poly-int-types.h
973 RTL_BASE_H = $(CORETYPES_H) rtl.h rtl.def reg-notes.def \
974 insn-notes.def $(INPUT_H) $(REAL_H) statistics.h $(VEC_H) \
975 $(FIXED_VALUE_H) alias.h $(HASHTAB_H)
976 FIXED_VALUE_H = fixed-value.h
977 RTL_H = $(RTL_BASE_H) $(FLAGS_H) genrtl.h
978 READ_MD_H = $(OBSTACK_H) $(HASHTAB_H) read-md.h
979 BUILTINS_DEF = builtins.def sync-builtins.def omp-builtins.def \
980 gtm-builtins.def sanitizer.def
981 INTERNAL_FN_DEF = internal-fn.def
982 INTERNAL_FN_H = internal-fn.h $(INTERNAL_FN_DEF) insn-opinit.h
983 TREE_CORE_H = tree-core.h $(CORETYPES_H) all-tree.def tree.def \
984 c-family/c-common.def $(lang_tree_files) \
985 $(BUILTINS_DEF) $(INPUT_H) statistics.h \
986 $(VEC_H) treestruct.def $(HASHTAB_H) \
987 alias.h $(SYMTAB_H) $(FLAGS_H) \
988 $(REAL_H) $(FIXED_VALUE_H)
989 TREE_H = tree.h $(TREE_CORE_H) tree-check.h
990 REGSET_H = regset.h $(BITMAP_H) hard-reg-set.h
991 BASIC_BLOCK_H = basic-block.h $(PREDICT_H) $(VEC_H) $(FUNCTION_H) \
992 cfg-flags.def cfghooks.h profile-count.h
993 GIMPLE_H = gimple.h gimple.def gsstruct.def $(VEC_H) \
994 $(GGC_H) $(BASIC_BLOCK_H) $(TREE_H) tree-ssa-operands.h \
995 tree-ssa-alias.h $(INTERNAL_FN_H) $(HASH_TABLE_H) is-a.h
996 GCOV_IO_H = gcov-io.h version.h auto-host.h gcov-counter.def
997 RECOG_H = recog.h $(TREE_H)
998 EMIT_RTL_H = emit-rtl.h
999 FLAGS_H = flags.h flag-types.h $(OPTIONS_H)
1000 OPTIONS_H = options.h flag-types.h $(OPTIONS_H_EXTRA)
1001 FUNCTION_H = function.h $(HASHTAB_H) $(TM_H) hard-reg-set.h \
1002 $(VEC_H) $(INPUT_H)
1003 EXPR_H = expr.h insn-config.h $(FUNCTION_H) $(RTL_H) $(FLAGS_H) $(TREE_H) \
1004 $(EMIT_RTL_H)
1005 OPTABS_H = optabs.h insn-codes.h insn-opinit.h
1006 REGS_H = regs.h hard-reg-set.h
1007 CFGLOOP_H = cfgloop.h $(BASIC_BLOCK_H) $(BITMAP_H) sbitmap.h
1008 IPA_UTILS_H = ipa-utils.h $(TREE_H) $(CGRAPH_H)
1009 IPA_REFERENCE_H = ipa-reference.h $(BITMAP_H) $(TREE_H)
1010 CGRAPH_H = cgraph.h $(VEC_H) $(TREE_H) $(BASIC_BLOCK_H) $(FUNCTION_H) \
1011 cif-code.def ipa-ref.h $(LINKER_PLUGIN_API_H) is-a.h
1012 DF_H = df.h $(BITMAP_H) $(REGSET_H) sbitmap.h $(BASIC_BLOCK_H) \
1013 alloc-pool.h $(TIMEVAR_H)
1014 RESOURCE_H = resource.h hard-reg-set.h $(DF_H)
1015 GCC_H = gcc.h version.h $(DIAGNOSTIC_CORE_H)
1016 GGC_H = ggc.h gtype-desc.h statistics.h
1017 TIMEVAR_H = timevar.h timevar.def
1018 INSN_ATTR_H = insn-attr.h insn-attr-common.h $(INSN_ADDR_H)
1019 INSN_ADDR_H = $(srcdir)/insn-addr.h
1020 C_COMMON_H = c-family/c-common.h c-family/c-common.def $(TREE_H) \
1021 $(SPLAY_TREE_H) $(CPPLIB_H) $(GGC_H) $(DIAGNOSTIC_CORE_H)
1022 C_PRAGMA_H = c-family/c-pragma.h $(CPPLIB_H)
1023 C_TREE_H = c/c-tree.h $(C_COMMON_H) $(DIAGNOSTIC_H)
1024 SYSTEM_H = system.h hwint.h $(srcdir)/../include/libiberty.h \
1025 $(srcdir)/../include/safe-ctype.h $(srcdir)/../include/filenames.h \
1026 $(HASHTAB_H)
1027 PREDICT_H = predict.h predict.def
1028 CPPLIB_H = $(srcdir)/../libcpp/include/line-map.h \
1029 $(srcdir)/../libcpp/include/cpplib.h
1030 CODYLIB_H = $(srcdir)/../libcody/cody.hh
1031 INPUT_H = $(srcdir)/../libcpp/include/line-map.h input.h
1032 OPTS_H = $(INPUT_H) $(VEC_H) opts.h $(OBSTACK_H)
1033 SYMTAB_H = $(srcdir)/../libcpp/include/symtab.h $(OBSTACK_H)
1034 CPP_INTERNAL_H = $(srcdir)/../libcpp/internal.h
1035 TREE_DUMP_H = tree-dump.h $(SPLAY_TREE_H) $(DUMPFILE_H)
1036 TREE_PASS_H = tree-pass.h $(TIMEVAR_H) $(DUMPFILE_H)
1037 TREE_SSA_H = tree-ssa.h tree-ssa-operands.h \
1038 $(BITMAP_H) sbitmap.h $(BASIC_BLOCK_H) $(GIMPLE_H) \
1039 $(HASHTAB_H) $(CGRAPH_H) $(IPA_REFERENCE_H) \
1040 tree-ssa-alias.h
1041 PRETTY_PRINT_H = pretty-print.h $(INPUT_H) $(OBSTACK_H) wide-int-print.h
1042 TREE_PRETTY_PRINT_H = tree-pretty-print.h $(PRETTY_PRINT_H)
1043 GIMPLE_PRETTY_PRINT_H = gimple-pretty-print.h $(TREE_PRETTY_PRINT_H)
1044 DIAGNOSTIC_CORE_H = diagnostic-core.h $(INPUT_H) bversion.h diagnostic.def
1045 DIAGNOSTIC_H = diagnostic.h $(DIAGNOSTIC_CORE_H) $(PRETTY_PRINT_H)
1046 C_PRETTY_PRINT_H = c-family/c-pretty-print.h $(PRETTY_PRINT_H) \
1047 $(C_COMMON_H) $(TREE_H)
1048 TREE_INLINE_H = tree-inline.h
1049 REAL_H = real.h
1050 LTO_STREAMER_H = lto-streamer.h $(LINKER_PLUGIN_API_H) $(TARGET_H) \
1051 $(CGRAPH_H) $(VEC_H) $(HASH_TABLE_H) $(TREE_H) $(GIMPLE_H) \
1052 $(GCOV_IO_H) $(DIAGNOSTIC_H) alloc-pool.h
1053 IPA_PROP_H = ipa-prop.h $(TREE_H) $(VEC_H) $(CGRAPH_H) $(GIMPLE_H) alloc-pool.h
1054 BITMAP_H = bitmap.h $(HASHTAB_H) statistics.h
1055 GCC_PLUGIN_H = gcc-plugin.h highlev-plugin-common.h plugin.def \
1056 $(CONFIG_H) $(SYSTEM_H) $(HASHTAB_H)
1057 PLUGIN_H = plugin.h $(GCC_PLUGIN_H)
1058 PLUGIN_VERSION_H = plugin-version.h configargs.h
1059 CONTEXT_H = context.h
1060 GENSUPPORT_H = gensupport.h read-md.h optabs.def
1061 RTL_SSA_H = $(PRETTY_PRINT_H) insn-config.h splay-tree-utils.h \
1062 $(RECOG_H) $(REGS_H) function-abi.h obstack-utils.h \
1063 mux-utils.h rtlanal.h memmodel.h $(EMIT_RTL_H) \
1064 rtl-ssa/accesses.h rtl-ssa/insns.h rtl-ssa/blocks.h \
1065 rtl-ssa/changes.h rtl-ssa/functions.h rtl-ssa/is-a.inl \
1066 rtl-ssa/access-utils.h rtl-ssa/insn-utils.h rtl-ssa/movement.h \
1067 rtl-ssa/change-utils.h rtl-ssa/member-fns.inl
1070 # Now figure out from those variables how to compile and link.
1072 # IN_GCC distinguishes between code compiled into GCC itself and other
1073 # programs built during a bootstrap.
1074 # autoconf inserts -DCROSS_DIRECTORY_STRUCTURE if we are building a
1075 # cross compiler which does not use the native headers and libraries.
1076 INTERNAL_CFLAGS = -DIN_GCC @CROSS@
1078 # This is the variable actually used when we compile. If you change this,
1079 # you probably want to update BUILD_CFLAGS in configure.ac
1080 ALL_CFLAGS = $(T_CFLAGS) $(CFLAGS-$@) \
1081 $(CFLAGS) $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) @DEFS@
1083 # The C++ version.
1084 ALL_CXXFLAGS = $(T_CFLAGS) $(CFLAGS-$@) $(CXXFLAGS) $(INTERNAL_CFLAGS) \
1085 $(COVERAGE_FLAGS) $(ALIASING_FLAGS) $(NOEXCEPTION_FLAGS) \
1086 $(WARN_CXXFLAGS) @DEFS@
1088 # Likewise. Put INCLUDES at the beginning: this way, if some autoconf macro
1089 # puts -I options in CPPFLAGS, our include files in the srcdir will always
1090 # win against random include files in /usr/include.
1091 ALL_CPPFLAGS = $(INCLUDES) $(CPPFLAGS)
1093 # This is the variable to use when using $(COMPILER).
1094 ALL_COMPILERFLAGS = $(ALL_CXXFLAGS) $(PICFLAG)
1096 # This is the variable to use when using $(LINKER).
1097 ALL_LINKERFLAGS = $(ALL_CXXFLAGS) $(LD_PICFLAG)
1099 # Build and host support libraries.
1101 # Use the "pic" build of libiberty if --enable-host-shared or --enable-host-pie,
1102 # unless we are building for mingw.
1103 LIBIBERTY_PICDIR=$(if $(findstring mingw,$(target)),,pic)
1104 ifneq ($(enable_host_shared)$(enable_host_pie),)
1105 LIBIBERTY = ../libiberty/$(LIBIBERTY_PICDIR)/libiberty.a
1106 else
1107 LIBIBERTY = ../libiberty/libiberty.a
1108 endif
1109 ifeq ($(enable_host_shared),yes)
1110 BUILD_LIBIBERTY = $(build_libobjdir)/libiberty/$(LIBIBERTY_PICDIR)/libiberty.a
1111 else
1112 BUILD_LIBIBERTY = $(build_libobjdir)/libiberty/libiberty.a
1113 endif
1115 # Dependencies on the intl and portability libraries.
1116 LIBDEPS= libcommon.a $(CPPLIB) $(LIBIBERTY) $(LIBINTL_DEP) $(LIBICONV_DEP) \
1117 $(LIBDECNUMBER) $(LIBBACKTRACE)
1119 # Likewise, for use in the tools that must run on this machine
1120 # even if we are cross-building GCC.
1121 BUILD_LIBDEPS= $(BUILD_LIBIBERTY)
1123 # How to link with both our special library facilities
1124 # and the system's installed libraries.
1125 LIBS = @LIBS@ libcommon.a $(CPPLIB) $(LIBINTL) $(LIBICONV) $(LIBBACKTRACE) \
1126 $(LIBIBERTY) $(LIBDECNUMBER) $(HOST_LIBS)
1127 BACKENDLIBS = $(ISLLIBS) $(GMPLIBS) $(PLUGINLIBS) $(HOST_LIBS) \
1128 $(ZLIB) $(ZSTD_LIB)
1129 # Any system libraries needed just for GNAT.
1130 SYSLIBS = @GNAT_LIBEXC@
1132 # Used from ada/gcc-interface/Make-lang.in
1133 GNATBIND = @GNATBIND@
1134 GNATMAKE = @GNATMAKE@
1136 # Used from d/Make-lang.in
1137 GDC = @GDC@
1138 GDCFLAGS = @GDCFLAGS@
1140 # Libs needed (at present) just for jcf-dump.
1141 LDEXP_LIB = @LDEXP_LIB@
1143 ZSTD_INC = @ZSTD_CPPFLAGS@
1144 ZSTD_LIB = @ZSTD_LDFLAGS@ @ZSTD_LIB@
1146 # Likewise, for use in the tools that must run on this machine
1147 # even if we are cross-building GCC.
1148 BUILD_LIBS = $(BUILD_LIBIBERTY)
1150 BUILD_RTL = build/rtl.o build/read-rtl.o build/ggc-none.o \
1151 build/vec.o build/min-insn-modes.o build/gensupport.o \
1152 build/print-rtl.o build/hash-table.o build/sort.o
1153 BUILD_MD = build/read-md.o
1154 BUILD_ERRORS = build/errors.o
1156 # Specify the directories to be searched for header files.
1157 # Both . and srcdir are used, in that order,
1158 # so that *config.h will be found in the compilation
1159 # subdirectory rather than in the source directory.
1160 # -I$(@D) and -I$(srcdir)/$(@D) cause the subdirectory of the file
1161 # currently being compiled, in both source trees, to be examined as well.
1162 # libintl.h will be found in ../intl if we are using the included libintl.
1163 INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
1164 -I$(srcdir)/../include $(INCINTL) \
1165 $(CPPINC) $(CODYINC) $(GMPINC) $(DECNUMINC) $(BACKTRACEINC) \
1166 $(ISLINC)
1168 COMPILE.base = $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) -o $@
1169 ifeq ($(CXXDEPMODE),depmode=gcc3)
1170 # Note a subtlety here: we use $(@D) for the directory part, to make
1171 # things like the go/%.o rule work properly; but we use $(*F) for the
1172 # file part, as we just want the file part of the stem, not the entire
1173 # file name.
1174 COMPILE = $(COMPILE.base) -MT $@ -MMD -MP -MF $(@D)/$(DEPDIR)/$(*F).TPo
1175 POSTCOMPILE = @mv $(@D)/$(DEPDIR)/$(*F).TPo $(@D)/$(DEPDIR)/$(*F).Po
1176 else
1177 COMPILE = source='$<' object='$@' libtool=no \
1178 DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) $(COMPILE.base)
1179 POSTCOMPILE =
1180 endif
1182 .cc.o .c.o:
1183 $(COMPILE) $<
1184 $(POSTCOMPILE)
1187 # Support for additional languages (other than C).
1188 # C can be supported this way too (leave for later).
1190 LANG_CONFIGUREFRAGS = @all_lang_configurefrags@
1191 LANG_MAKEFRAGS = @all_lang_makefrags@
1193 # Used by gcc/jit/Make-lang.in
1194 LD_VERSION_SCRIPT_OPTION = @ld_version_script_option@
1195 LD_SONAME_OPTION = @ld_soname_option@
1197 # Flags to pass to recursive makes.
1198 # CC is set by configure.
1199 # ??? The choices here will need some experimenting with.
1201 export AR_FOR_TARGET
1202 export AR_CREATE_FOR_TARGET
1203 export AR_FLAGS_FOR_TARGET
1204 export AR_EXTRACT_FOR_TARGET
1205 export AWK
1206 export DESTDIR
1207 export GCC_FOR_TARGET
1208 export INCLUDES
1209 export INSTALL_DATA
1210 export LIPO_FOR_TARGET
1211 export MACHMODE_H
1212 export NM_FOR_TARGET
1213 export STRIP_FOR_TARGET
1214 export RANLIB_FOR_TARGET
1215 export libsubdir
1217 FLAGS_TO_PASS = \
1218 "ADA_CFLAGS=$(ADA_CFLAGS)" \
1219 "BISON=$(BISON)" \
1220 "BISONFLAGS=$(BISONFLAGS)" \
1221 "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)" \
1222 "LDFLAGS=$(LDFLAGS)" \
1223 "FLEX=$(FLEX)" \
1224 "FLEXFLAGS=$(FLEXFLAGS)" \
1225 "INSTALL=$(INSTALL)" \
1226 "INSTALL_DATA=$(INSTALL_DATA)" \
1227 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
1228 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
1229 "LN=$(LN)" \
1230 "LN_S=$(LN_S)" \
1231 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
1232 "MAKEINFO=$(MAKEINFO)" \
1233 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
1234 "MAKEOVERRIDES=" \
1235 "SHELL=$(SHELL)" \
1236 "TFLAGS=$(TFLAGS)" \
1237 "exeext=$(exeext)" \
1238 "build_exeext=$(build_exeext)" \
1239 "objext=$(objext)" \
1240 "exec_prefix=$(exec_prefix)" \
1241 "prefix=$(prefix)" \
1242 "local_prefix=$(local_prefix)" \
1243 "gxx_include_dir=$(gcc_gxx_include_dir)" \
1244 "gxx_libcxx_include_dir=$(gcc_gxx_libcxx_include_dir)" \
1245 "build_tooldir=$(build_tooldir)" \
1246 "gcc_tooldir=$(gcc_tooldir)" \
1247 "bindir=$(bindir)" \
1248 "libexecsubdir=$(libexecsubdir)" \
1249 "datarootdir=$(datarootdir)" \
1250 "datadir=$(datadir)" \
1251 "libsubdir=$(libsubdir)" \
1252 "localedir=$(localedir)"
1254 # Lists of files for various purposes.
1256 # All option source files
1257 ALL_OPT_FILES=$(lang_opt_files) $(extra_opt_files)
1259 # Target specific, C specific object file
1260 C_TARGET_OBJS=@c_target_objs@
1262 # Target specific, C++ specific object file
1263 CXX_TARGET_OBJS=@cxx_target_objs@
1265 # Target specific, D specific object file
1266 D_TARGET_OBJS=@d_target_objs@
1268 # Target specific, Fortran specific object file
1269 FORTRAN_TARGET_OBJS=@fortran_target_objs@
1271 # Object files for gcc many-languages driver.
1272 GCC_OBJS = gcc.o gcc-main.o ggc-none.o
1274 c-family-warn = $(STRICT_WARN)
1276 # Language-specific object files shared by all C-family front ends.
1277 C_COMMON_OBJS = c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o \
1278 c-family/c-format.o c-family/c-gimplify.o c-family/c-indentation.o \
1279 c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o \
1280 c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o \
1281 c-family/c-semantics.o c-family/c-ada-spec.o \
1282 c-family/c-ubsan.o c-family/known-headers.o \
1283 c-family/c-attribs.o c-family/c-warn.o c-family/c-spellcheck.o
1285 # Analyzer object files
1286 ANALYZER_OBJS = \
1287 analyzer/access-diagram.o \
1288 analyzer/analysis-plan.o \
1289 analyzer/analyzer.o \
1290 analyzer/analyzer-language.o \
1291 analyzer/analyzer-logging.o \
1292 analyzer/analyzer-pass.o \
1293 analyzer/analyzer-selftests.o \
1294 analyzer/bar-chart.o \
1295 analyzer/bounds-checking.o \
1296 analyzer/call-details.o \
1297 analyzer/call-info.o \
1298 analyzer/call-string.o \
1299 analyzer/call-summary.o \
1300 analyzer/checker-event.o \
1301 analyzer/checker-path.o \
1302 analyzer/complexity.o \
1303 analyzer/constraint-manager.o \
1304 analyzer/diagnostic-manager.o \
1305 analyzer/engine.o \
1306 analyzer/feasible-graph.o \
1307 analyzer/function-set.o \
1308 analyzer/infinite-recursion.o \
1309 analyzer/kf.o \
1310 analyzer/kf-analyzer.o \
1311 analyzer/kf-lang-cp.o \
1312 analyzer/known-function-manager.o \
1313 analyzer/pending-diagnostic.o \
1314 analyzer/program-point.o \
1315 analyzer/program-state.o \
1316 analyzer/region.o \
1317 analyzer/region-model.o \
1318 analyzer/region-model-asm.o \
1319 analyzer/region-model-manager.o \
1320 analyzer/region-model-reachability.o \
1321 analyzer/sm.o \
1322 analyzer/sm-file.o \
1323 analyzer/sm-fd.o \
1324 analyzer/sm-malloc.o \
1325 analyzer/sm-pattern-test.o \
1326 analyzer/sm-sensitive.o \
1327 analyzer/sm-signal.o \
1328 analyzer/sm-taint.o \
1329 analyzer/state-purge.o \
1330 analyzer/store.o \
1331 analyzer/supergraph.o \
1332 analyzer/svalue.o \
1333 analyzer/symbol.o \
1334 analyzer/trimmed-graph.o \
1335 analyzer/varargs.o
1337 # Language-independent object files.
1338 # We put the *-match.o and insn-*.o files first so that a parallel make
1339 # will build them sooner, because they are large and otherwise tend to be
1340 # the last objects to finish building.
1341 OBJS = \
1342 $(GIMPLE_MATCH_PD_SEQ_O) \
1343 gimple-match-exports.o \
1344 $(GENERIC_MATCH_PD_SEQ_O) \
1345 insn-attrtab.o \
1346 insn-automata.o \
1347 insn-dfatab.o \
1348 insn-emit.o \
1349 insn-extract.o \
1350 insn-latencytab.o \
1351 insn-modes.o \
1352 insn-opinit.o \
1353 insn-output.o \
1354 insn-peep.o \
1355 insn-preds.o \
1356 insn-recog.o \
1357 insn-enums.o \
1358 ggc-page.o \
1359 adjust-alignment.o \
1360 alias.o \
1361 alloc-pool.o \
1362 auto-inc-dec.o \
1363 auto-profile.o \
1364 bb-reorder.o \
1365 bitmap.o \
1366 builtins.o \
1367 caller-save.o \
1368 calls.o \
1369 ccmp.o \
1370 cfg.o \
1371 cfganal.o \
1372 cfgbuild.o \
1373 cfgcleanup.o \
1374 cfgexpand.o \
1375 cfghooks.o \
1376 cfgloop.o \
1377 cfgloopanal.o \
1378 cfgloopmanip.o \
1379 cfgrtl.o \
1380 ctfc.o \
1381 ctfout.o \
1382 btfout.o \
1383 symtab.o \
1384 symtab-thunks.o \
1385 symtab-clones.o \
1386 cgraph.o \
1387 cgraphbuild.o \
1388 cgraphunit.o \
1389 cgraphclones.o \
1390 combine.o \
1391 combine-stack-adj.o \
1392 compare-elim.o \
1393 context.o \
1394 convert.o \
1395 coroutine-passes.o \
1396 coverage.o \
1397 cppbuiltin.o \
1398 cppdefault.o \
1399 cprop.o \
1400 cse.o \
1401 cselib.o \
1402 data-streamer.o \
1403 data-streamer-in.o \
1404 data-streamer-out.o \
1405 dbgcnt.o \
1406 dce.o \
1407 ddg.o \
1408 debug.o \
1409 df-core.o \
1410 df-problems.o \
1411 df-scan.o \
1412 dfp.o \
1413 digraph.o \
1414 dojump.o \
1415 dominance.o \
1416 domwalk.o \
1417 double-int.o \
1418 dse.o \
1419 dumpfile.o \
1420 dwarf2asm.o \
1421 dwarf2cfi.o \
1422 dwarf2ctf.o \
1423 dwarf2out.o \
1424 early-remat.o \
1425 emit-rtl.o \
1426 et-forest.o \
1427 except.o \
1428 explow.o \
1429 expmed.o \
1430 expr.o \
1431 fibonacci_heap.o \
1432 file-prefix-map.o \
1433 final.o \
1434 fixed-value.o \
1435 fold-const.o \
1436 fold-const-call.o \
1437 function.o \
1438 function-abi.o \
1439 function-tests.o \
1440 fwprop.o \
1441 gcc-rich-location.o \
1442 gcse.o \
1443 gcse-common.o \
1444 ggc-common.o \
1445 ggc-tests.o \
1446 gimple.o \
1447 gimple-array-bounds.o \
1448 gimple-builder.o \
1449 gimple-expr.o \
1450 gimple-if-to-switch.o \
1451 gimple-iterator.o \
1452 gimple-fold.o \
1453 gimple-harden-conditionals.o \
1454 gimple-laddress.o \
1455 gimple-loop-interchange.o \
1456 gimple-loop-jam.o \
1457 gimple-loop-versioning.o \
1458 gimple-low.o \
1459 gimple-predicate-analysis.o \
1460 gimple-pretty-print.o \
1461 gimple-range.o \
1462 gimple-range-cache.o \
1463 gimple-range-edge.o \
1464 gimple-range-fold.o \
1465 gimple-range-gori.o \
1466 gimple-range-infer.o \
1467 gimple-range-op.o \
1468 gimple-range-phi.o \
1469 gimple-range-trace.o \
1470 gimple-ssa-backprop.o \
1471 gimple-ssa-isolate-paths.o \
1472 gimple-ssa-nonnull-compare.o \
1473 gimple-ssa-split-paths.o \
1474 gimple-ssa-store-merging.o \
1475 gimple-ssa-strength-reduction.o \
1476 gimple-ssa-sprintf.o \
1477 gimple-ssa-warn-access.o \
1478 gimple-ssa-warn-alloca.o \
1479 gimple-ssa-warn-restrict.o \
1480 gimple-streamer-in.o \
1481 gimple-streamer-out.o \
1482 gimple-walk.o \
1483 gimple-warn-recursion.o \
1484 gimplify.o \
1485 gimplify-me.o \
1486 godump.o \
1487 graph.o \
1488 graphds.o \
1489 graphviz.o \
1490 graphite.o \
1491 graphite-isl-ast-to-gimple.o \
1492 graphite-dependences.o \
1493 graphite-optimize-isl.o \
1494 graphite-poly.o \
1495 graphite-scop-detection.o \
1496 graphite-sese-to-poly.o \
1497 gtype-desc.o \
1498 haifa-sched.o \
1499 hash-map-tests.o \
1500 hash-set-tests.o \
1501 hw-doloop.o \
1502 hwint.o \
1503 ifcvt.o \
1504 ree.o \
1505 inchash.o \
1506 incpath.o \
1507 init-regs.o \
1508 internal-fn.o \
1509 ipa-cp.o \
1510 ipa-sra.o \
1511 ipa-devirt.o \
1512 ipa-fnsummary.o \
1513 ipa-polymorphic-call.o \
1514 ipa-split.o \
1515 ipa-inline.o \
1516 ipa-comdats.o \
1517 ipa-free-lang-data.o \
1518 ipa-visibility.o \
1519 ipa-inline-analysis.o \
1520 ipa-inline-transform.o \
1521 ipa-modref.o \
1522 ipa-modref-tree.o \
1523 ipa-predicate.o \
1524 ipa-profile.o \
1525 ipa-prop.o \
1526 ipa-param-manipulation.o \
1527 ipa-pure-const.o \
1528 ipa-icf.o \
1529 ipa-icf-gimple.o \
1530 ipa-reference.o \
1531 ipa-ref.o \
1532 ipa-utils.o \
1533 ipa.o \
1534 ira.o \
1535 ira-build.o \
1536 ira-costs.o \
1537 ira-conflicts.o \
1538 ira-color.o \
1539 ira-emit.o \
1540 ira-lives.o \
1541 jump.o \
1542 langhooks.o \
1543 lcm.o \
1544 lists.o \
1545 loop-doloop.o \
1546 loop-init.o \
1547 loop-invariant.o \
1548 loop-iv.o \
1549 loop-unroll.o \
1550 lower-subreg.o \
1551 lra.o \
1552 lra-assigns.o \
1553 lra-coalesce.o \
1554 lra-constraints.o \
1555 lra-eliminations.o \
1556 lra-lives.o \
1557 lra-remat.o \
1558 lra-spills.o \
1559 lto-cgraph.o \
1560 lto-streamer.o \
1561 lto-streamer-in.o \
1562 lto-streamer-out.o \
1563 lto-section-in.o \
1564 lto-section-out.o \
1565 lto-opts.o \
1566 lto-compress.o \
1567 mcf.o \
1568 mode-switching.o \
1569 modulo-sched.o \
1570 multiple_target.o \
1571 omp-offload.o \
1572 omp-expand.o \
1573 omp-general.o \
1574 omp-low.o \
1575 omp-oacc-kernels-decompose.o \
1576 omp-oacc-neuter-broadcast.o \
1577 omp-simd-clone.o \
1578 opt-problem.o \
1579 optabs.o \
1580 optabs-libfuncs.o \
1581 optabs-query.o \
1582 optabs-tree.o \
1583 optinfo.o \
1584 optinfo-emit-json.o \
1585 options-save.o \
1586 opts-global.o \
1587 ordered-hash-map-tests.o \
1588 passes.o \
1589 plugin.o \
1590 pointer-query.o \
1591 postreload-gcse.o \
1592 postreload.o \
1593 predict.o \
1594 print-rtl.o \
1595 print-rtl-function.o \
1596 print-tree.o \
1597 profile.o \
1598 profile-count.o \
1599 range.o \
1600 range-op.o \
1601 range-op-float.o \
1602 range-op-ptr.o \
1603 read-md.o \
1604 read-rtl.o \
1605 read-rtl-function.o \
1606 real.o \
1607 realmpfr.o \
1608 recog.o \
1609 reg-stack.o \
1610 regcprop.o \
1611 reginfo.o \
1612 regrename.o \
1613 regstat.o \
1614 reload.o \
1615 reload1.o \
1616 reorg.o \
1617 resource.o \
1618 rtl-error.o \
1619 rtl-ssa/accesses.o \
1620 rtl-ssa/blocks.o \
1621 rtl-ssa/changes.o \
1622 rtl-ssa/functions.o \
1623 rtl-ssa/insns.o \
1624 rtl-tests.o \
1625 rtl.o \
1626 rtlhash.o \
1627 rtlanal.o \
1628 rtlhooks.o \
1629 rtx-vector-builder.o \
1630 run-rtl-passes.o \
1631 sched-deps.o \
1632 sched-ebb.o \
1633 sched-rgn.o \
1634 sel-sched-ir.o \
1635 sel-sched-dump.o \
1636 sel-sched.o \
1637 selftest-rtl.o \
1638 selftest-run-tests.o \
1639 sese.o \
1640 shrink-wrap.o \
1641 simplify-rtx.o \
1642 sparseset.o \
1643 spellcheck.o \
1644 spellcheck-tree.o \
1645 splay-tree-utils.o \
1646 sreal.o \
1647 stack-ptr-mod.o \
1648 statistics.o \
1649 stmt.o \
1650 stor-layout.o \
1651 store-motion.o \
1652 streamer-hooks.o \
1653 stringpool.o \
1654 substring-locations.o \
1655 target-globals.o \
1656 targhooks.o \
1657 timevar.o \
1658 toplev.o \
1659 tracer.o \
1660 trans-mem.o \
1661 tree-affine.o \
1662 asan.o \
1663 tsan.o \
1664 ubsan.o \
1665 sanopt.o \
1666 sancov.o \
1667 tree-call-cdce.o \
1668 tree-cfg.o \
1669 tree-cfgcleanup.o \
1670 tree-chrec.o \
1671 tree-complex.o \
1672 tree-data-ref.o \
1673 tree-dfa.o \
1674 tree-diagnostic.o \
1675 tree-diagnostic-client-data-hooks.o \
1676 tree-diagnostic-path.o \
1677 tree-dump.o \
1678 tree-eh.o \
1679 tree-emutls.o \
1680 tree-if-conv.o \
1681 tree-inline.o \
1682 tree-into-ssa.o \
1683 tree-iterator.o \
1684 tree-logical-location.o \
1685 tree-loop-distribution.o \
1686 tree-nested.o \
1687 tree-nrv.o \
1688 tree-object-size.o \
1689 tree-outof-ssa.o \
1690 tree-parloops.o \
1691 tree-phinodes.o \
1692 tree-predcom.o \
1693 tree-pretty-print.o \
1694 tree-profile.o \
1695 tree-scalar-evolution.o \
1696 tree-sra.o \
1697 tree-switch-conversion.o \
1698 tree-ssa-address.o \
1699 tree-ssa-alias.o \
1700 tree-ssa-ccp.o \
1701 tree-ssa-coalesce.o \
1702 tree-ssa-copy.o \
1703 tree-ssa-dce.o \
1704 tree-ssa-dom.o \
1705 tree-ssa-dse.o \
1706 tree-ssa-forwprop.o \
1707 tree-ssa-ifcombine.o \
1708 tree-ssa-live.o \
1709 tree-ssa-loop-ch.o \
1710 tree-ssa-loop-im.o \
1711 tree-ssa-loop-ivcanon.o \
1712 tree-ssa-loop-ivopts.o \
1713 tree-ssa-loop-manip.o \
1714 tree-ssa-loop-niter.o \
1715 tree-ssa-loop-prefetch.o \
1716 tree-ssa-loop-split.o \
1717 tree-ssa-loop-unswitch.o \
1718 tree-ssa-loop.o \
1719 tree-ssa-math-opts.o \
1720 tree-ssa-operands.o \
1721 gimple-range-path.o \
1722 tree-ssa-phiopt.o \
1723 tree-ssa-phiprop.o \
1724 tree-ssa-pre.o \
1725 tree-ssa-propagate.o \
1726 tree-ssa-reassoc.o \
1727 tree-ssa-sccvn.o \
1728 tree-ssa-scopedtables.o \
1729 tree-ssa-sink.o \
1730 tree-ssa-strlen.o \
1731 tree-ssa-structalias.o \
1732 tree-ssa-tail-merge.o \
1733 tree-ssa-ter.o \
1734 tree-ssa-threadbackward.o \
1735 tree-ssa-threadedge.o \
1736 tree-ssa-threadupdate.o \
1737 tree-ssa-uncprop.o \
1738 tree-ssa-uninit.o \
1739 tree-ssa.o \
1740 tree-ssanames.o \
1741 tree-stdarg.o \
1742 tree-streamer.o \
1743 tree-streamer-in.o \
1744 tree-streamer-out.o \
1745 tree-tailcall.o \
1746 tree-vect-generic.o \
1747 gimple-isel.o \
1748 tree-vect-patterns.o \
1749 tree-vect-data-refs.o \
1750 tree-vect-stmts.o \
1751 tree-vect-loop.o \
1752 tree-vect-loop-manip.o \
1753 tree-vect-slp.o \
1754 tree-vect-slp-patterns.o \
1755 tree-vectorizer.o \
1756 tree-vector-builder.o \
1757 tree-vrp.o \
1758 tree.o \
1759 tristate.o \
1760 typed-splay-tree.o \
1761 valtrack.o \
1762 value-pointer-equiv.o \
1763 value-query.o \
1764 value-range.o \
1765 value-range-pretty-print.o \
1766 value-range-storage.o \
1767 value-relation.o \
1768 value-prof.o \
1769 var-tracking.o \
1770 varasm.o \
1771 varpool.o \
1772 vec-perm-indices.o \
1773 vmsdbgout.o \
1774 vr-values.o \
1775 vtable-verify.o \
1776 warning-control.o \
1777 web.o \
1778 wide-int.o \
1779 wide-int-print.o \
1780 $(out_object_file) \
1781 $(ANALYZER_OBJS) \
1782 $(EXTRA_OBJS) \
1783 $(host_hook_obj)
1785 # Objects in libcommon.a, potentially used by all host binaries and with
1786 # no target dependencies.
1787 OBJS-libcommon = diagnostic-spec.o diagnostic.o diagnostic-color.o \
1788 diagnostic-format-json.o \
1789 diagnostic-format-sarif.o \
1790 diagnostic-show-locus.o \
1791 edit-context.o \
1792 pretty-print.o intl.o \
1793 json.o \
1794 sbitmap.o \
1795 vec.o input.o hash-table.o ggc-none.o memory-block.o \
1796 selftest.o selftest-diagnostic.o sort.o \
1797 text-art/box-drawing.o \
1798 text-art/canvas.o \
1799 text-art/ruler.o \
1800 text-art/selftests.o \
1801 text-art/style.o \
1802 text-art/styled-string.o \
1803 text-art/table.o \
1804 text-art/theme.o \
1805 text-art/widget.o
1807 # Objects in libcommon-target.a, used by drivers and by the core
1808 # compiler and containing target-dependent code.
1809 OBJS-libcommon-target = $(common_out_object_file) prefix.o \
1810 opts.o opts-common.o options.o vec.o hooks.o common/common-targhooks.o \
1811 hash-table.o file-find.o spellcheck.o selftest.o opt-suggestions.o
1813 # This lists all host objects for the front ends.
1814 ALL_HOST_FRONTEND_OBJS = $(foreach v,$(CONFIG_LANGUAGES),$($(v)_OBJS))
1816 ALL_HOST_BACKEND_OBJS = $(GCC_OBJS) $(OBJS) $(OBJS-libcommon) \
1817 $(OBJS-libcommon-target) main.o c-family/cppspec.o \
1818 $(COLLECT2_OBJS) $(EXTRA_GCC_OBJS) $(GCOV_OBJS) $(GCOV_DUMP_OBJS) \
1819 $(GCOV_TOOL_OBJS) $(GENGTYPE_OBJS) gcc-ar.o gcc-nm.o gcc-ranlib.o \
1820 lto-wrapper.o collect-utils.o
1822 # for anything that is shared use the cc1plus profile data, as that
1823 # is likely the most exercised during the build
1824 ifeq ($(if $(wildcard ../stage_current),$(shell cat \
1825 ../stage_current)),stageautofeedback)
1826 $(ALL_HOST_BACKEND_OBJS): ALL_COMPILERFLAGS += -fauto-profile=cc1plus.fda
1827 $(ALL_HOST_BACKEND_OBJS): cc1plus.fda
1828 endif
1830 # This lists all host object files, whether they are included in this
1831 # compilation or not.
1832 ALL_HOST_OBJS = $(ALL_HOST_FRONTEND_OBJS) $(ALL_HOST_BACKEND_OBJS)
1834 BACKEND = libbackend.a main.o libcommon-target.a libcommon.a \
1835 $(CPPLIB) $(LIBDECNUMBER)
1837 # This is defined to "yes" if Tree checking is enabled, which roughly means
1838 # front-end checking.
1839 TREECHECKING = @TREECHECKING@
1841 # The full name of the driver on installation
1842 FULL_DRIVER_NAME=$(target_noncanonical)-gcc-$(version)$(exeext)
1844 MOSTLYCLEANFILES = insn-flags.h insn-config.h insn-codes.h \
1845 insn-output.cc insn-recog.cc insn-emit.cc insn-extract.cc insn-peep.cc \
1846 insn-attr.h insn-attr-common.h insn-attrtab.cc insn-dfatab.cc \
1847 insn-latencytab.cc insn-opinit.cc insn-opinit.h insn-preds.cc insn-constants.h \
1848 tm-preds.h tm-constrs.h checksum-options $(GIMPLE_MATCH_PD_SEQ_SRC) \
1849 $(GENERIC_MATCH_PD_SEQ_SRC) gimple-match-auto.h generic-match-auto.h \
1850 tree-check.h min-insn-modes.cc insn-modes.cc insn-modes.h insn-modes-inline.h \
1851 genrtl.h gt-*.h gtype-*.h gtype-desc.cc gtyp-input.list \
1852 case-cfn-macros.h cfn-operators.pd \
1853 xgcc$(exeext) cpp$(exeext) $(FULL_DRIVER_NAME) \
1854 $(EXTRA_PROGRAMS) gcc-cross$(exeext) \
1855 $(SPECS) collect2$(exeext) gcc-ar$(exeext) gcc-nm$(exeext) \
1856 gcc-ranlib$(exeext) \
1857 genversion$(build_exeext) gcov$(exeext) gcov-dump$(exeext) \
1858 gcov-tool$(exeect) \
1859 gengtype$(exeext) *.[0-9][0-9].* *.[si] *-checksum.cc libbackend.a \
1860 libcommon-target.a libcommon.a libgcc.mk perf.data
1862 # This symlink makes the full installation name of the driver be available
1863 # from within the *build* directory, for use when running the JIT library
1864 # from there (e.g. when running its testsuite).
1865 $(FULL_DRIVER_NAME): ./xgcc$(exeext)
1866 rm -f $@
1867 $(LN_S) $< $@
1870 # SELFTEST_DEPS need to be set before including language makefile fragments.
1871 # Otherwise $(SELFTEST_DEPS) is empty when used from <LANG>/Make-lang.in.
1872 SELFTEST_DEPS = $(GCC_PASSES) stmp-int-hdrs $(srcdir)/testsuite/selftests
1874 DO_LINK_SERIALIZATION = @DO_LINK_SERIALIZATION@
1876 # Language makefile fragments.
1878 # The following targets define the interface between us and the languages.
1880 # all.cross, start.encap, rest.encap,
1881 # install-common, install-info, install-man,
1882 # uninstall,
1883 # mostlyclean, clean, distclean, maintainer-clean,
1885 # Each language is linked in with a series of hooks. The name of each
1886 # hooked is "lang.${target_name}" (eg: lang.info). Configure computes
1887 # and adds these here. We use double-colon rules for some of the hooks;
1888 # double-colon rules should be preferred for any new hooks.
1890 # language hooks, generated by configure
1891 @language_hooks@
1893 ifeq ($(DO_LINK_SERIALIZATION),)
1894 LINK_PROGRESS = :
1895 else
1896 LINK_PROGRESS = msg="Linking $@ |"; cnt=0; if test "$(2)" = start; then \
1897 idx=0; cnt2=$(DO_LINK_SERIALIZATION); \
1898 while test $$cnt2 -le $(1); do msg="$${msg}=="; cnt2=`expr $$cnt2 + 1`; idx=`expr $$idx + 1`; done; \
1899 cnt=$$idx; \
1900 while test $$cnt -lt $(1); do msg="$${msg}>>"; cnt=`expr $$cnt + 1`; done; \
1901 msg="$${msg}--"; cnt=`expr $$cnt + 1`; \
1902 else \
1903 idx=`expr $(1) + 1`; \
1904 while test $$cnt -le $(1); do msg="$${msg}=="; cnt=`expr $$cnt + 1`; done; \
1905 fi; \
1906 while test $$cnt -lt $(SERIAL_COUNT); do msg="$${msg} "; cnt=`expr $$cnt + 1`; done; \
1907 msg="$${msg}| `expr 100 \* $$idx / $(SERIAL_COUNT)`%"; echo "$$msg"
1908 endif
1910 # Wire in install-gnatlib invocation with `make install' for a configuration
1911 # with top-level libada disabled.
1912 gnat_install_lib = @gnat_install_lib@
1914 # per-language makefile fragments
1915 -include $(LANG_MAKEFRAGS)
1917 # target and host overrides must follow the per-language makefile fragments
1918 # so they can override or augment language-specific variables
1920 # target overrides
1921 -include $(tmake_file)
1923 # host overrides
1924 -include $(xmake_file)
1926 # all-tree.def includes all the tree.def files.
1927 all-tree.def: s-alltree; @true
1928 s-alltree: Makefile
1929 rm -f tmp-all-tree.def
1930 echo '#include "tree.def"' > tmp-all-tree.def
1931 echo 'END_OF_BASE_TREE_CODES' >> tmp-all-tree.def
1932 echo '#include "c-family/c-common.def"' >> tmp-all-tree.def
1933 ltf="$(lang_tree_files)"; for f in $$ltf; do \
1934 echo "#include \"$$f\""; \
1935 done | sed 's|$(srcdir)/||' >> tmp-all-tree.def
1936 $(SHELL) $(srcdir)/../move-if-change tmp-all-tree.def all-tree.def
1937 $(STAMP) s-alltree
1939 # Now that LANG_MAKEFRAGS are included, we can add special flags to the
1940 # objects that belong to the front ends. We add an extra define that
1941 # causes back-end specific include files to be poisoned, in the hope that
1942 # we can avoid introducing dependencies of the front ends on things that
1943 # no front end should ever look at (e.g. everything RTL related).
1944 $(foreach file,$(ALL_HOST_FRONTEND_OBJS),$(eval CFLAGS-$(file) += -DIN_GCC_FRONTEND))
1948 # -----------------------------
1949 # Rebuilding this configuration
1950 # -----------------------------
1952 # On the use of stamps:
1953 # Consider the example of tree-check.h. It is constructed with build/gencheck.
1954 # A simple rule to build tree-check.h would be
1955 # tree-check.h: build/gencheck$(build_exeext)
1956 # $(RUN_GEN) build/gencheck$(build_exeext) > tree-check.h
1958 # but tree-check.h doesn't change every time gencheck changes. It would the
1959 # nice if targets that depend on tree-check.h wouldn't be rebuild
1960 # unnecessarily when tree-check.h is unchanged. To make this, tree-check.h
1961 # must not be overwritten with a identical copy. One solution is to use a
1962 # temporary file
1963 # tree-check.h: build/gencheck$(build_exeext)
1964 # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
1965 # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
1967 # This solution has a different problem. Since the time stamp of tree-check.h
1968 # is unchanged, make will try to update tree-check.h every time it runs.
1969 # To prevent this, one can add a stamp
1970 # tree-check.h: s-check
1971 # s-check : build/gencheck$(build_exeext)
1972 # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
1973 # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
1974 # $(STAMP) s-check
1976 # The problem with this solution is that make thinks that tree-check.h is
1977 # always unchanged. Make must be deceived into thinking that tree-check.h is
1978 # rebuild by the "tree-check.h: s-check" rule. To do this, add a dummy command:
1979 # tree-check.h: s-check; @true
1980 # s-check : build/gencheck$(build_exeext)
1981 # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
1982 # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
1983 # $(STAMP) s-check
1985 # This is what is done in this makefile. Note that mkconfig.sh has a
1986 # move-if-change built-in
1988 Makefile: config.status $(srcdir)/Makefile.in $(LANG_MAKEFRAGS)
1989 LANGUAGES="$(CONFIG_LANGUAGES)" \
1990 CONFIG_HEADERS= \
1991 CONFIG_SHELL="$(SHELL)" \
1992 CONFIG_FILES=$@ $(SHELL) config.status
1994 config.h: cs-config.h ; @true
1995 bconfig.h: cs-bconfig.h ; @true
1996 tconfig.h: cs-tconfig.h ; @true
1997 tm.h: cs-tm.h ; @true
1998 tm_p.h: cs-tm_p.h ; @true
1999 tm_d.h: cs-tm_d.h ; @true
2001 cs-config.h: Makefile
2002 TARGET_CPU_DEFAULT="" \
2003 HEADERS="$(host_xm_include_list)" DEFINES="$(host_xm_defines)" \
2004 $(SHELL) $(srcdir)/mkconfig.sh config.h
2006 cs-bconfig.h: Makefile
2007 TARGET_CPU_DEFAULT="" \
2008 HEADERS="$(build_xm_include_list)" DEFINES="$(build_xm_defines)" \
2009 $(SHELL) $(srcdir)/mkconfig.sh bconfig.h
2011 cs-tconfig.h: Makefile
2012 TARGET_CPU_DEFAULT="" \
2013 HEADERS="$(xm_include_list)" DEFINES="USED_FOR_TARGET $(xm_defines)" \
2014 $(SHELL) $(srcdir)/mkconfig.sh tconfig.h
2016 cs-tm.h: Makefile
2017 TARGET_CPU_DEFAULT="$(target_cpu_default)" \
2018 HEADERS="$(tm_include_list)" DEFINES="$(tm_defines)" \
2019 $(SHELL) $(srcdir)/mkconfig.sh tm.h
2021 cs-tm_p.h: Makefile
2022 TARGET_CPU_DEFAULT="" \
2023 HEADERS="$(tm_p_include_list)" DEFINES="" \
2024 $(SHELL) $(srcdir)/mkconfig.sh tm_p.h
2026 cs-tm_d.h: Makefile
2027 TARGET_CPU_DEFAULT="" \
2028 HEADERS="$(tm_d_include_list)" DEFINES="" \
2029 $(SHELL) $(srcdir)/mkconfig.sh tm_d.h
2031 # Don't automatically run autoconf, since configure.ac might be accidentally
2032 # newer than configure. Also, this writes into the source directory which
2033 # might be on a read-only file system. If configured for maintainer mode
2034 # then do allow autoconf to be run.
2036 AUTOCONF = autoconf
2037 ACLOCAL = aclocal
2038 ACLOCAL_AMFLAGS = -I ../config -I ..
2039 aclocal_deps = \
2040 $(srcdir)/../libtool.m4 \
2041 $(srcdir)/../ltoptions.m4 \
2042 $(srcdir)/../ltsugar.m4 \
2043 $(srcdir)/../ltversion.m4 \
2044 $(srcdir)/../lt~obsolete.m4 \
2045 $(srcdir)/../config/acx.m4 \
2046 $(srcdir)/../config/codeset.m4 \
2047 $(srcdir)/../config/depstand.m4 \
2048 $(srcdir)/../config/dfp.m4 \
2049 $(srcdir)/../config/gcc-plugin.m4 \
2050 $(srcdir)/../config/gettext-sister.m4 \
2051 $(srcdir)/../config/iconv.m4 \
2052 $(srcdir)/../config/lcmessage.m4 \
2053 $(srcdir)/../config/lead-dot.m4 \
2054 $(srcdir)/../config/lib-ld.m4 \
2055 $(srcdir)/../config/lib-link.m4 \
2056 $(srcdir)/../config/lib-prefix.m4 \
2057 $(srcdir)/../config/mmap.m4 \
2058 $(srcdir)/../config/override.m4 \
2059 $(srcdir)/../config/picflag.m4 \
2060 $(srcdir)/../config/progtest.m4 \
2061 $(srcdir)/../config/stdint.m4 \
2062 $(srcdir)/../config/warnings.m4 \
2063 $(srcdir)/../config/zlib.m4 \
2064 $(srcdir)/acinclude.m4
2066 $(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac $(srcdir)/aclocal.m4
2067 (cd $(srcdir) && $(AUTOCONF))
2069 $(srcdir)/aclocal.m4 : @MAINT@ $(aclocal_deps)
2070 (cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS))
2072 # cstamp-h.in controls rebuilding of config.in.
2073 # It is named cstamp-h.in and not stamp-h.in so the mostlyclean rule doesn't
2074 # delete it. A stamp file is needed as autoheader won't update the file if
2075 # nothing has changed.
2076 # It remains in the source directory and is part of the distribution.
2077 # This follows what is done in shellutils, fileutils, etc.
2078 # "echo timestamp" is used instead of touch to be consistent with other
2079 # packages that use autoconf (??? perhaps also to avoid problems with patch?).
2080 # ??? Newer versions have a maintainer mode that may be useful here.
2082 # Don't run autoheader automatically either.
2083 # Only run it if maintainer mode is enabled.
2084 @MAINT@ AUTOHEADER = autoheader
2085 @MAINT@ $(srcdir)/config.in: $(srcdir)/cstamp-h.in
2086 @MAINT@ $(srcdir)/cstamp-h.in: $(srcdir)/configure.ac
2087 @MAINT@ (cd $(srcdir) && $(AUTOHEADER))
2088 @MAINT@ @rm -f $(srcdir)/cstamp-h.in
2089 @MAINT@ echo timestamp > $(srcdir)/cstamp-h.in
2090 auto-host.h: cstamp-h ; @true
2091 cstamp-h: config.in config.status
2092 CONFIG_HEADERS=auto-host.h:config.in \
2093 CONFIG_FILES= \
2094 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status
2096 # On configurations that require auto-build.h, it is created while
2097 # running configure, so make config.status depend on it, so that
2098 # config.status --recheck runs and updates or creates it.
2099 @HAVE_AUTO_BUILD@auto-build.h: $(srcdir)/configure $(srcdir)/config.gcc
2100 @HAVE_AUTO_BUILD@ @if test -f $@; then echo rerunning config.status to update $@; \
2101 @HAVE_AUTO_BUILD@ else echo rerunning config.status to update $@; fi
2102 @HAVE_AUTO_BUILD@config.status: auto-build.h
2104 # Really, really stupid make features, such as SUN's KEEP_STATE, may force
2105 # a target to build even if it is up-to-date. So we must verify that
2106 # config.status does not exist before failing.
2107 config.status: $(srcdir)/configure $(srcdir)/config.gcc $(LANG_CONFIGUREFRAGS)
2108 @if [ ! -f config.status ] ; then \
2109 echo You must configure gcc. Look at http://gcc.gnu.org/install/ for details.; \
2110 false; \
2111 else \
2112 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status --recheck; \
2115 # --------
2116 # UNSORTED
2117 # --------
2119 # Provide quickstrap as a target that people can type into the gcc directory,
2120 # and that fails if you're not into it.
2121 quickstrap: all
2122 cd $(toplevel_builddir) && $(MAKE) all-target-libgcc
2124 all.internal: start.encap rest.encap doc selftest
2125 # This is what to compile if making a cross-compiler.
2126 all.cross: native gcc-cross$(exeext) cpp$(exeext) specs \
2127 libgcc-support lang.all.cross doc selftest @GENINSRC@ srcextra
2128 # This is what must be made before installing GCC and converting libraries.
2129 start.encap: native xgcc$(exeext) cpp$(exeext) specs \
2130 libgcc-support lang.start.encap @GENINSRC@ srcextra
2131 # These can't be made until after GCC can run.
2132 rest.encap: lang.rest.encap
2133 # This is what is made with the host's compiler
2134 # whether making a cross compiler or not.
2135 native: config.status auto-host.h build-@POSUB@ $(LANGUAGES) \
2136 $(EXTRA_PROGRAMS) $(COLLECT2) lto-wrapper$(exeext) \
2137 gcc-ar$(exeext) gcc-nm$(exeext) gcc-ranlib$(exeext)
2139 ifeq ($(enable_plugin),yes)
2140 native: gengtype$(exeext)
2141 endif
2143 # On the target machine, finish building a cross compiler.
2144 # This does the things that can't be done on the host machine.
2145 rest.cross: specs
2147 # GCC's selftests.
2148 # Specify a dummy input file to placate the driver.
2149 # Specify -nostdinc to work around missing WIND_BASE environment variable
2150 # required for *-wrs-vxworks-* targets.
2151 # Specify -o /dev/null so the output of -S is discarded. More importantly
2152 # It does not try to create a file with the name "null.s" on POSIX and
2153 # "nul.s" on Windows. Because on Windows "nul" is a reserved file name.
2154 # Beware that /dev/null is not available to mingw tools, so directly use
2155 # "nul" instead of "/dev/null" if we're building on a mingw machine.
2156 # Specify the path to gcc/testsuite/selftests within the srcdir
2157 # as an argument to -fself-test.
2158 DEVNULL=$(if $(findstring mingw,$(build)),nul,/dev/null)
2159 SELFTEST_FLAGS = -nostdinc $(DEVNULL) -S -o $(DEVNULL) \
2160 -fself-test=$(srcdir)/testsuite/selftests
2162 # Run the selftests during the build once we have a driver and the frontend,
2163 # so that self-test failures are caught as early as possible.
2164 # Use "s-selftest-FE" to ensure that we only run the selftests if the
2165 # driver, frontend, or selftest data change.
2166 .PHONY: selftest
2168 # Potentially run all selftest-<LANG>. The various <LANG>/Make-lang.in can
2169 # require the selftests to be run by defining their selftest-<LANG> as
2170 # s-selftest-<LANG>. Otherwise, they should define it as empty.
2172 SELFTEST_TARGETS = @selftest_languages@
2173 selftest: $(SELFTEST_TARGETS)
2175 # Recompile all the language-independent object files.
2176 # This is used only if the user explicitly asks for it.
2177 compilations: $(BACKEND)
2179 # This archive is strictly for the host.
2180 libbackend.a: $(OBJS)
2181 -rm -rf libbackend.a
2182 @# Build libbackend.a as a thin archive if possible, as doing so
2183 @# significantly reduces build times.
2184 ifeq ($(USE_THIN_ARCHIVES),yes)
2185 $(AR) $(AR_FLAGS)T libbackend.a $(OBJS)
2186 else
2187 $(AR) $(AR_FLAGS) libbackend.a $(OBJS)
2188 -$(RANLIB) $(RANLIB_FLAGS) libbackend.a
2189 endif
2191 libcommon-target.a: $(OBJS-libcommon-target)
2192 -rm -rf libcommon-target.a
2193 $(AR) $(AR_FLAGS) libcommon-target.a $(OBJS-libcommon-target)
2194 -$(RANLIB) $(RANLIB_FLAGS) libcommon-target.a
2196 libcommon.a: $(OBJS-libcommon)
2197 -rm -rf libcommon.a
2198 $(AR) $(AR_FLAGS) libcommon.a $(OBJS-libcommon)
2199 -$(RANLIB) $(RANLIB_FLAGS) libcommon.a
2201 # We call this executable `xgcc' rather than `gcc'
2202 # to avoid confusion if the current directory is in the path
2203 # and CC is `gcc'. It is renamed to `gcc' when it is installed.
2204 xgcc$(exeext): $(GCC_OBJS) c/gccspec.o libcommon-target.a $(LIBDEPS) \
2205 $(EXTRA_GCC_OBJS)
2206 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ $(GCC_OBJS) \
2207 c/gccspec.o $(EXTRA_GCC_OBJS) libcommon-target.a \
2208 $(EXTRA_GCC_LIBS) $(LIBS)
2210 # cpp is to cpp0 as e.g. g++ is to cc1plus: Just another driver.
2211 # It is part of c-family because the handled extensions are hard-coded
2212 # and only contain c-family extensions (see known_suffixes).
2213 cpp$(exeext): $(GCC_OBJS) c-family/cppspec.o libcommon-target.a $(LIBDEPS) \
2214 $(EXTRA_GCC_OBJS)
2215 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ $(GCC_OBJS) \
2216 c-family/cppspec.o $(EXTRA_GCC_OBJS) libcommon-target.a \
2217 $(EXTRA_GCC_LIBS) $(LIBS)
2219 # Dump a specs file to make -B./ read these specs over installed ones.
2220 $(SPECS): xgcc$(exeext)
2221 $(GCC_FOR_TARGET) -dumpspecs > tmp-specs
2222 mv tmp-specs $(SPECS)
2224 # We do want to create an executable named `xgcc', so we can use it to
2225 # compile libgcc2.a.
2226 # Also create gcc-cross, so that install-common will install properly.
2227 gcc-cross$(exeext): xgcc$(exeext)
2228 cp xgcc$(exeext) gcc-cross$(exeext)
2230 checksum-options:
2231 echo "$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS)" > checksum-options.tmp \
2232 && $(srcdir)/../move-if-change checksum-options.tmp checksum-options
2235 # Build libgcc.a.
2237 libgcc-support: libgcc.mvars stmp-int-hdrs $(TCONFIG_H) \
2238 $(MACHMODE_H) version.h
2240 libgcc.mvars: config.status Makefile specs xgcc$(exeext)
2241 : > tmp-libgcc.mvars
2242 echo GCC_CFLAGS = '$(GCC_CFLAGS)' >> tmp-libgcc.mvars
2243 echo INHIBIT_LIBC_CFLAGS = '$(INHIBIT_LIBC_CFLAGS)' >> tmp-libgcc.mvars
2244 echo TARGET_SYSTEM_ROOT = '$(TARGET_SYSTEM_ROOT)' >> tmp-libgcc.mvars
2245 if test @enable_default_pie@ = yes; then \
2246 NO_PIE_CFLAGS="-fno-PIE"; \
2247 else \
2248 NO_PIE_CFLAGS=; \
2249 fi; \
2250 echo NO_PIE_CFLAGS = "$$NO_PIE_CFLAGS" >> tmp-libgcc.mvars
2252 mv tmp-libgcc.mvars libgcc.mvars
2254 # Use the genmultilib shell script to generate the information the gcc
2255 # driver program needs to select the library directory based on the
2256 # switches.
2257 multilib.h: s-mlib; @true
2258 s-mlib: $(srcdir)/genmultilib Makefile
2259 if test @enable_multilib@ = yes \
2260 || test -n "$(MULTILIB_OSDIRNAMES)"; then \
2261 $(SHELL) $(srcdir)/genmultilib \
2262 "$(MULTILIB_OPTIONS)" \
2263 "$(MULTILIB_DIRNAMES)" \
2264 "$(MULTILIB_MATCHES)" \
2265 "$(MULTILIB_EXCEPTIONS)" \
2266 "$(MULTILIB_EXTRA_OPTS)" \
2267 "$(MULTILIB_EXCLUSIONS)" \
2268 "$(MULTILIB_OSDIRNAMES)" \
2269 "$(MULTILIB_REQUIRED)" \
2270 "$(if $(MULTILIB_OSDIRNAMES),,$(MULTIARCH_DIRNAME))" \
2271 "$(MULTILIB_REUSE)" \
2272 "@enable_multilib@" \
2273 > tmp-mlib.h; \
2274 else \
2275 $(SHELL) $(srcdir)/genmultilib '' '' '' '' '' '' '' '' \
2276 "$(MULTIARCH_DIRNAME)" '' no \
2277 > tmp-mlib.h; \
2279 $(SHELL) $(srcdir)/../move-if-change tmp-mlib.h multilib.h
2280 $(STAMP) s-mlib
2282 # Compiling object files from source files.
2284 # Note that dependencies on obstack.h are not written
2285 # because that file is not part of GCC.
2287 srcextra: gcc.srcextra lang.srcextra
2289 gcc.srcextra: gengtype-lex.cc
2290 -cp -p $^ $(srcdir)
2292 AR_OBJS = file-find.o
2293 AR_LIBS = @COLLECT2_LIBS@
2295 gcc-ar$(exeext): gcc-ar.o $(AR_OBJS) $(LIBDEPS)
2296 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) gcc-ar.o -o $@ \
2297 $(AR_OBJS) $(LIBS) $(AR_LIBS)
2299 gcc-nm$(exeext): gcc-nm.o $(AR_OBJS) $(LIBDEPS)
2300 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) gcc-nm.o -o $@ \
2301 $(AR_OBJS) $(LIBS) $(AR_LIBS)
2303 gcc-ranlib$(exeext): gcc-ranlib.o $(AR_OBJS) $(LIBDEPS)
2304 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) gcc-ranlib.o -o $@ \
2305 $(AR_OBJS) $(LIBS) $(AR_LIBS)
2307 CFLAGS-gcc-ar.o += $(DRIVER_DEFINES) \
2308 -DTARGET_MACHINE=\"$(target_noncanonical)\" \
2309 @TARGET_SYSTEM_ROOT_DEFINE@ -DPERSONALITY=\"ar\"
2311 CFLAGS-gcc-ranlib.o += $(DRIVER_DEFINES) \
2312 -DTARGET_MACHINE=\"$(target_noncanonical)\" \
2313 @TARGET_SYSTEM_ROOT_DEFINE@ -DPERSONALITY=\"ranlib\"
2315 CFLAGS-gcc-nm.o += $(DRIVER_DEFINES) \
2316 -DTARGET_MACHINE=\"$(target_noncanonical)\" \
2317 @TARGET_SYSTEM_ROOT_DEFINE@ -DPERSONALITY=\"nm\"
2319 # ??? the implicit rules dont trigger if the source file has a different name
2320 # so copy instead
2321 gcc-ranlib.cc: gcc-ar.cc
2322 cp $^ $@
2324 gcc-nm.cc: gcc-ar.cc
2325 cp $^ $@
2327 COLLECT2_OBJS = collect2.o collect2-aix.o vec.o ggc-none.o \
2328 collect-utils.o file-find.o hash-table.o selftest.o
2329 COLLECT2_LIBS = @COLLECT2_LIBS@
2330 collect2$(exeext): $(COLLECT2_OBJS) $(LIBDEPS)
2331 # Don't try modifying collect2 (aka ld) in place--it might be linking this.
2332 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o T$@ \
2333 $(COLLECT2_OBJS) $(LIBS) $(COLLECT2_LIBS)
2334 mv -f T$@ $@
2336 CFLAGS-collect2.o += -DTARGET_MACHINE=\"$(target_noncanonical)\" \
2337 @TARGET_SYSTEM_ROOT_DEFINE@
2339 LTO_WRAPPER_OBJS = lto-wrapper.o collect-utils.o ggc-none.o
2340 lto-wrapper$(exeext): $(LTO_WRAPPER_OBJS) libcommon-target.a $(LIBDEPS)
2341 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o T$@ \
2342 $(LTO_WRAPPER_OBJS) libcommon-target.a $(LIBS)
2343 mv -f T$@ $@
2345 # Files used by all variants of C or by the stand-alone pre-processor.
2347 CFLAGS-c-family/c-opts.o += @TARGET_SYSTEM_ROOT_DEFINE@
2349 CFLAGS-c-family/c-pch.o += -DHOST_MACHINE=\"$(host)\" \
2350 -DTARGET_MACHINE=\"$(target)\"
2352 default-c.o: config/default-c.cc
2353 $(COMPILE) $<
2354 $(POSTCOMPILE)
2356 # Files used by all variants of C and some other languages.
2358 CFLAGS-prefix.o += -DPREFIX=\"$(prefix)\" -DBASEVER=$(BASEVER_s)
2359 prefix.o: $(BASEVER)
2361 # Files used by the D language front end.
2363 default-d.o: config/default-d.cc
2364 $(COMPILE) $<
2365 $(POSTCOMPILE)
2367 # Language-independent files.
2369 DRIVER_DEFINES = \
2370 -DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \
2371 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc/\" \
2372 -DSTANDARD_LIBEXEC_PREFIX=\"$(libexecdir)/gcc/\" \
2373 -DDEFAULT_TARGET_VERSION=\"$(version)\" \
2374 -DDEFAULT_REAL_TARGET_MACHINE=\"$(real_target_noncanonical)\" \
2375 -DDEFAULT_TARGET_MACHINE=\"$(target_noncanonical)\" \
2376 -DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \
2377 -DTOOLDIR_BASE_PREFIX=\"$(libsubdir_to_prefix)$(prefix_to_exec_prefix)\" \
2378 -DACCEL_DIR_SUFFIX=\"$(accel_dir_suffix)\" \
2379 @TARGET_SYSTEM_ROOT_DEFINE@ \
2380 $(VALGRIND_DRIVER_DEFINES) \
2381 $(if $(SHLIB),$(if $(filter yes,@enable_shared@),-DENABLE_SHARED_LIBGCC)) \
2382 -DCONFIGURE_SPECS="\"@CONFIGURE_SPECS@\"" \
2383 -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \
2384 -DNATIVE_SYSTEM_HEADER_DIR=\"$(NATIVE_SYSTEM_HEADER_DIR)\"
2386 CFLAGS-gcc.o += $(DRIVER_DEFINES) -DBASEVER=$(BASEVER_s)
2387 gcc.o: $(BASEVER)
2389 specs.h : s-specs ; @true
2390 s-specs : Makefile
2391 lsf="$(lang_specs_files)"; for f in $$lsf; do \
2392 echo "#include \"$$f\""; \
2393 done | sed 's|$(srcdir)/||' > tmp-specs.h
2394 $(SHELL) $(srcdir)/../move-if-change tmp-specs.h specs.h
2395 $(STAMP) s-specs
2397 optionlist: s-options ; @true
2398 s-options: $(ALL_OPT_FILES) Makefile $(srcdir)/opt-gather.awk
2399 LC_ALL=C ; export LC_ALL ; \
2400 $(AWK) -f $(srcdir)/opt-gather.awk $(ALL_OPT_FILES) > tmp-optionlist
2401 $(SHELL) $(srcdir)/../move-if-change tmp-optionlist optionlist
2402 $(STAMP) s-options
2404 options.cc: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opt-read.awk \
2405 $(srcdir)/optc-gen.awk
2406 $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opt-read.awk \
2407 -f $(srcdir)/optc-gen.awk \
2408 -v header_name="config.h system.h coretypes.h options.h tm.h" < $< > $@
2410 options-save.cc: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opt-read.awk \
2411 $(srcdir)/optc-save-gen.awk
2412 $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opt-read.awk \
2413 -f $(srcdir)/optc-save-gen.awk \
2414 -v header_name="config.h system.h coretypes.h tm.h" < $< > $@
2416 options.h: s-options-h ; @true
2417 s-options-h: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opt-read.awk \
2418 $(srcdir)/opth-gen.awk
2419 $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opt-read.awk \
2420 -f $(srcdir)/opth-gen.awk \
2421 < $< > tmp-options.h
2422 $(SHELL) $(srcdir)/../move-if-change tmp-options.h options.h
2423 $(STAMP) $@
2425 dumpvers: dumpvers.cc
2427 # lto-compress.o needs $(ZLIBINC) added to the include flags.
2428 CFLAGS-lto-compress.o += $(ZLIBINC) $(ZSTD_INC)
2430 CFLAGS-lto-streamer-in.o += -DTARGET_MACHINE=\"$(target_noncanonical)\"
2432 bversion.h: s-bversion; @true
2433 s-bversion: BASE-VER
2434 echo "#define BUILDING_GCC_MAJOR `echo $(BASEVER_c) | sed -e 's/^\([0-9]*\).*$$/\1/'`" > bversion.h
2435 echo "#define BUILDING_GCC_MINOR `echo $(BASEVER_c) | sed -e 's/^[0-9]*\.\([0-9]*\).*$$/\1/'`" >> bversion.h
2436 echo "#define BUILDING_GCC_PATCHLEVEL `echo $(BASEVER_c) | sed -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\)$$/\1/'`" >> bversion.h
2437 echo "#define BUILDING_GCC_VERSION (BUILDING_GCC_MAJOR * 1000 + BUILDING_GCC_MINOR)" >> bversion.h
2438 $(STAMP) s-bversion
2440 CFLAGS-toplev.o += -DTARGET_NAME=\"$(target_noncanonical)\"
2441 CFLAGS-tree-diagnostic-client-data-hooks.o += -DTARGET_NAME=\"$(target_noncanonical)\"
2442 CFLAGS-optinfo-emit-json.o += -DTARGET_NAME=\"$(target_noncanonical)\" $(ZLIBINC)
2443 CFLAGS-analyzer/engine.o += $(ZLIBINC)
2445 pass-instances.def: $(srcdir)/passes.def $(PASSES_EXTRA) \
2446 $(srcdir)/gen-pass-instances.awk
2447 $(AWK) -f $(srcdir)/gen-pass-instances.awk \
2448 $(srcdir)/passes.def $(PASSES_EXTRA) > pass-instances.def
2450 $(out_object_file): $(out_file)
2451 $(COMPILE) $<
2452 $(POSTCOMPILE)
2454 $(common_out_object_file): $(common_out_file)
2455 $(COMPILE) $<
2456 $(POSTCOMPILE)
2458 # Generate header and source files from the machine description,
2459 # and compile them.
2461 .PRECIOUS: insn-config.h insn-flags.h insn-codes.h insn-constants.h \
2462 insn-emit.cc insn-recog.cc insn-extract.cc insn-output.cc insn-peep.cc \
2463 insn-attr.h insn-attr-common.h insn-attrtab.cc insn-dfatab.cc \
2464 insn-latencytab.cc insn-preds.cc $(GIMPLE_MATCH_PD_SEQ_SRC) \
2465 $(GENERIC_MATCH_PD_SEQ_SRC) gimple-match-auto.h generic-match-auto.h \
2466 insn-target-def.h
2468 # Dependencies for the md file. The first time through, we just assume
2469 # the md file itself and the generated dependency file (in order to get
2470 # it built). The second time through we have the dependency file.
2471 -include mddeps.mk
2472 MD_DEPS = s-mddeps $(md_file) $(MD_INCLUDES)
2474 s-mddeps: $(md_file) $(MD_INCLUDES) build/genmddeps$(build_exeext)
2475 $(RUN_GEN) build/genmddeps$(build_exeext) $(md_file) > tmp-mddeps
2476 $(SHELL) $(srcdir)/../move-if-change tmp-mddeps mddeps.mk
2477 $(STAMP) s-mddeps
2479 # For each of the files generated by running a generator program over
2480 # the machine description, the following static pattern rules run the
2481 # generator program only if the machine description has changed,
2482 # but touch the target file only when its contents actually change.
2483 # The "; @true" construct forces Make to recheck the timestamp on
2484 # the target file.
2486 simple_rtl_generated_h = insn-attr.h insn-attr-common.h insn-codes.h \
2487 insn-config.h insn-flags.h insn-target-def.h
2489 simple_rtl_generated_c = insn-automata.cc insn-emit.cc \
2490 insn-extract.cc insn-output.cc \
2491 insn-peep.cc insn-recog.cc
2493 simple_generated_h = $(simple_rtl_generated_h) insn-constants.h
2495 simple_generated_c = $(simple_rtl_generated_c) insn-enums.cc
2497 $(simple_generated_h:insn-%.h=s-%) \
2498 $(simple_generated_c:insn-%.cc=s-%): s-%: $(MD_DEPS)
2500 $(simple_rtl_generated_h:insn-%.h=s-%) \
2501 $(simple_rtl_generated_c:insn-%.cc=s-%): s-%: insn-conditions.md
2503 $(simple_generated_h): insn-%.h: s-%; @true
2505 $(simple_generated_h:insn-%.h=s-%): s-%: build/gen%$(build_exeext)
2506 $(RUN_GEN) build/gen$*$(build_exeext) $(md_file) \
2507 $(filter insn-conditions.md,$^) > tmp-$*.h
2508 $(SHELL) $(srcdir)/../move-if-change tmp-$*.h insn-$*.h
2509 $(STAMP) s-$*
2511 $(simple_generated_c): insn-%.cc: s-%; @true
2512 $(simple_generated_c:insn-%.cc=s-%): s-%: build/gen%$(build_exeext)
2513 $(RUN_GEN) build/gen$*$(build_exeext) $(md_file) \
2514 $(filter insn-conditions.md,$^) > tmp-$*.cc
2515 $(SHELL) $(srcdir)/../move-if-change tmp-$*.cc insn-$*.cc
2516 $(STAMP) s-$*
2518 # gencheck doesn't read the machine description, and the file produced
2519 # doesn't use the insn-* convention.
2520 tree-check.h: s-check ; @true
2521 s-check : build/gencheck$(build_exeext)
2522 $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
2523 $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
2524 $(STAMP) s-check
2526 # genattrtab produces three files: tmp-{attrtab.cc,dfatab.cc,latencytab.cc}
2527 insn-attrtab.cc insn-dfatab.cc insn-latencytab.cc: s-attrtab ; @true
2528 s-attrtab : $(MD_DEPS) build/genattrtab$(build_exeext) \
2529 insn-conditions.md
2530 $(RUN_GEN) build/genattrtab$(build_exeext) $(md_file) insn-conditions.md \
2531 -Atmp-attrtab.cc -Dtmp-dfatab.cc -Ltmp-latencytab.cc
2532 $(SHELL) $(srcdir)/../move-if-change tmp-attrtab.cc insn-attrtab.cc
2533 $(SHELL) $(srcdir)/../move-if-change tmp-dfatab.cc insn-dfatab.cc
2534 $(SHELL) $(srcdir)/../move-if-change tmp-latencytab.cc insn-latencytab.cc
2535 $(STAMP) s-attrtab
2537 # genopinit produces two files.
2538 insn-opinit.cc insn-opinit.h: s-opinit ; @true
2539 s-opinit: $(MD_DEPS) build/genopinit$(build_exeext) insn-conditions.md
2540 $(RUN_GEN) build/genopinit$(build_exeext) $(md_file) \
2541 insn-conditions.md -htmp-opinit.h -ctmp-opinit.cc
2542 $(SHELL) $(srcdir)/../move-if-change tmp-opinit.h insn-opinit.h
2543 $(SHELL) $(srcdir)/../move-if-change tmp-opinit.cc insn-opinit.cc
2544 $(STAMP) s-opinit
2546 # gencondmd doesn't use the standard naming convention.
2547 build/gencondmd.cc: s-conditions; @true
2548 s-conditions: $(MD_DEPS) build/genconditions$(build_exeext)
2549 $(RUN_GEN) build/genconditions$(build_exeext) $(md_file) > tmp-condmd.cc
2550 $(SHELL) $(srcdir)/../move-if-change tmp-condmd.cc build/gencondmd.cc
2551 $(STAMP) s-conditions
2553 insn-conditions.md: s-condmd; @true
2554 s-condmd: build/gencondmd$(build_exeext)
2555 $(RUN_GEN) build/gencondmd$(build_exeext) > tmp-cond.md
2556 $(SHELL) $(srcdir)/../move-if-change tmp-cond.md insn-conditions.md
2557 $(STAMP) s-condmd
2560 # These files are generated by running the same generator more than
2561 # once with different options, so they have custom rules. The
2562 # stampfile idiom is the same.
2563 genrtl.h: s-genrtl-h; @true
2565 s-genrtl-h: build/gengenrtl$(build_exeext)
2566 $(RUN_GEN) build/gengenrtl$(build_exeext) > tmp-genrtl.h
2567 $(SHELL) $(srcdir)/../move-if-change tmp-genrtl.h genrtl.h
2568 $(STAMP) s-genrtl-h
2570 insn-modes.cc: s-modes; @true
2571 insn-modes.h: s-modes-h; @true
2572 insn-modes-inline.h: s-modes-inline-h; @true
2573 min-insn-modes.cc: s-modes-m; @true
2575 s-modes: build/genmodes$(build_exeext)
2576 $(RUN_GEN) build/genmodes$(build_exeext) > tmp-modes.cc
2577 $(SHELL) $(srcdir)/../move-if-change tmp-modes.cc insn-modes.cc
2578 $(STAMP) s-modes
2580 s-modes-h: build/genmodes$(build_exeext)
2581 $(RUN_GEN) build/genmodes$(build_exeext) -h > tmp-modes.h
2582 $(SHELL) $(srcdir)/../move-if-change tmp-modes.h insn-modes.h
2583 $(STAMP) s-modes-h
2585 s-modes-inline-h: build/genmodes$(build_exeext)
2586 $(RUN_GEN) build/genmodes$(build_exeext) -i > tmp-modes-inline.h
2587 $(SHELL) $(srcdir)/../move-if-change tmp-modes-inline.h \
2588 insn-modes-inline.h
2589 $(STAMP) s-modes-inline-h
2591 s-modes-m: build/genmodes$(build_exeext)
2592 $(RUN_GEN) build/genmodes$(build_exeext) -m > tmp-min-modes.cc
2593 $(SHELL) $(srcdir)/../move-if-change tmp-min-modes.cc min-insn-modes.cc
2594 $(STAMP) s-modes-m
2596 insn-preds.cc: s-preds; @true
2597 tm-preds.h: s-preds-h; @true
2598 tm-constrs.h: s-constrs-h; @true
2600 .PHONY: mddump
2601 mddump: $(BUILD_RTL) $(MD_DEPS) build/genmddump$(build_exeext)
2602 $(RUN_GEN) build/genmddump$(build_exeext) $(md_file) > tmp-mddump.md
2604 s-preds: $(MD_DEPS) build/genpreds$(build_exeext)
2605 $(RUN_GEN) build/genpreds$(build_exeext) $(md_file) > tmp-preds.cc
2606 $(SHELL) $(srcdir)/../move-if-change tmp-preds.cc insn-preds.cc
2607 $(STAMP) s-preds
2609 s-preds-h: $(MD_DEPS) build/genpreds$(build_exeext)
2610 $(RUN_GEN) build/genpreds$(build_exeext) -h $(md_file) > tmp-preds.h
2611 $(SHELL) $(srcdir)/../move-if-change tmp-preds.h tm-preds.h
2612 $(STAMP) s-preds-h
2614 s-constrs-h: $(MD_DEPS) build/genpreds$(build_exeext)
2615 $(RUN_GEN) build/genpreds$(build_exeext) -c $(md_file) > tmp-constrs.h
2616 $(SHELL) $(srcdir)/../move-if-change tmp-constrs.h tm-constrs.h
2617 $(STAMP) s-constrs-h
2619 s-case-cfn-macros: build/gencfn-macros$(build_exeext)
2620 $(RUN_GEN) build/gencfn-macros$(build_exeext) -c \
2621 > tmp-case-cfn-macros.h
2622 $(SHELL) $(srcdir)/../move-if-change tmp-case-cfn-macros.h \
2623 case-cfn-macros.h
2624 $(STAMP) s-case-cfn-macros
2625 case-cfn-macros.h: s-case-cfn-macros; @true
2627 s-cfn-operators: build/gencfn-macros$(build_exeext)
2628 $(RUN_GEN) build/gencfn-macros$(build_exeext) -o \
2629 > tmp-cfn-operators.pd
2630 $(SHELL) $(srcdir)/../move-if-change tmp-cfn-operators.pd \
2631 cfn-operators.pd
2632 $(STAMP) s-cfn-operators
2633 cfn-operators.pd: s-cfn-operators; @true
2635 target-hooks-def.h: s-target-hooks-def-h; @true
2636 # make sure that when we build info files, the used tm.texi is up to date.
2637 $(srcdir)/doc/tm.texi: s-tm-texi; @true
2639 s-target-hooks-def-h: build/genhooks$(build_exeext)
2640 $(RUN_GEN) build/genhooks$(build_exeext) "Target Hook" \
2641 > tmp-target-hooks-def.h
2642 $(SHELL) $(srcdir)/../move-if-change tmp-target-hooks-def.h \
2643 target-hooks-def.h
2644 $(STAMP) s-target-hooks-def-h
2646 c-family/c-target-hooks-def.h: s-c-target-hooks-def-h; @true
2648 s-c-target-hooks-def-h: build/genhooks$(build_exeext)
2649 $(RUN_GEN) build/genhooks$(build_exeext) "C Target Hook" \
2650 > tmp-c-target-hooks-def.h
2651 $(SHELL) $(srcdir)/../move-if-change tmp-c-target-hooks-def.h \
2652 c-family/c-target-hooks-def.h
2653 $(STAMP) s-c-target-hooks-def-h
2655 common/common-target-hooks-def.h: s-common-target-hooks-def-h; @true
2657 s-common-target-hooks-def-h: build/genhooks$(build_exeext)
2658 $(RUN_GEN) build/genhooks$(build_exeext) "Common Target Hook" \
2659 > tmp-common-target-hooks-def.h
2660 $(SHELL) $(srcdir)/../move-if-change tmp-common-target-hooks-def.h \
2661 common/common-target-hooks-def.h
2662 $(STAMP) s-common-target-hooks-def-h
2664 d/d-target-hooks-def.h: s-d-target-hooks-def-h; @true
2666 s-d-target-hooks-def-h: build/genhooks$(build_exeext)
2667 $(RUN_GEN) build/genhooks$(build_exeext) "D Target Hook" \
2668 > tmp-d-target-hooks-def.h
2669 $(SHELL) $(srcdir)/../move-if-change tmp-d-target-hooks-def.h \
2670 d/d-target-hooks-def.h
2671 $(STAMP) s-d-target-hooks-def-h
2673 # check if someone mistakenly only changed tm.texi.
2674 # We use a different pathname here to avoid a circular dependency.
2675 s-tm-texi: $(srcdir)/doc/../doc/tm.texi
2677 # The tm.texi we want to compare against / check into svn should have
2678 # unix-style line endings. To make this work on MinGW, remove \r.
2679 # \r is not portable to Solaris tr, therefore we have a special
2680 # case for ASCII. We use \r for other encodings like EBCDIC.
2681 s-tm-texi: build/genhooks$(build_exeext) $(srcdir)/doc/tm.texi.in
2682 $(RUN_GEN) build/genhooks$(build_exeext) -d \
2683 $(srcdir)/doc/tm.texi.in > tmp-tm.texi
2684 case `echo X|tr X '\101'` in \
2685 A) tr -d '\015' < tmp-tm.texi > tmp2-tm.texi ;; \
2686 *) tr -d '\r' < tmp-tm.texi > tmp2-tm.texi ;; \
2687 esac
2688 mv tmp2-tm.texi tmp-tm.texi
2689 $(SHELL) $(srcdir)/../move-if-change tmp-tm.texi tm.texi
2690 @if cmp -s $(srcdir)/doc/tm.texi tm.texi; then \
2691 $(STAMP) $@; \
2692 elif test $(srcdir)/doc/tm.texi -nt $(srcdir)/doc/tm.texi.in \
2693 && ( test $(srcdir)/doc/tm.texi -nt $(srcdir)/target.def \
2694 || test $(srcdir)/doc/tm.texi -nt $(srcdir)/c-family/c-target.def \
2695 || test $(srcdir)/doc/tm.texi -nt $(srcdir)/common/common-target.def \
2696 || test $(srcdir)/doc/tm.texi -nt $(srcdir)/d/d-target.def \
2697 ); then \
2698 echo >&2 ; \
2699 echo You should edit $(srcdir)/doc/tm.texi.in rather than $(srcdir)/doc/tm.texi . >&2 ; \
2700 false; \
2701 else \
2702 echo >&2 ; \
2703 echo Verify that you have permission to grant a GFDL license for all >&2 ; \
2704 echo new text in $(objdir)/tm.texi, then copy it to $(srcdir)/doc/tm.texi. >&2 ; \
2705 false; \
2708 $(GIMPLE_MATCH_PD_SEQ_SRC): s-gimple-match gimple-match-head.cc; @true
2709 gimple-match-auto.h: s-gimple-match; @true
2710 $(GENERIC_MATCH_PD_SEQ_SRC): s-generic-match generic-match-head.cc; @true
2711 generic-match-auto.h: s-generic-match; @true
2713 s-gimple-match: build/genmatch$(build_exeext) \
2714 $(srcdir)/match.pd cfn-operators.pd
2715 $(RUN_GEN) build/genmatch$(build_exeext) --gimple \
2716 --header=tmp-gimple-match-auto.h --include=gimple-match-auto.h \
2717 $(srcdir)/match.pd $(patsubst %, tmp-%, $(GIMPLE_MATCH_PD_SEQ_SRC))
2718 $(foreach id, $(MATCH_SPLITS_SEQ), \
2719 $(SHELL) $(srcdir)/../move-if-change tmp-gimple-match-$(id).cc \
2720 gimple-match-$(id).cc;)
2721 $(SHELL) $(srcdir)/../move-if-change tmp-gimple-match-auto.h \
2722 gimple-match-auto.h
2723 $(STAMP) s-gimple-match
2725 s-generic-match: build/genmatch$(build_exeext) \
2726 $(srcdir)/match.pd cfn-operators.pd
2727 $(RUN_GEN) build/genmatch$(build_exeext) --generic \
2728 --header=tmp-generic-match-auto.h --include=generic-match-auto.h \
2729 $(srcdir)/match.pd $(patsubst %, tmp-%, $(GENERIC_MATCH_PD_SEQ_SRC))
2730 $(foreach id, $(MATCH_SPLITS_SEQ), \
2731 $(SHELL) $(srcdir)/../move-if-change tmp-generic-match-$(id).cc \
2732 generic-match-$(id).cc;)
2733 $(SHELL) $(srcdir)/../move-if-change tmp-generic-match-auto.h \
2734 generic-match-auto.h
2735 $(STAMP) s-generic-match
2737 GTFILES = $(CPPLIB_H) $(srcdir)/input.h $(srcdir)/coretypes.h \
2738 $(host_xm_file_list) \
2739 $(OPTIONS_H_EXTRA) \
2740 $(tm_file_list) $(HASHTAB_H) $(SPLAY_TREE_H) $(srcdir)/bitmap.h \
2741 $(srcdir)/wide-int.h $(srcdir)/alias.h \
2742 $(srcdir)/coverage.cc $(srcdir)/rtl.h \
2743 $(srcdir)/optabs.h $(srcdir)/tree.h $(srcdir)/tree-core.h \
2744 $(srcdir)/libfuncs.h $(SYMTAB_H) \
2745 $(srcdir)/real.h $(srcdir)/function.h $(srcdir)/insn-addr.h $(srcdir)/hwint.h \
2746 $(srcdir)/fixed-value.h \
2747 $(srcdir)/function-abi.h \
2748 $(srcdir)/output.h $(srcdir)/cfgloop.h $(srcdir)/cfg.h $(srcdir)/profile-count.h \
2749 $(srcdir)/cselib.h $(srcdir)/basic-block.h $(srcdir)/ipa-ref.h $(srcdir)/cgraph.h \
2750 $(srcdir)/symtab-thunks.h $(srcdir)/symtab-thunks.cc \
2751 $(srcdir)/symtab-clones.h \
2752 $(srcdir)/reload.h $(srcdir)/caller-save.cc $(srcdir)/symtab.cc \
2753 $(srcdir)/alias.cc $(srcdir)/bitmap.cc $(srcdir)/cselib.cc $(srcdir)/cgraph.cc \
2754 $(srcdir)/ipa-prop.cc $(srcdir)/ipa-cp.cc $(srcdir)/ipa-utils.h \
2755 $(srcdir)/ipa-param-manipulation.h $(srcdir)/ipa-sra.cc \
2756 $(srcdir)/ipa-modref.h $(srcdir)/ipa-modref.cc \
2757 $(srcdir)/ipa-modref-tree.h \
2758 $(srcdir)/signop.h \
2759 $(srcdir)/diagnostic-spec.h $(srcdir)/diagnostic-spec.cc \
2760 $(srcdir)/dwarf2out.h \
2761 $(srcdir)/dwarf2asm.cc \
2762 $(srcdir)/dwarf2cfi.cc \
2763 $(srcdir)/dwarf2ctf.cc \
2764 $(srcdir)/dwarf2out.cc \
2765 $(srcdir)/ctfc.h \
2766 $(srcdir)/ctfout.cc \
2767 $(srcdir)/btfout.cc \
2768 $(srcdir)/tree-vect-generic.cc \
2769 $(srcdir)/gimple-isel.cc \
2770 $(srcdir)/dojump.cc $(srcdir)/emit-rtl.h \
2771 $(srcdir)/emit-rtl.cc $(srcdir)/except.h $(srcdir)/explow.cc $(srcdir)/expr.cc \
2772 $(srcdir)/expr.h \
2773 $(srcdir)/function.cc $(srcdir)/except.cc \
2774 $(srcdir)/ggc-tests.cc \
2775 $(srcdir)/gcse.cc $(srcdir)/godump.cc \
2776 $(srcdir)/lists.cc $(srcdir)/optabs-libfuncs.cc \
2777 $(srcdir)/profile.cc $(srcdir)/mcf.cc \
2778 $(srcdir)/reg-stack.cc $(srcdir)/cfgrtl.cc \
2779 $(srcdir)/stor-layout.cc \
2780 $(srcdir)/stringpool.cc $(srcdir)/tree.cc $(srcdir)/varasm.cc \
2781 $(srcdir)/gimple.h \
2782 $(srcdir)/gimple-ssa.h \
2783 $(srcdir)/tree-ssanames.cc $(srcdir)/tree-eh.cc $(srcdir)/tree-ssa-address.cc \
2784 $(srcdir)/tree-cfg.cc $(srcdir)/tree-ssa-loop-ivopts.cc \
2785 $(srcdir)/tree-dfa.cc \
2786 $(srcdir)/tree-iterator.cc $(srcdir)/gimple-expr.cc \
2787 $(srcdir)/tree-chrec.h \
2788 $(srcdir)/tree-scalar-evolution.cc \
2789 $(srcdir)/tree-ssa-operands.h \
2790 $(srcdir)/tree-profile.cc $(srcdir)/tree-nested.cc \
2791 $(srcdir)/omp-offload.h \
2792 $(srcdir)/omp-general.cc \
2793 $(srcdir)/omp-low.cc \
2794 $(srcdir)/targhooks.cc $(out_file) $(srcdir)/passes.cc \
2795 $(srcdir)/cgraphclones.cc \
2796 $(srcdir)/tree-phinodes.cc \
2797 $(srcdir)/tree-ssa-alias.h \
2798 $(srcdir)/tree-ssanames.h \
2799 $(srcdir)/tree-vrp.h \
2800 $(srcdir)/value-range.h \
2801 $(srcdir)/value-range-storage.h \
2802 $(srcdir)/ipa-prop.h \
2803 $(srcdir)/trans-mem.cc \
2804 $(srcdir)/lto-streamer.h \
2805 $(srcdir)/target-globals.h \
2806 $(srcdir)/ipa-predicate.h \
2807 $(srcdir)/ipa-fnsummary.h \
2808 $(srcdir)/vtable-verify.cc \
2809 $(srcdir)/asan.cc \
2810 $(srcdir)/ubsan.cc \
2811 $(srcdir)/tsan.cc \
2812 $(srcdir)/sanopt.cc \
2813 $(srcdir)/sancov.cc \
2814 $(srcdir)/ipa-devirt.cc \
2815 $(srcdir)/internal-fn.h \
2816 $(srcdir)/calls.cc \
2817 $(srcdir)/omp-general.h \
2818 $(srcdir)/analyzer/analyzer-language.cc \
2819 @all_gtfiles@
2821 # Compute the list of GT header files from the corresponding C sources,
2822 # possibly nested within config or language subdirectories. Match gengtype's
2823 # behavior in this respect: gt-LANG-file.h for "file" anywhere within a LANG
2824 # language subdir, gt-file.h otherwise (no subdir indication for config/
2825 # related sources).
2827 GTFILES_H = $(subst /,-, \
2828 $(shell echo $(patsubst $(srcdir)/%,gt-%, \
2829 $(patsubst %.cc,%.h, \
2830 $(filter %.cc, $(GTFILES)))) \
2831 | sed -e "s|/[^ ]*/|/|g" -e "s|gt-config/|gt-|g"))
2833 GTFILES_LANG_H = $(patsubst [%], gtype-%.h, $(filter [%], $(GTFILES)))
2834 ALL_GTFILES_H := $(sort $(GTFILES_H) $(GTFILES_LANG_H))
2836 # $(GTFILES) may be too long to put on a command line, so we have to
2837 # write it out to a file (taking care not to do that in a way that
2838 # overflows a command line!) and then have gengtype read the file in.
2840 $(ALL_GTFILES_H) gtype-desc.cc gtype-desc.h gtype.state: s-gtype ; @true
2842 ### Common flags to gengtype [e.g. -v or -B backupdir]
2843 GENGTYPE_FLAGS=
2845 gtyp-input.list: s-gtyp-input ; @true
2846 s-gtyp-input: Makefile
2847 @: $(call write_entries_to_file,$(GTFILES),tmp-gi.list)
2848 $(SHELL) $(srcdir)/../move-if-change tmp-gi.list gtyp-input.list
2849 $(STAMP) s-gtyp-input
2851 s-gtype: $(EXTRA_GTYPE_DEPS) build/gengtype$(build_exeext) \
2852 $(filter-out [%], $(GTFILES)) gtyp-input.list
2853 # First, parse all files and save a state file.
2854 $(RUN_GEN) build/gengtype$(build_exeext) $(GENGTYPE_FLAGS) \
2855 -S $(srcdir) -I gtyp-input.list -w tmp-gtype.state
2856 # Second, read the state file and generate all files. This ensure that
2857 # gtype.state is correctly read:
2858 $(SHELL) $(srcdir)/../move-if-change tmp-gtype.state gtype.state
2859 $(RUN_GEN) build/gengtype$(build_exeext) $(GENGTYPE_FLAGS) \
2860 -r gtype.state
2861 $(STAMP) s-gtype
2863 generated_files = config.h tm.h $(TM_P_H) $(TM_D_H) $(TM_H) multilib.h \
2864 $(simple_generated_h) specs.h \
2865 tree-check.h genrtl.h insn-modes.h insn-modes-inline.h \
2866 tm-preds.h tm-constrs.h \
2867 $(ALL_GTFILES_H) gtype-desc.cc gtype-desc.h version.h \
2868 options.h target-hooks-def.h insn-opinit.h \
2869 common/common-target-hooks-def.h pass-instances.def \
2870 $(GIMPLE_MATCH_PD_SEQ_SRC) $(GENERIC_MATCH_PD_SEQ_SRC) \
2871 gimple-match-auto.h generic-match-auto.h \
2872 c-family/c-target-hooks-def.h d/d-target-hooks-def.h \
2873 case-cfn-macros.h \
2874 cfn-operators.pd omp-device-properties.h
2877 # How to compile object files to run on the build machine.
2879 build/%.o : # dependencies provided by explicit rule later
2880 $(COMPILER_FOR_BUILD) -c $(BUILD_COMPILERFLAGS) $(BUILD_CPPFLAGS) \
2881 -o $@ $<
2883 # Header dependencies for the programs that generate source code.
2884 # These are library modules...
2885 build/errors.o : errors.cc $(BCONFIG_H) $(SYSTEM_H) errors.h
2886 build/gensupport.o: gensupport.cc $(BCONFIG_H) $(SYSTEM_H) \
2887 $(CORETYPES_H) $(GTM_H) $(RTL_BASE_H) $(OBSTACK_H) errors.h \
2888 $(HASHTAB_H) $(READ_MD_H) $(GENSUPPORT_H) $(HASH_TABLE_H)
2889 build/ggc-none.o : ggc-none.cc $(BCONFIG_H) $(SYSTEM_H) $(CORETYPES_H) \
2890 $(GGC_H)
2891 build/min-insn-modes.o : min-insn-modes.cc $(BCONFIG_H) $(SYSTEM_H) \
2892 $(CORETYPES_H)
2893 build/print-rtl.o: print-rtl.cc $(BCONFIG_H) $(SYSTEM_H) $(CORETYPES_H) \
2894 $(GTM_H) $(RTL_BASE_H)
2895 build/read-md.o: read-md.cc $(BCONFIG_H) $(SYSTEM_H) $(CORETYPES_H) \
2896 $(HASHTAB_H) errors.h $(READ_MD_H)
2897 build/read-rtl.o: read-rtl.cc $(BCONFIG_H) $(SYSTEM_H) $(CORETYPES_H) \
2898 $(GTM_H) $(RTL_BASE_H) $(OBSTACK_H) $(HASHTAB_H) $(READ_MD_H) \
2899 $(GENSUPPORT_H)
2900 build/rtl.o: rtl.cc $(BCONFIG_H) $(CORETYPES_H) $(GTM_H) $(SYSTEM_H) \
2901 $(RTL_H) $(GGC_H) errors.h
2902 build/vec.o : vec.cc $(BCONFIG_H) $(SYSTEM_H) $(CORETYPES_H) $(VEC_H) \
2903 $(GGC_H) toplev.h $(DIAGNOSTIC_CORE_H) $(HASH_TABLE_H)
2904 build/hash-table.o : hash-table.cc $(BCONFIG_H) $(SYSTEM_H) \
2905 $(CORETYPES_H) $(HASH_TABLE_H) $(GGC_H) toplev.h $(DIAGNOSTIC_CORE_H)
2906 build/sort.o : sort.cc $(BCONFIG_H) $(SYSTEM_H)
2907 build/inchash.o : inchash.cc $(BCONFIG_H) $(SYSTEM_H) $(CORETYPES_H) \
2908 $(HASHTAB_H) inchash.h
2909 build/gencondmd.o : build/gencondmd.cc $(BCONFIG_H) $(SYSTEM_H) \
2910 $(CORETYPES_H) $(GTM_H) insn-constants.h \
2911 $(filter-out insn-flags.h, $(RTL_H) $(TM_P_H) $(FUNCTION_H) $(REGS_H) \
2912 $(RECOG_H) output.h $(FLAGS_H) $(RESOURCE_H) toplev.h $(DIAGNOSTIC_CORE_H) reload.h \
2913 $(EXCEPT_H) tm-constrs.h)
2914 # This pulls in tm-pred.h which contains inline functions wrapping up
2915 # predicates from the back-end so those functions must be discarded.
2916 # No big deal since gencondmd.cc is a dummy file for non-GCC compilers.
2917 build/gencondmd.o : \
2918 BUILD_CFLAGS := $(filter-out -fkeep-inline-functions, $(BUILD_CFLAGS))
2920 # ...these are the programs themselves.
2921 build/genattr.o : genattr.cc $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
2922 $(CORETYPES_H) $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H)
2923 build/genattr-common.o : genattr-common.cc $(RTL_BASE_H) $(BCONFIG_H) \
2924 $(SYSTEM_H) $(CORETYPES_H) $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H)
2925 build/genattrtab.o : genattrtab.cc $(RTL_BASE_H) $(OBSTACK_H) \
2926 $(BCONFIG_H) $(SYSTEM_H) $(CORETYPES_H) $(GTM_H) errors.h $(GGC_H) \
2927 $(READ_MD_H) $(GENSUPPORT_H) $(FNMATCH_H)
2928 build/genautomata.o : genautomata.cc $(RTL_BASE_H) $(OBSTACK_H) \
2929 $(BCONFIG_H) $(SYSTEM_H) $(CORETYPES_H) $(GTM_H) errors.h $(VEC_H) \
2930 $(HASHTAB_H) $(GENSUPPORT_H) $(FNMATCH_H)
2931 build/gencheck.o : gencheck.cc all-tree.def $(BCONFIG_H) $(GTM_H) \
2932 $(SYSTEM_H) $(CORETYPES_H) tree.def c-family/c-common.def \
2933 $(lang_tree_files) gimple.def
2934 build/genchecksum.o : genchecksum.cc $(BCONFIG_H) $(SYSTEM_H) $(MD5_H)
2935 build/gencodes.o : gencodes.cc $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
2936 $(CORETYPES_H) $(GTM_H) errors.h $(GENSUPPORT_H)
2937 build/genconditions.o : genconditions.cc $(RTL_BASE_H) $(BCONFIG_H) \
2938 $(SYSTEM_H) $(CORETYPES_H) $(GTM_H) errors.h $(HASHTAB_H) \
2939 $(READ_MD_H) $(GENSUPPORT_H)
2940 build/genconfig.o : genconfig.cc $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
2941 $(CORETYPES_H) $(GTM_H) errors.h $(GENSUPPORT_H)
2942 build/genconstants.o : genconstants.cc $(BCONFIG_H) $(SYSTEM_H) \
2943 $(CORETYPES_H) errors.h $(READ_MD_H)
2944 build/genemit.o : genemit.cc $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
2945 $(CORETYPES_H) $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) internal-fn.def
2946 build/genenums.o : genenums.cc $(BCONFIG_H) $(SYSTEM_H) \
2947 $(CORETYPES_H) errors.h $(READ_MD_H)
2948 build/genextract.o : genextract.cc $(RTL_BASE_H) $(BCONFIG_H) \
2949 $(SYSTEM_H) $(CORETYPES_H) $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H)
2950 build/genflags.o : genflags.cc $(RTL_BASE_H) $(OBSTACK_H) $(BCONFIG_H) \
2951 $(SYSTEM_H) $(CORETYPES_H) $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H)
2952 build/gentarget-def.o : gentarget-def.cc $(BCONFIG_H) $(SYSTEM_H) \
2953 $(CORETYPES_H) $(GTM_H) $(RTL_BASE_H) errors.h $(READ_MD_H) \
2954 $(GENSUPPORT_H) $(HASH_TABLE_H) target-insns.def
2955 build/gengenrtl.o : gengenrtl.cc $(BCONFIG_H) $(SYSTEM_H) rtl.def
2957 # The gengtype generator program is special: Two versions are built.
2958 # One is for the build machine, and one is for the host to allow
2959 # plugins to define their types and generate the supporting GGC
2960 # datastructures and routines with GTY markers.
2961 # The host object files depend on CONFIG_H, and the build objects
2962 # on BCONFIG_H. For the build objects, add -DGENERATOR_FILE manually,
2963 # the build-%: rule doesn't apply to them.
2965 GENGTYPE_OBJS = gengtype.o gengtype-parse.o gengtype-state.o \
2966 gengtype-lex.o errors.o
2968 gengtype-lex.o build/gengtype-lex.o : gengtype-lex.cc gengtype.h $(SYSTEM_H)
2969 CFLAGS-gengtype-lex.o += -DHOST_GENERATOR_FILE
2970 build/gengtype-lex.o: $(BCONFIG_H)
2972 gengtype-parse.o build/gengtype-parse.o : gengtype-parse.cc gengtype.h \
2973 $(SYSTEM_H)
2974 CFLAGS-gengtype-parse.o += -DHOST_GENERATOR_FILE
2975 build/gengtype-parse.o: $(BCONFIG_H)
2977 gengtype-state.o build/gengtype-state.o: gengtype-state.cc $(SYSTEM_H) \
2978 gengtype.h errors.h version.h $(HASHTAB_H) $(OBSTACK_H) \
2979 $(XREGEX_H)
2980 CFLAGS-gengtype-state.o += -DHOST_GENERATOR_FILE
2981 build/gengtype-state.o: $(BCONFIG_H)
2982 gengtype.o build/gengtype.o : gengtype.cc $(SYSTEM_H) gengtype.h \
2983 rtl.def insn-notes.def errors.h version.h \
2984 $(HASHTAB_H) $(OBSTACK_H) $(XREGEX_H)
2985 CFLAGS-gengtype.o += -DHOST_GENERATOR_FILE
2986 build/gengtype.o: $(BCONFIG_H)
2988 CFLAGS-errors.o += -DHOST_GENERATOR_FILE
2990 build/genmddeps.o: genmddeps.cc $(BCONFIG_H) $(SYSTEM_H) $(CORETYPES_H) \
2991 errors.h $(READ_MD_H)
2992 build/genmodes.o : genmodes.cc $(BCONFIG_H) $(SYSTEM_H) errors.h \
2993 $(HASHTAB_H) machmode.def $(extra_modes_file)
2994 build/genopinit.o : genopinit.cc $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
2995 $(CORETYPES_H) $(GTM_H) errors.h $(GENSUPPORT_H) optabs.def
2996 build/genoutput.o : genoutput.cc $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
2997 $(CORETYPES_H) $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H)
2998 build/genpeep.o : genpeep.cc $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
2999 $(CORETYPES_H) $(GTM_H) errors.h $(GENSUPPORT_H) toplev.h \
3000 $(DIAGNOSTIC_CORE_H)
3001 build/genpreds.o : genpreds.cc $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
3002 $(CORETYPES_H) $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) $(OBSTACK_H)
3003 build/genrecog.o : genrecog.cc $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
3004 $(CORETYPES_H) $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) \
3005 $(HASH_TABLE_H) inchash.h
3006 build/genhooks.o : genhooks.cc $(TARGET_DEF) $(C_TARGET_DEF) \
3007 $(COMMON_TARGET_DEF) $(D_TARGET_DEF) $(BCONFIG_H) $(SYSTEM_H) errors.h
3008 build/genmddump.o : genmddump.cc $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
3009 $(CORETYPES_H) $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H)
3010 build/genmatch.o : genmatch.cc $(BCONFIG_H) $(SYSTEM_H) $(CORETYPES_H) \
3011 errors.h $(HASH_TABLE_H) hash-map.h $(GGC_H) is-a.h ordered-hash-map.h \
3012 tree.def builtins.def internal-fn.def case-cfn-macros.h $(CPPLIB_H)
3013 build/gencfn-macros.o : gencfn-macros.cc $(BCONFIG_H) $(SYSTEM_H) \
3014 $(CORETYPES_H) errors.h $(HASH_TABLE_H) hash-set.h builtins.def \
3015 internal-fn.def
3017 # Compile the programs that generate insn-* from the machine description.
3018 # They are compiled with $(COMPILER_FOR_BUILD), and associated libraries,
3019 # since they need to run on this machine
3020 # even if GCC is being compiled to run on some other machine.
3022 # All these programs use the RTL reader ($(BUILD_RTL)).
3023 genprogrtl = attr attr-common attrtab automata codes conditions config emit \
3024 extract flags mddump opinit output peep preds recog target-def
3025 $(genprogrtl:%=build/gen%$(build_exeext)): $(BUILD_RTL)
3027 # All these programs use the MD reader ($(BUILD_MD)).
3028 genprogmd = $(genprogrtl) mddeps constants enums
3029 $(genprogmd:%=build/gen%$(build_exeext)): $(BUILD_MD)
3031 # All these programs need to report errors.
3032 genprogerr = $(genprogmd) genrtl modes gtype hooks cfn-macros condmd
3033 $(genprogerr:%=build/gen%$(build_exeext)): $(BUILD_ERRORS)
3035 # Remaining build programs.
3036 genprog = $(genprogerr) check checksum match
3038 # These programs need libs over and above what they get from the above list.
3039 build/genautomata$(build_exeext) : BUILD_LIBS += -lm
3041 build/genrecog$(build_exeext) : build/hash-table.o build/inchash.o
3042 build/gencfn-macros$(build_exeext) : build/hash-table.o build/vec.o \
3043 build/ggc-none.o build/sort.o
3045 # For stage1 and when cross-compiling use the build libcpp which is
3046 # built with NLS disabled. For stage2+ use the host library and
3047 # its dependencies.
3048 ifeq ($(build_objdir),$(build_libobjdir))
3049 BUILD_CPPLIB = $(build_libobjdir)/libcpp/libcpp.a
3050 else
3051 BUILD_CPPLIB = $(CPPLIB) $(LIBIBERTY)
3052 build/genmatch$(build_exeext): BUILD_LIBDEPS += $(LIBINTL_DEP) $(LIBICONV_DEP)
3053 build/genmatch$(build_exeext): BUILD_LIBS += $(LIBINTL) $(LIBICONV)
3054 endif
3056 build/genmatch$(build_exeext) : $(BUILD_CPPLIB) \
3057 $(BUILD_ERRORS) build/vec.o build/hash-table.o build/sort.o
3059 # These programs are not linked with the MD reader.
3060 build/gengtype$(build_exeext) : build/gengtype-lex.o build/gengtype-parse.o \
3061 build/gengtype-state.o build/errors.o
3063 gengtype$(exeext) : gengtype.o gengtype-lex.o gengtype-parse.o \
3064 gengtype-state.o errors.o $(LIBDEPS)
3065 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ \
3066 $(filter-out $(LIBDEPS), $^) $(LIBS)
3068 # Rule for the generator programs:
3069 $(genprog:%=build/gen%$(build_exeext)): build/gen%$(build_exeext): build/gen%.o $(BUILD_LIBDEPS)
3070 +$(LINKER_FOR_BUILD) $(BUILD_LINKERFLAGS) $(BUILD_LDFLAGS) -o $@ \
3071 $(filter-out $(BUILD_LIBDEPS), $^) $(BUILD_LIBS)
3073 omp-general.o: omp-device-properties.h
3075 omp_device_properties = @omp_device_properties@
3076 omp-device-properties.h: s-omp-device-properties-h ; @true
3077 s-omp-device-properties-h: @omp_device_property_deps@
3078 -rm -f tmp-omp-device-properties.h; \
3079 for kind in kind arch isa; do \
3080 echo 'const char omp_offload_device_'$${kind}'[] = ' \
3081 >> tmp-omp-device-properties.h; \
3082 for prop in none $(omp_device_properties); do \
3083 [ "$$prop" = "none" ] && continue; \
3084 tgt=`echo "$$prop" | sed 's/=.*$$//'`; \
3085 props=`echo "$$prop" | sed 's/.*=//'`; \
3086 echo "\"$$tgt\\0\"" >> tmp-omp-device-properties.h; \
3087 sed -n 's/^'$${kind}': //p' $${props} \
3088 | sed 's/[[:blank:]]/ /g;s/ */ /g;s/^ //;s/ $$//;s/ /\\0/g;s/^/"/;s/$$/\\0\\0"/' \
3089 >> tmp-omp-device-properties.h; \
3090 done; \
3091 echo '"";' >> tmp-omp-device-properties.h; \
3092 done; \
3093 $(SHELL) $(srcdir)/../move-if-change tmp-omp-device-properties.h \
3094 omp-device-properties.h
3095 $(STAMP) s-omp-device-properties-h
3097 # Generated source files for gengtype. Prepend inclusion of
3098 # config.h/bconfig.h because AIX requires _LARGE_FILES to be defined before
3099 # any system header is included.
3100 gengtype-lex.cc : gengtype-lex.l
3101 -$(FLEX) $(FLEXFLAGS) -o$@ $< && { \
3102 echo '#ifdef HOST_GENERATOR_FILE' > $@.tmp; \
3103 echo '#include "config.h"' >> $@.tmp; \
3104 echo '#else' >> $@.tmp; \
3105 echo '#include "bconfig.h"' >> $@.tmp; \
3106 echo '#endif' >> $@.tmp; \
3107 cat $@ >> $@.tmp; \
3108 mv $@.tmp $@; \
3112 # Remake internationalization support.
3113 CFLAGS-intl.o += -DLOCALEDIR=\"$(localedir)\"
3116 # Remake cpp.
3118 PREPROCESSOR_DEFINES = \
3119 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
3120 -DFIXED_INCLUDE_DIR=\"$(libsubdir)/include-fixed\" \
3121 -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
3122 -DGPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT=$(gcc_gxx_include_dir_add_sysroot) \
3123 -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/$(target_noncanonical)\" \
3124 -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/backward\" \
3125 -DGPLUSPLUS_LIBCXX_INCLUDE_DIR=\"$(gcc_gxx_libcxx_include_dir)\" \
3126 -DGPLUSPLUS_LIBCXX_INCLUDE_DIR_ADD_SYSROOT=$(gcc_gxx_libcxx_include_dir_add_sysroot) \
3127 -DLOCAL_INCLUDE_DIR=\"$(local_includedir)\" \
3128 -DCROSS_INCLUDE_DIR=\"$(CROSS_SYSTEM_HEADER_DIR)\" \
3129 -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \
3130 -DNATIVE_SYSTEM_HEADER_DIR=\"$(NATIVE_SYSTEM_HEADER_DIR)\" \
3131 -DPREFIX=\"$(prefix)/\" \
3132 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc/\" \
3133 @TARGET_SYSTEM_ROOT_DEFINE@
3135 CFLAGS-cppbuiltin.o += $(PREPROCESSOR_DEFINES) -DBASEVER=$(BASEVER_s)
3136 cppbuiltin.o: $(BASEVER)
3138 CFLAGS-cppdefault.o += $(PREPROCESSOR_DEFINES)
3140 # Note for the stamp targets, we run the program `true' instead of
3141 # having an empty command (nothing following the semicolon).
3143 # genversion.cc is run on the build machine to generate version.h
3144 CFLAGS-build/genversion.o += -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \
3145 -DREVISION=$(REVISION_s) \
3146 -DDEVPHASE=$(DEVPHASE_s) -DPKGVERSION=$(PKGVERSION_s) \
3147 -DBUGURL=$(BUGURL_s)
3149 build/genversion.o: genversion.cc $(BCONFIG_H) $(SYSTEM_H) $(srcdir)/DATESTAMP
3151 build/genversion$(build_exeext): build/genversion.o
3152 +$(LINKER_FOR_BUILD) $(BUILD_LINKERFLAGS) $(BUILD_LDFLAGS) \
3153 build/genversion.o -o $@
3155 version.h: s-version; @true
3156 s-version: build/genversion$(build_exeext)
3157 build/genversion$(build_exeext) > tmp-version.h
3158 $(SHELL) $(srcdir)/../move-if-change tmp-version.h version.h
3159 $(STAMP) s-version
3161 # gcov.o needs $(ZLIBINC) added to the include flags.
3162 CFLAGS-gcov.o += $(ZLIBINC)
3164 GCOV_OBJS = gcov.o json.o
3165 gcov$(exeext): $(GCOV_OBJS) $(LIBDEPS)
3166 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) $(GCOV_OBJS) \
3167 hash-table.o ggc-none.o $(LIBS) $(ZLIB) -o $@
3168 GCOV_DUMP_OBJS = gcov-dump.o
3169 gcov-dump$(exeext): $(GCOV_DUMP_OBJS) $(LIBDEPS)
3170 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) $(GCOV_DUMP_OBJS) \
3171 hash-table.o ggc-none.o\
3172 $(LIBS) -o $@
3174 GCOV_TOOL_DEP_FILES = $(srcdir)/../libgcc/libgcov-util.c gcov-io.cc $(GCOV_IO_H) \
3175 $(srcdir)/../libgcc/libgcov-driver.c $(srcdir)/../libgcc/libgcov-driver-system.c \
3176 $(srcdir)/../libgcc/libgcov-merge.c $(srcdir)/../libgcc/libgcov.h \
3177 $(SYSTEM_H) coretypes.h $(TM_H) $(CONFIG_H) version.h intl.h $(DIAGNOSTIC_H)
3178 libgcov-util.o: $(srcdir)/../libgcc/libgcov-util.c $(GCOV_TOOL_DEP_FILES)
3179 +$(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -o $@ $<
3180 libgcov-driver-tool.o: $(srcdir)/../libgcc/libgcov-driver.c $(GCOV_TOOL_DEP_FILES)
3181 +$(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
3182 -DIN_GCOV_TOOL=1 -o $@ $<
3183 libgcov-merge-tool.o: $(srcdir)/../libgcc/libgcov-merge.c $(GCOV_TOOL_DEP_FILES)
3184 +$(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
3185 -DIN_GCOV_TOOL=1 -o $@ $<
3186 GCOV_TOOL_OBJS = gcov-tool.o libgcov-util.o libgcov-driver-tool.o libgcov-merge-tool.o
3187 gcov-tool$(exeext): $(GCOV_TOOL_OBJS) $(LIBDEPS)
3188 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) $(GCOV_TOOL_OBJS) $(LIBS) -o $@
3190 # Build the include directories. The stamp files are stmp-* rather than
3191 # s-* so that mostlyclean does not force the include directory to
3192 # be rebuilt.
3194 # Build the include directories.
3195 stmp-int-hdrs: $(STMP_FIXINC) $(T_GLIMITS_H) $(T_STDINT_GCC_H) $(USER_H) fixinc_list
3196 # Copy in the headers provided with gcc.
3198 # The sed command gets just the last file name component;
3199 # this is necessary because VPATH could add a dirname.
3200 # Using basename would be simpler, but some systems don't have it.
3202 # The touch command is here to workaround an AIX/Linux NFS bug.
3204 # The move-if-change + cp -p twists for limits.h are intended to preserve
3205 # the time stamp when we regenerate, to prevent pointless rebuilds during
3206 # e.g. install-no-fixedincludes.
3207 -if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
3208 -if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
3209 for file in .. $(USER_H); do \
3210 if [ X$$file != X.. ]; then \
3211 realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
3212 $(STAMP) include/$$realfile; \
3213 rm -f include/$$realfile; \
3214 cp $$file include; \
3215 chmod a+r include/$$realfile; \
3216 fi; \
3217 done
3218 for file in .. $(USER_H_INC_NEXT_PRE); do \
3219 if [ X$$file != X.. ]; then \
3220 mv include/$$file include/x_$$file; \
3221 echo "#include_next <$$file>" >include/$$file; \
3222 cat include/x_$$file >>include/$$file; \
3223 rm -f include/x_$$file; \
3224 chmod a+r include/$$file; \
3225 fi; \
3226 done
3227 for file in .. $(USER_H_INC_NEXT_POST); do \
3228 if [ X$$file != X.. ]; then \
3229 echo "#include_next <$$file>" >>include/$$file; \
3230 chmod a+r include/$$file; \
3231 fi; \
3232 done
3233 rm -f include/stdint.h
3234 if [ $(USE_GCC_STDINT) = wrap ]; then \
3235 rm -f include/stdint-gcc.h; \
3236 cp $(srcdir)/ginclude/stdint-gcc.h include/stdint-gcc.h; \
3237 chmod a+r include/stdint-gcc.h; \
3238 cp $(srcdir)/ginclude/stdint-wrap.h include/stdint.h; \
3239 chmod a+r include/stdint.h; \
3240 elif [ $(USE_GCC_STDINT) = provide ]; then \
3241 cp $(T_STDINT_GCC_H) include/stdint.h; \
3242 chmod a+r include/stdint.h; \
3244 set -e; for ml in `cat fixinc_list`; do \
3245 sysroot_headers_suffix=`echo $${ml} | sed -e 's/;.*$$//'`; \
3246 multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \
3247 include_dir=include$${multi_dir}; \
3248 if $(LIMITS_H_TEST) ; then \
3249 cat $(srcdir)/limitx.h $(T_GLIMITS_H) $(srcdir)/limity.h > tmp-xlimits.h; \
3250 else \
3251 cat $(T_GLIMITS_H) > tmp-xlimits.h; \
3252 fi; \
3253 $(mkinstalldirs) $${include_dir}; \
3254 chmod a+rx $${include_dir} || true; \
3255 $(SHELL) $(srcdir)/../move-if-change \
3256 tmp-xlimits.h tmp-limits.h; \
3257 rm -f $${include_dir}/limits.h; \
3258 cp -p tmp-limits.h $${include_dir}/limits.h; \
3259 chmod a+r $${include_dir}/limits.h; \
3260 cp $(srcdir)/gsyslimits.h $${include_dir}/syslimits.h; \
3261 done
3262 # Install the README
3263 if [ x$(STMP_FIXINC) != x ]; then \
3264 rm -f include-fixed/README; \
3265 cp $(srcdir)/../fixincludes/README-fixinc include-fixed/README; \
3266 chmod a+r include-fixed/README; \
3268 $(STAMP) $@
3270 .PHONY: install-gcc-tooldir
3271 install-gcc-tooldir:
3272 $(mkinstalldirs) $(DESTDIR)$(gcc_tooldir)
3274 macro_list: s-macro_list; @true
3275 s-macro_list : $(GCC_PASSES) cc1$(exeext)
3276 echo | $(GCC_FOR_TARGET) -nostdinc -E -dM - | \
3277 sed -n -e 's/^#define \([^_][a-zA-Z0-9_]*\).*/\1/p' \
3278 -e 's/^#define \(_[^_A-Z][a-zA-Z0-9_]*\).*/\1/p' | \
3279 sort -u > tmp-macro_list
3280 $(SHELL) $(srcdir)/../move-if-change tmp-macro_list macro_list
3281 $(STAMP) s-macro_list
3283 fixinc_list: s-fixinc_list; @true
3284 s-fixinc_list : $(GCC_PASSES)
3285 # Build up a list of multilib directories and corresponding sysroot
3286 # suffixes, in form sysroot;multilib.
3287 if $(GCC_FOR_TARGET) -print-sysroot-headers-suffix > /dev/null 2>&1; then \
3288 set -e; for ml in `$(GCC_FOR_TARGET) -print-multi-lib`; do \
3289 multi_dir=`echo $${ml} | sed -e 's/;.*$$//'`; \
3290 flags=`echo $${ml} | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
3291 sfx=`$(GCC_FOR_TARGET) $${flags} -print-sysroot-headers-suffix`; \
3292 if [ "$${multi_dir}" = "." ]; \
3293 then multi_dir=""; \
3294 else \
3295 multi_dir=/$${multi_dir}; \
3296 fi; \
3297 echo "$${sfx};$${multi_dir}"; \
3298 done; \
3299 else \
3300 echo ";"; \
3301 fi > tmp-fixinc_list
3302 $(SHELL) $(srcdir)/../move-if-change tmp-fixinc_list fixinc_list
3303 $(STAMP) s-fixinc_list
3305 # The line below is supposed to avoid accidentally matching the
3306 # built-in suffix rule `.o:' to build fixincl out of fixincl.o. You'd
3307 # expect fixincl to be newer than fixincl.o, such that this situation
3308 # would never come up. As it turns out, if you use ccache with
3309 # CCACHE_HARDLINK enabled, the compiler doesn't embed the current
3310 # working directory in object files (-g absent, or -fno-working-dir
3311 # present), and build and host are the same, fixincl for the host will
3312 # build after fixincl for the build machine, getting a cache hit,
3313 # thereby updating the timestamp of fixincl.o in the host tree.
3314 # Because of CCACHE_HARDLINK, this will also update the timestamp in
3315 # the build tree, and so fixincl in the build tree will appear to be
3316 # out of date. Yuck.
3317 ../$(build_subdir)/fixincludes/fixincl: ; @ :
3319 # Build fixed copies of system files.
3320 # Abort if no system headers available, unless building a crosscompiler.
3321 # FIXME: abort unless building --without-headers would be more accurate and less ugly
3322 stmp-fixinc: gsyslimits.h macro_list fixinc_list \
3323 $(build_objdir)/fixincludes/fixincl \
3324 $(build_objdir)/fixincludes/fixinc.sh
3325 rm -rf include-fixed; mkdir include-fixed
3326 -chmod a+rx include-fixed
3327 if [ -d ../prev-gcc ]; then \
3328 cd ../prev-gcc && \
3329 $(MAKE) real-$(INSTALL_HEADERS_DIR) DESTDIR=`pwd`/../gcc/ \
3330 libsubdir=. ; \
3331 else \
3332 set -e; for ml in `cat fixinc_list`; do \
3333 sysroot_headers_suffix=`echo $${ml} | sed -e 's/;.*$$//'`; \
3334 multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \
3335 fix_dir=include-fixed$${multi_dir}; \
3336 if ! $(inhibit_libc) && test ! -d ${BUILD_SYSTEM_HEADER_DIR}; then \
3337 echo "The directory (BUILD_SYSTEM_HEADER_DIR) that should contain system headers does not exist:" >&2 ; \
3338 echo " ${BUILD_SYSTEM_HEADER_DIR}" >&2 ; \
3339 case ${build_os} in \
3340 darwin*) \
3341 echo "(on Darwin this usually means you need to pass the --with-sysroot= flag to point to a valid MacOS SDK)" >&2; \
3342 ;; \
3343 esac; \
3344 tooldir_sysinc=`echo "${gcc_tooldir}/sys-include" | sed -e :a -e "s,[^/]*/\.\.\/,," -e ta`; \
3345 if test "x${BUILD_SYSTEM_HEADER_DIR}" = "x$${tooldir_sysinc}"; \
3346 then sleep 1; else exit 1; fi; \
3347 fi; \
3348 $(mkinstalldirs) $${fix_dir}; \
3349 chmod a+rx $${fix_dir} || true; \
3350 (TARGET_MACHINE='$(target)'; srcdir=`cd $(srcdir); ${PWD_COMMAND}`; \
3351 SHELL='$(SHELL)'; MACRO_LIST=`${PWD_COMMAND}`/macro_list ; \
3352 gcc_dir=`${PWD_COMMAND}` ; \
3353 export TARGET_MACHINE srcdir SHELL MACRO_LIST && \
3354 cd $(build_objdir)/fixincludes && \
3355 $(SHELL) ./fixinc.sh "$${gcc_dir}/$${fix_dir}" \
3356 $(BUILD_SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS) ); \
3357 done; \
3359 $(STAMP) stmp-fixinc
3362 # Install with the gcc headers files, not the fixed include files, which we
3363 # are typically not allowed to distribute. The general idea is to:
3364 # - Get to "install" with a bare set of internal headers, not the
3365 # fixed system ones,
3366 # - Prevent rebuilds of what normally depends on the headers, which is
3367 # useless for installation purposes and would rely on improper headers.
3368 # - Restore as much of the original state as possible.
3370 .PHONY: install-no-fixedincludes
3372 install-no-fixedincludes:
3373 # Stash the current set of headers away, save stamps we're going to
3374 # alter explicitly, and arrange for fixincludes not to run next time
3375 # we trigger a headers rebuild.
3376 -rm -rf tmp-include
3377 -mv include tmp-include 2>/dev/null
3378 -mv include-fixed tmp-include-fixed 2>/dev/null
3379 -mv stmp-int-hdrs tmp-stmp-int-hdrs 2>/dev/null
3380 -mv stmp-fixinc tmp-stmp-fixinc 2>/dev/null
3381 -mkdir include
3382 -cp -p $(srcdir)/gsyslimits.h include/syslimits.h
3383 -touch stmp-fixinc
3385 # Rebuild our internal headers, restore the original stamps so that
3386 # "install" doesn't trigger pointless rebuilds because of that update,
3387 # then do install
3388 $(MAKE) $(FLAGS_TO_PASS) stmp-int-hdrs
3389 -mv tmp-stmp-int-hdrs stmp-int-hdrs 2>/dev/null
3390 -mv tmp-stmp-fixinc stmp-fixinc 2>/dev/null
3391 $(MAKE) $(FLAGS_TO_PASS) install
3393 # Restore the original set of maybe-fixed headers
3394 -rm -rf include; mv tmp-include include 2>/dev/null
3395 -rm -rf include-fixed; mv tmp-include-fixed include-fixed 2>/dev/null
3397 # Remake the info files.
3399 doc: $(BUILD_INFO) $(GENERATED_MANPAGES)
3401 INFOFILES = doc/cpp.info doc/gcc.info doc/gccint.info \
3402 doc/gccinstall.info doc/cppinternals.info
3404 info: $(INFOFILES) lang.info @GENINSRC@ srcinfo lang.srcinfo
3406 srcinfo: $(INFOFILES)
3407 -cp -p $^ $(srcdir)/doc
3409 TEXI_CPP_FILES = cpp.texi fdl.texi cppenv.texi cppopts.texi \
3410 gcc-common.texi gcc-vers.texi
3412 TEXI_GCC_FILES = gcc.texi gcc-common.texi gcc-vers.texi frontends.texi \
3413 standards.texi invoke.texi extend.texi md.texi objc.texi \
3414 gcov.texi trouble.texi bugreport.texi service.texi \
3415 contribute.texi compat.texi funding.texi gnu.texi gpl_v3.texi \
3416 fdl.texi contrib.texi cppenv.texi cppopts.texi avr-mmcu.texi \
3417 implement-c.texi implement-cxx.texi gcov-tool.texi gcov-dump.texi \
3418 lto-dump.texi
3420 # we explicitly use $(srcdir)/doc/tm.texi here to avoid confusion with
3421 # the generated tm.texi; the latter might have a more recent timestamp,
3422 # but we don't want to rebuild the info files unless the contents of
3423 # the *.texi files have changed.
3424 TEXI_GCCINT_FILES = gccint.texi gcc-common.texi gcc-vers.texi \
3425 contribute.texi makefile.texi configterms.texi options.texi \
3426 portability.texi interface.texi passes.texi rtl.texi md.texi \
3427 $(srcdir)/doc/tm.texi hostconfig.texi fragments.texi \
3428 configfiles.texi collect2.texi headerdirs.texi funding.texi \
3429 gnu.texi gpl_v3.texi fdl.texi contrib.texi languages.texi \
3430 sourcebuild.texi gty.texi libgcc.texi cfg.texi tree-ssa.texi \
3431 loop.texi generic.texi gimple.texi plugins.texi optinfo.texi \
3432 match-and-simplify.texi analyzer.texi ux.texi poly-int.texi
3434 TEXI_GCCINSTALL_FILES = install.texi fdl.texi \
3435 gcc-common.texi gcc-vers.texi
3437 TEXI_CPPINT_FILES = cppinternals.texi gcc-common.texi gcc-vers.texi
3439 # gcc-vers.texi is generated from the version files.
3440 gcc-vers.texi: $(BASEVER) $(DEVPHASE)
3441 (echo "@set version-GCC $(BASEVER_c)"; \
3442 if [ "$(DEVPHASE_c)" = "experimental" ]; \
3443 then echo "@set DEVELOPMENT"; \
3444 else echo "@clear DEVELOPMENT"; \
3445 fi) > $@T
3446 $(build_file_translate) echo @set srcdir `echo $(abs_srcdir) | sed -e 's|\\([@{}]\\)|@\\1|g'` >> $@T
3447 if [ -n "$(PKGVERSION)" ]; then \
3448 echo "@set VERSION_PACKAGE $(PKGVERSION)" >> $@T; \
3450 echo "@set BUGURL $(BUGURL_TEXI)" >> $@T; \
3451 mv -f $@T $@
3454 # The *.1, *.7, *.info, *.dvi, and *.pdf files are being generated from implicit
3455 # patterns. To use them, put each of the specific targets with its
3456 # specific dependencies but no build commands.
3458 doc/cpp.info: $(TEXI_CPP_FILES)
3459 doc/gcc.info: $(TEXI_GCC_FILES)
3460 doc/gccint.info: $(TEXI_GCCINT_FILES)
3461 doc/cppinternals.info: $(TEXI_CPPINT_FILES)
3463 doc/%.info: %.texi
3464 if [ x$(BUILD_INFO) = xinfo ]; then \
3465 $(MAKEINFO) $(MAKEINFOFLAGS) -I . -I $(gcc_docdir) \
3466 -I $(gcc_docdir)/include -o $@ $<; \
3469 # Duplicate entry to handle renaming of gccinstall.info
3470 doc/gccinstall.info: $(TEXI_GCCINSTALL_FILES)
3471 if [ x$(BUILD_INFO) = xinfo ]; then \
3472 $(MAKEINFO) $(MAKEINFOFLAGS) -I $(gcc_docdir) \
3473 -I $(gcc_docdir)/include -o $@ $<; \
3476 doc/cpp.dvi: $(TEXI_CPP_FILES)
3477 doc/gcc.dvi: $(TEXI_GCC_FILES)
3478 doc/gccint.dvi: $(TEXI_GCCINT_FILES)
3479 doc/cppinternals.dvi: $(TEXI_CPPINT_FILES)
3481 doc/cpp.pdf: $(TEXI_CPP_FILES)
3482 doc/gcc.pdf: $(TEXI_GCC_FILES)
3483 doc/gccint.pdf: $(TEXI_GCCINT_FILES)
3484 doc/cppinternals.pdf: $(TEXI_CPPINT_FILES)
3486 $(build_htmldir)/cpp/index.html: $(TEXI_CPP_FILES)
3487 $(build_htmldir)/gcc/index.html: $(TEXI_GCC_FILES)
3488 $(build_htmldir)/gccint/index.html: $(TEXI_GCCINT_FILES)
3489 $(build_htmldir)/cppinternals/index.html: $(TEXI_CPPINT_FILES)
3491 DVIFILES = doc/gcc.dvi doc/gccint.dvi doc/gccinstall.dvi doc/cpp.dvi \
3492 doc/cppinternals.dvi
3494 dvi:: $(DVIFILES) lang.dvi
3496 doc/%.dvi: %.texi
3497 $(TEXI2DVI) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
3499 # Duplicate entry to handle renaming of gccinstall.dvi
3500 doc/gccinstall.dvi: $(TEXI_GCCINSTALL_FILES)
3501 $(TEXI2DVI) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
3503 PDFFILES = doc/gcc.pdf doc/gccint.pdf doc/gccinstall.pdf doc/cpp.pdf \
3504 doc/cppinternals.pdf
3506 pdf:: $(PDFFILES) lang.pdf
3508 doc/%.pdf: %.texi
3509 $(TEXI2PDF) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
3511 # Duplicate entry to handle renaming of gccinstall.pdf
3512 doc/gccinstall.pdf: $(TEXI_GCCINSTALL_FILES)
3513 $(TEXI2PDF) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
3515 # List the directories or single hmtl files which are installed by
3516 # install-html. The lang.html file triggers language fragments to build
3517 # html documentation.
3518 HTMLS_INSTALL=$(build_htmldir)/cpp $(build_htmldir)/gcc \
3519 $(build_htmldir)/gccinstall $(build_htmldir)/gccint \
3520 $(build_htmldir)/cppinternals
3522 # List the html file targets.
3523 HTMLS_BUILD=$(build_htmldir)/cpp/index.html $(build_htmldir)/gcc/index.html \
3524 $(build_htmldir)/gccinstall/index.html $(build_htmldir)/gccint/index.html \
3525 $(build_htmldir)/cppinternals/index.html lang.html
3527 html:: $(HTMLS_BUILD)
3529 $(build_htmldir)/%/index.html: %.texi
3530 $(mkinstalldirs) $(@D)
3531 rm -f $(@D)/*
3532 $(TEXI2HTML) $(MAKEINFO_TOC_INLINE_FLAG) \
3533 -I $(abs_docdir) -I $(abs_docdir)/include -o $(@D) $<
3535 # Duplicate entry to handle renaming of gccinstall
3536 $(build_htmldir)/gccinstall/index.html: $(TEXI_GCCINSTALL_FILES)
3537 $(mkinstalldirs) $(@D)
3538 echo rm -f $(@D)/*
3539 SOURCEDIR=$(abs_docdir) \
3540 DESTDIR=$(@D) \
3541 $(SHELL) $(srcdir)/doc/install.texi2html
3543 MANFILES = doc/gcov.1 doc/cpp.1 doc/gcc.1 doc/gfdl.7 doc/gpl.7 \
3544 doc/fsf-funding.7 doc/gcov-tool.1 doc/gcov-dump.1 \
3545 $(if $(filter yes,@enable_lto@),doc/lto-dump.1)
3547 generated-manpages: man
3549 man: $(MANFILES) lang.man @GENINSRC@ srcman lang.srcman
3551 srcman: $(MANFILES)
3552 -cp -p $^ $(srcdir)/doc
3554 doc/%.1: %.pod
3555 $(STAMP) $@
3556 -($(POD2MAN) --section=1 $< > $(@).T$$$$ && \
3557 mv -f $(@).T$$$$ $@) || \
3558 (rm -f $(@).T$$$$ && exit 1)
3560 doc/%.7: %.pod
3561 $(STAMP) $@
3562 -($(POD2MAN) --section=7 $< > $(@).T$$$$ && \
3563 mv -f $(@).T$$$$ $@) || \
3564 (rm -f $(@).T$$$$ && exit 1)
3566 %.pod: %.texi
3567 $(STAMP) $@
3568 -$(TEXI2POD) -DBUGURL="$(BUGURL_TEXI)" $< > $@
3570 .INTERMEDIATE: cpp.pod gcc.pod gfdl.pod fsf-funding.pod gpl.pod
3571 cpp.pod: cpp.texi cppenv.texi cppopts.texi
3573 # These next rules exist because the output name is not the same as
3574 # the input name, so our implicit %.pod rule will not work.
3576 gcc.pod: invoke.texi cppenv.texi cppopts.texi gcc-vers.texi
3577 $(STAMP) $@
3578 -$(TEXI2POD) $< > $@
3579 gfdl.pod: fdl.texi
3580 $(STAMP) $@
3581 -$(TEXI2POD) $< > $@
3582 fsf-funding.pod: funding.texi
3583 $(STAMP) $@
3584 -$(TEXI2POD) $< > $@
3585 gpl.pod: gpl_v3.texi
3586 $(STAMP) $@
3587 -$(TEXI2POD) $< > $@
3590 # Deletion of files made during compilation.
3591 # There are four levels of this:
3592 # `mostlyclean', `clean', `distclean' and `maintainer-clean'.
3593 # `mostlyclean' is useful while working on a particular type of machine.
3594 # It deletes most, but not all, of the files made by compilation.
3595 # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
3596 # `clean' deletes everything made by running `make all'.
3597 # `distclean' also deletes the files made by config.
3598 # `maintainer-clean' also deletes everything that could be regenerated
3599 # automatically, except for `configure'.
3600 # We remove as much from the language subdirectories as we can
3601 # (less duplicated code).
3603 mostlyclean: lang.mostlyclean
3604 -rm -f $(MOSTLYCLEANFILES)
3605 -rm -f *$(objext) c-family/*$(objext)
3606 -rm -f *$(coverageexts)
3607 # Delete build programs
3608 -rm -f build/*
3609 -rm -f mddeps.mk
3610 # Delete other built files.
3611 -rm -f specs.h options.cc options.h options-save.cc
3612 # Delete the stamp and temporary files.
3613 -rm -f s-* tmp-* stamp-* stmp-*
3614 -rm -f */stamp-* */tmp-*
3615 # Delete debugging dump files.
3616 -rm -f *.[0-9][0-9].* */*.[0-9][0-9].*
3617 # Delete some files made during installation.
3618 -rm -f specs $(SPECS)
3619 -rm -f collect collect2 mips-tfile mips-tdump
3620 # Delete unwanted output files from TeX.
3621 -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
3622 -rm -f */*.toc */*.log */*.vr */*.fn */*.cp */*.tp */*.ky */*.pg
3623 # Delete sorted indices we don't actually use.
3624 -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
3625 # Delete core dumps.
3626 -rm -f core */core
3627 # Delete file generated for gengtype
3628 -rm -f gtyp-input.list
3629 # Delete files generated by gengtype
3630 -rm -f gtype-*
3631 -rm -f gt-*
3632 -rm -f gtype.state
3633 # Delete genchecksum outputs
3634 -rm -f *-checksum.cc
3635 # Delete lock-and-run bits
3636 -rm -rf linkfe.lck lock-stamp.*
3638 # Delete all files made by compilation
3639 # that don't exist in the distribution.
3640 clean: mostlyclean lang.clean
3641 -rm -f libgcc.a libgcc_eh.a libgcov.a
3642 -rm -f libgcc_s*
3643 -rm -f libunwind*
3644 -rm -f config.h tconfig.h bconfig.h tm_p.h tm.h
3645 -rm -f options.cc options.h optionlist
3646 -rm -f cs-*
3647 -rm -f doc/*.dvi
3648 -rm -f doc/*.pdf
3649 # Delete the include directories.
3650 -rm -rf include include-fixed
3652 # Delete all files that users would normally create
3653 # while building and installing GCC.
3654 distclean: clean lang.distclean
3655 -rm -f auto-host.h auto-build.h
3656 -rm -f cstamp-h
3657 -rm -f config.status config.run config.cache config.bak
3658 -rm -f Make-lang Make-hooks Make-host Make-target
3659 -rm -f Makefile *.oaux
3660 -rm -f gthr-default.h
3661 -rm -f TAGS */TAGS
3662 -rm -f *.asm
3663 -rm -f site.exp site.bak testsuite/site.exp testsuite/site.bak
3664 -rm -f testsuite/*.log testsuite/*.sum
3665 -cd testsuite && rm -f x *.x *.x? *.exe *.rpo *.o *.s *.S *.cc
3666 -cd testsuite && rm -f *.out *.gcov *$(coverageexts)
3667 -rm -rf ${QMTEST_DIR} stamp-qmtest
3668 -rm -f .gdbinit configargs.h
3669 -rm -f gcov.pod
3670 # Delete po/*.gmo only if we are not building in the source directory.
3671 -if [ ! -f po/exgettext ]; then rm -f po/*.gmo; fi
3672 -rmdir ada cp f java objc intl po testsuite plugin 2>/dev/null
3674 # Get rid of every file that's generated from some other file, except for `configure'.
3675 # Most of these files ARE PRESENT in the GCC distribution.
3676 maintainer-clean:
3677 @echo 'This command is intended for maintainers to use; it'
3678 @echo 'deletes files that may need special tools to rebuild.'
3679 $(MAKE) lang.maintainer-clean distclean
3680 -rm -f cpp.??s cpp.*aux
3681 -rm -f gcc.??s gcc.*aux
3682 -rm -f $(gcc_docdir)/*.info $(gcc_docdir)/*.1 $(gcc_docdir)/*.7 $(gcc_docdir)/*.dvi $(gcc_docdir)/*.pdf
3684 # Entry points `install', `install-strip', and `uninstall'.
3685 # Also use `install-collect2' to install collect2 when the config files don't.
3687 # Copy the compiler files into directories where they will be run.
3688 # Install the driver last so that the window when things are
3689 # broken is small.
3690 install: install-common $(INSTALL_HEADERS) \
3691 install-cpp install-man install-info install-@POSUB@ \
3692 install-driver install-lto-wrapper install-gcc-ar
3694 ifeq ($(enable_plugin),yes)
3695 install: install-plugin
3696 endif
3698 install-strip: override INSTALL_PROGRAM = $(INSTALL_STRIP_PROGRAM)
3699 ifneq ($(STRIP),)
3700 install-strip: STRIPPROG = $(STRIP)
3701 export STRIPPROG
3702 endif
3703 install-strip: install
3705 # Handle cpp installation.
3706 install-cpp: installdirs cpp$(exeext)
3707 -if test "$(enable_as_accelerator)" != "yes" ; then \
3708 rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
3709 $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
3710 if [ x$(cpp_install_dir) != x ]; then \
3711 rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
3712 $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
3713 else true; fi; \
3716 # Create the installation directories.
3717 # $(libdir)/gcc/include isn't currently searched by cpp.
3718 installdirs:
3719 $(mkinstalldirs) $(DESTDIR)$(libsubdir)
3720 $(mkinstalldirs) $(DESTDIR)$(libexecsubdir)
3721 $(mkinstalldirs) $(DESTDIR)$(bindir)
3722 $(mkinstalldirs) $(DESTDIR)$(includedir)
3723 $(mkinstalldirs) $(DESTDIR)$(infodir)
3724 $(mkinstalldirs) $(DESTDIR)$(man1dir)
3725 $(mkinstalldirs) $(DESTDIR)$(man7dir)
3727 PLUGIN_HEADERS = $(TREE_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3728 toplev.h $(DIAGNOSTIC_CORE_H) $(BASIC_BLOCK_H) $(HASH_TABLE_H) \
3729 tree-ssa-alias.h $(INTERNAL_FN_H) gimple-fold.h tree-eh.h gimple-expr.h \
3730 gimple.h is-a.h memmodel.h $(TREE_PASS_H) $(GCC_PLUGIN_H) \
3731 $(GGC_H) $(TREE_DUMP_H) $(PRETTY_PRINT_H) $(OPTS_H) $(PARAMS_H) \
3732 $(tm_file_list) $(tm_include_list) $(tm_p_file_list) $(tm_p_include_list) \
3733 $(host_xm_file_list) $(host_xm_include_list) $(xm_include_list) \
3734 intl.h $(PLUGIN_VERSION_H) $(DIAGNOSTIC_H) ${C_TREE_H} \
3735 $(C_COMMON_H) c-family/c-objc.h $(C_PRETTY_PRINT_H) \
3736 tree-iterator.h $(PLUGIN_H) $(TREE_SSA_H) langhooks.h incpath.h debug.h \
3737 $(EXCEPT_H) tree-ssa-sccvn.h real.h output.h $(IPA_UTILS_H) \
3738 ipa-param-manipulation.h $(C_PRAGMA_H) $(CPPLIB_H) $(FUNCTION_H) \
3739 cppdefault.h flags.h $(MD5_H) params.def params.h params-enum.h \
3740 prefix.h tree-inline.h $(GIMPLE_PRETTY_PRINT_H) realmpfr.h \
3741 $(IPA_PROP_H) $(TARGET_H) $(RTL_H) $(TM_P_H) $(CFGLOOP_H) $(EMIT_RTL_H) \
3742 version.h stringpool.h gimplify.h gimple-iterator.h gimple-ssa.h \
3743 fold-const.h fold-const-call.h tree-cfg.h tree-into-ssa.h tree-ssanames.h \
3744 print-tree.h varasm.h context.h tree-phinodes.h stor-layout.h \
3745 ssa-iterators.h $(RESOURCE_H) tree-cfgcleanup.h attribs.h calls.h \
3746 cfgexpand.h diagnostic-color.h gcc-symtab.h gimple-builder.h gimple-low.h \
3747 gimple-walk.h gimplify-me.h pass_manager.h print-rtl.h stmt.h \
3748 tree-dfa.h tree-hasher.h tree-nested.h tree-object-size.h tree-outof-ssa.h \
3749 tree-parloops.h tree-ssa-address.h tree-ssa-coalesce.h tree-ssa-dom.h \
3750 tree-ssa-loop.h tree-ssa-loop-ivopts.h tree-ssa-loop-manip.h \
3751 tree-ssa-loop-niter.h tree-ssa-ter.h tree-ssa-threadedge.h \
3752 tree-ssa-threadupdate.h inchash.h wide-int.h signop.h hash-map.h \
3753 hash-set.h dominance.h cfg.h cfgrtl.h cfganal.h cfgbuild.h cfgcleanup.h \
3754 lcm.h cfgloopmanip.h file-prefix-map.h builtins.def $(INSN_ATTR_H) \
3755 pass-instances.def params.list $(srcdir)/../include/gomp-constants.h \
3756 $(EXPR_H)
3758 # generate the 'build fragment' b-header-vars
3759 s-header-vars: Makefile
3760 rm -f tmp-header-vars
3761 # The first sed gets the list "header variables" as the list variables
3762 # assigned in Makefile and having _H at the end of the name. "sed -n" proved
3763 # more portable than a trailing "-e d" to filter out the uninteresting lines,
3764 # in particular on ia64-hpux where "s/.../p" only prints if -n was requested
3765 # as well.
3766 $(foreach header_var,$(shell sed < Makefile -n -e 's/^\([A-Z0-9_]*_H\)[ ]*=.*/\1/p'),echo $(header_var)=$(shell echo $($(header_var):$(srcdir)/%=.../%) | sed -e 's~\.\.\./config/~config/~' -e 's~\.\.\./common/config/~common/config/~' -e 's~\.\.\.[^ ]*/~~g') >> tmp-header-vars;)
3767 $(SHELL) $(srcdir)/../move-if-change tmp-header-vars b-header-vars
3768 $(STAMP) s-header-vars
3770 # Install gengtype
3771 install-gengtype: installdirs gengtype$(exeext) gtype.state
3772 $(mkinstalldirs) $(DESTDIR)$(plugin_resourcesdir)
3773 $(INSTALL_DATA) gtype.state $(DESTDIR)$(plugin_resourcesdir)/gtype.state
3774 $(mkinstalldirs) $(DESTDIR)$(plugin_bindir)
3775 $(INSTALL_PROGRAM) gengtype$(exeext) $(DESTDIR)$(plugin_bindir)/gengtype$(exeext)
3777 # Install the headers needed to build a plugin.
3778 install-plugin: installdirs lang.install-plugin s-header-vars install-gengtype
3779 # We keep the directory structure for files in config, common/config or
3780 # c-family and .def files. All other files are flattened to a single directory.
3781 $(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
3782 headers=`echo $(sort $(PLUGIN_HEADERS)) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
3783 srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
3784 for file in $$headers; do \
3785 if [ -f $$file ] ; then \
3786 path=$$file; \
3787 elif [ -f $(srcdir)/$$file ]; then \
3788 path=$(srcdir)/$$file; \
3789 else continue; \
3790 fi; \
3791 case $$path in \
3792 "$(srcdir)"/config/* | "$(srcdir)"/common/config/* \
3793 | "$(srcdir)"/c-family/* | "$(srcdir)"/*.def ) \
3794 base=`echo "$$path" | sed -e "s|$$srcdirstrip/||"`;; \
3795 *) base=`basename $$path` ;; \
3796 esac; \
3797 dest=$(plugin_includedir)/$$base; \
3798 echo $(INSTALL_DATA) $$path $(DESTDIR)$$dest; \
3799 dir=`dirname $$dest`; \
3800 $(mkinstalldirs) $(DESTDIR)$$dir; \
3801 $(INSTALL_DATA) $$path $(DESTDIR)$$dest; \
3802 done
3803 $(INSTALL_DATA) b-header-vars $(DESTDIR)$(plugin_includedir)/b-header-vars
3805 # Install the compiler executables built during cross compilation.
3806 install-common: native lang.install-common installdirs
3807 for file in $(COMPILERS); do \
3808 if [ -f $$file ] ; then \
3809 rm -f $(DESTDIR)$(libexecsubdir)/$$file; \
3810 $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libexecsubdir)/$$file; \
3811 else true; \
3812 fi; \
3813 done
3814 for file in $(EXTRA_PROGRAMS) $(COLLECT2) ..; do \
3815 if [ x"$$file" != x.. ]; then \
3816 rm -f $(DESTDIR)$(libexecsubdir)/$$file; \
3817 $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libexecsubdir)/$$file; \
3818 else true; fi; \
3819 done
3820 # We no longer install the specs file because its presence makes the
3821 # driver slower, and because people who need it can recreate it by
3822 # using -dumpspecs. We remove any old version because it would
3823 # otherwise override the specs built into the driver.
3824 rm -f $(DESTDIR)$(libsubdir)/specs
3825 # Install gcov if it was compiled.
3826 -if test "$(enable_as_accelerator)" != "yes" ; then \
3827 if [ -f gcov$(exeext) ]; \
3828 then \
3829 rm -f $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \
3830 $(INSTALL_PROGRAM) gcov$(exeext) $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \
3831 fi; \
3833 # Install gcov-tool if it was compiled.
3834 -if test "$(enable_as_accelerator)" != "yes" ; then \
3835 if [ -f gcov-tool$(exeext) ]; \
3836 then \
3837 rm -f $(DESTDIR)$(bindir)/$(GCOV_TOOL_INSTALL_NAME)$(exeext); \
3838 $(INSTALL_PROGRAM) \
3839 gcov-tool$(exeext) $(DESTDIR)$(bindir)/$(GCOV_TOOL_INSTALL_NAME)$(exeext); \
3840 fi; \
3842 # Install gcov-dump if it was compiled.
3843 -if test "$(enable_as_accelerator)" != "yes" ; then \
3844 if [ -f gcov-dump$(exeext) ]; \
3845 then \
3846 rm -f $(DESTDIR)$(bindir)/$(GCOV_DUMP_INSTALL_NAME)$(exeext); \
3847 $(INSTALL_PROGRAM) \
3848 gcov-dump$(exeext) $(DESTDIR)$(bindir)/$(GCOV_DUMP_INSTALL_NAME)$(exeext); \
3849 fi; \
3852 # Install the driver program as $(target_noncanonical)-gcc,
3853 # $(target_noncanonical)-gcc-$(version), and also as gcc if native.
3854 install-driver: installdirs xgcc$(exeext)
3855 -rm -f $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
3856 -$(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
3857 -if test "$(enable_as_accelerator)" != "yes" ; then \
3858 if [ "$(GCC_INSTALL_NAME)" != "$(target_noncanonical)-gcc-$(version)" ]; then \
3859 rm -f $(DESTDIR)$(bindir)/$(FULL_DRIVER_NAME); \
3860 ( cd $(DESTDIR)$(bindir) && \
3861 $(LN) $(GCC_INSTALL_NAME)$(exeext) $(FULL_DRIVER_NAME) ); \
3862 fi; \
3863 if [ ! -f gcc-cross$(exeext) ] \
3864 && [ "$(GCC_INSTALL_NAME)" != "$(GCC_TARGET_INSTALL_NAME)" ]; then \
3865 rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-tmp$(exeext); \
3866 ( cd $(DESTDIR)$(bindir) && \
3867 $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-tmp$(exeext) && \
3868 mv -f $(target_noncanonical)-gcc-tmp$(exeext) $(GCC_TARGET_INSTALL_NAME)$(exeext) ); \
3869 fi; \
3872 # Install the info files.
3873 # $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
3874 # to do the install.
3875 install-info:: doc installdirs \
3876 $(DESTDIR)$(infodir)/cpp.info \
3877 $(DESTDIR)$(infodir)/gcc.info \
3878 $(DESTDIR)$(infodir)/cppinternals.info \
3879 $(DESTDIR)$(infodir)/gccinstall.info \
3880 $(DESTDIR)$(infodir)/gccint.info \
3881 lang.install-info
3883 $(DESTDIR)$(infodir)/%.info: doc/%.info installdirs
3884 rm -f $@
3885 if [ -f $< ]; then \
3886 for f in $(<)*; do \
3887 realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
3888 $(INSTALL_DATA) $$f $(DESTDIR)$(infodir)/$$realfile; \
3889 chmod a-x $(DESTDIR)$(infodir)/$$realfile; \
3890 done; \
3891 else true; fi
3892 -if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
3893 if [ -f $@ ]; then \
3894 install-info --dir-file=$(DESTDIR)$(infodir)/dir $@; \
3895 else true; fi; \
3896 else true; fi;
3898 dvi__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
3900 install-dvi: $(DVIFILES) lang.install-dvi
3901 @$(NORMAL_INSTALL)
3902 test -z "$(dvidir)/gcc" || $(mkinstalldirs) "$(DESTDIR)$(dvidir)/gcc"
3903 @list='$(DVIFILES)'; for p in $$list; do \
3904 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
3905 f=$(dvi__strip_dir) \
3906 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(dvidir)/gcc/$$f'"; \
3907 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(dvidir)/gcc/$$f"; \
3908 done
3910 pdf__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
3912 install-pdf: $(PDFFILES) lang.install-pdf
3913 @$(NORMAL_INSTALL)
3914 test -z "$(pdfdir)/gcc" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)/gcc"
3915 @list='$(PDFFILES)'; for p in $$list; do \
3916 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
3917 f=$(pdf__strip_dir) \
3918 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/gcc/$$f'"; \
3919 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/gcc/$$f"; \
3920 done
3922 html__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
3924 install-html: $(HTMLS_BUILD) lang.install-html
3925 @$(NORMAL_INSTALL)
3926 test -z "$(htmldir)" || $(mkinstalldirs) "$(DESTDIR)$(htmldir)"
3927 @list='$(HTMLS_INSTALL)'; for p in $$list; do \
3928 if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \
3929 f=$(html__strip_dir) \
3930 if test -d "$$d$$p"; then \
3931 echo " $(mkinstalldirs) '$(DESTDIR)$(htmldir)/$$f'"; \
3932 $(mkinstalldirs) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
3933 echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
3934 $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
3935 else \
3936 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
3937 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
3938 fi; \
3939 done
3941 # Install the man pages.
3942 install-man: lang.install-man \
3943 $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext) \
3944 $(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext) \
3945 $(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext) \
3946 $(DESTDIR)$(man1dir)/$(GCOV_TOOL_INSTALL_NAME)$(man1ext) \
3947 $(DESTDIR)$(man1dir)/$(GCOV_DUMP_INSTALL_NAME)$(man1ext) \
3948 $(if $(filter yes,@enable_lto@),$(DESTDIR)$(man1dir)/$(LTO_DUMP_INSTALL_NAME)$(man1ext)) \
3949 $(DESTDIR)$(man7dir)/fsf-funding$(man7ext) \
3950 $(DESTDIR)$(man7dir)/gfdl$(man7ext) \
3951 $(DESTDIR)$(man7dir)/gpl$(man7ext)
3953 $(DESTDIR)$(man7dir)/%$(man7ext): doc/%.7 installdirs
3954 -rm -f $@
3955 -$(INSTALL_DATA) $< $@
3956 -chmod a-x $@
3958 $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext): doc/gcc.1 installdirs
3959 -rm -f $@
3960 -$(INSTALL_DATA) $< $@
3961 -chmod a-x $@
3963 $(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext): doc/cpp.1 installdirs
3964 -rm -f $@
3965 -$(INSTALL_DATA) $< $@
3966 -chmod a-x $@
3968 $(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext): doc/gcov.1 installdirs
3969 -rm -f $@
3970 -$(INSTALL_DATA) $< $@
3971 -chmod a-x $@
3973 $(DESTDIR)$(man1dir)/$(GCOV_TOOL_INSTALL_NAME)$(man1ext): doc/gcov-tool.1 installdirs
3974 -rm -f $@
3975 -$(INSTALL_DATA) $< $@
3976 -chmod a-x $@
3978 $(DESTDIR)$(man1dir)/$(GCOV_DUMP_INSTALL_NAME)$(man1ext): doc/gcov-dump.1 installdirs
3979 -rm -f $@
3980 -$(INSTALL_DATA) $< $@
3981 -chmod a-x $@
3983 $(DESTDIR)$(man1dir)/$(LTO_DUMP_INSTALL_NAME)$(man1ext): doc/lto-dump.1 installdirs
3984 -rm -f $@
3985 -$(INSTALL_DATA) $< $@
3986 -chmod a-x $@
3988 # Install all the header files built in the include subdirectory.
3989 install-headers: $(INSTALL_HEADERS_DIR)
3990 # Fix symlinks to absolute paths in the installed include directory to
3991 # point to the installed directory, not the build directory.
3992 # Don't need to use LN_S here since we really do need ln -s and no substitutes.
3993 -files=`cd $(DESTDIR)$(libsubdir)/include-fixed; find . -type l -print 2>/dev/null`; \
3994 if [ $$? -eq 0 ]; then \
3995 dir=`cd include-fixed; ${PWD_COMMAND}`; \
3996 for i in $$files; do \
3997 dest=`ls -ld $(DESTDIR)$(libsubdir)/include-fixed/$$i | sed -n 's/.*-> //p'`; \
3998 if expr "$$dest" : "$$dir.*" > /dev/null; then \
3999 rm -f $(DESTDIR)$(libsubdir)/include-fixed/$$i; \
4000 ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(DESTDIR)$(libsubdir)/include-fixed/$$i; \
4001 fi; \
4002 done; \
4005 # Create or recreate the gcc private include file directory.
4006 install-include-dir: installdirs
4007 $(mkinstalldirs) $(DESTDIR)$(libsubdir)/include
4008 -rm -rf $(DESTDIR)$(libsubdir)/include-fixed
4009 mkdir $(DESTDIR)$(libsubdir)/include-fixed
4010 -chmod a+rx $(DESTDIR)$(libsubdir)/include-fixed
4012 # Create or recreate the install-tools include file directory.
4013 itoolsdir = $(libexecsubdir)/install-tools
4014 itoolsdatadir = $(libsubdir)/install-tools
4015 install-itoolsdirs: installdirs
4016 $(mkinstalldirs) $(DESTDIR)$(itoolsdatadir)/include
4017 $(mkinstalldirs) $(DESTDIR)$(itoolsdir)
4019 # Install the include directory using tar.
4020 install-headers-tar: stmp-int-hdrs install-include-dir
4021 # We use `pwd`/include instead of just include to problems with CDPATH
4022 # Unless a full pathname is provided, some shells would print the new CWD,
4023 # found in CDPATH, corrupting the output. We could just redirect the
4024 # output of `cd', but some shells lose on redirection within `()'s
4025 (cd `${PWD_COMMAND}`/include ; \
4026 tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include; tar xpf - )
4027 (cd `${PWD_COMMAND}`/include-fixed ; \
4028 tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include-fixed; tar xpf - )
4029 # /bin/sh on some systems returns the status of the first tar,
4030 # and that can lose with GNU tar which always writes a full block.
4031 # So use `exit 0' to ignore its exit status.
4033 # Install the include directory using cpio.
4034 install-headers-cpio: stmp-int-hdrs install-include-dir
4035 # See discussion about the use of `pwd` above
4036 cd `${PWD_COMMAND}`/include ; \
4037 find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include
4038 cd `${PWD_COMMAND}`/include-fixed ; \
4039 find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include-fixed
4041 # Install the include directory using cp.
4042 install-headers-cp: stmp-int-hdrs install-include-dir
4043 cp -p -r include $(DESTDIR)$(libsubdir)
4044 cp -p -r include-fixed $(DESTDIR)$(libsubdir)
4046 # Targets without dependencies, for use in prev-gcc during bootstrap.
4047 real-install-headers-tar:
4048 (cd `${PWD_COMMAND}`/include-fixed ; \
4049 tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include-fixed; tar xpf - )
4051 real-install-headers-cpio:
4052 cd `${PWD_COMMAND}`/include-fixed ; \
4053 find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include-fixed
4055 real-install-headers-cp:
4056 cp -p -r include-fixed $(DESTDIR)$(libsubdir)
4058 # Install supporting files for fixincludes to be run later.
4059 install-mkheaders: stmp-int-hdrs install-itoolsdirs \
4060 macro_list fixinc_list
4061 $(INSTALL_DATA) $(srcdir)/gsyslimits.h \
4062 $(DESTDIR)$(itoolsdatadir)/gsyslimits.h
4063 $(INSTALL_DATA) macro_list $(DESTDIR)$(itoolsdatadir)/macro_list
4064 $(INSTALL_DATA) fixinc_list $(DESTDIR)$(itoolsdatadir)/fixinc_list
4065 set -e; for ml in `cat fixinc_list`; do \
4066 multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \
4067 $(mkinstalldirs) $(DESTDIR)$(itoolsdatadir)/include$${multi_dir}; \
4068 $(INSTALL_DATA) include$${multi_dir}/limits.h $(DESTDIR)$(itoolsdatadir)/include$${multi_dir}/limits.h; \
4069 done
4070 $(INSTALL_SCRIPT) $(srcdir)/../mkinstalldirs \
4071 $(DESTDIR)$(itoolsdir)/mkinstalldirs ; \
4072 sysroot_headers_suffix='$${sysroot_headers_suffix}'; \
4073 echo 'SYSTEM_HEADER_DIR="'"$(SYSTEM_HEADER_DIR)"'"' \
4074 > $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
4075 echo 'OTHER_FIXINCLUDES_DIRS="$(OTHER_FIXINCLUDES_DIRS)"' \
4076 >> $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
4077 echo 'STMP_FIXINC="$(STMP_FIXINC)"' \
4078 >> $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
4080 # Use this target to install the program `collect2' under the name `collect2'.
4081 install-collect2: collect2 installdirs
4082 $(INSTALL_PROGRAM) collect2$(exeext) $(DESTDIR)$(libexecsubdir)/collect2$(exeext)
4083 # Install the driver program as $(libsubdir)/gcc for collect2.
4084 $(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(libexecsubdir)/gcc$(exeext)
4086 # Install lto-wrapper.
4087 install-lto-wrapper: lto-wrapper$(exeext)
4088 $(INSTALL_PROGRAM) lto-wrapper$(exeext) $(DESTDIR)$(libexecsubdir)/lto-wrapper$(exeext)
4090 install-gcc-ar: installdirs gcc-ar$(exeext) gcc-nm$(exeext) gcc-ranlib$(exeext)
4091 if test "$(enable_as_accelerator)" != "yes" ; then \
4092 for i in gcc-ar gcc-nm gcc-ranlib; do \
4093 install_name=`echo $$i|sed '$(program_transform_name)'` ;\
4094 target_install_name=$(target_noncanonical)-`echo $$i|sed '$(program_transform_name)'` ; \
4095 rm -f $(DESTDIR)$(bindir)/$$install_name$(exeext) ; \
4096 $(INSTALL_PROGRAM) $$i$(exeext) $(DESTDIR)$(bindir)/$$install_name$(exeext) ;\
4097 if test -f gcc-cross$(exeext); then \
4098 :; \
4099 else \
4100 rm -f $(DESTDIR)$(bindir)/$$target_install_name$(exeext); \
4101 ( cd $(DESTDIR)$(bindir) && \
4102 $(LN) $$install_name$(exeext) $$target_install_name$(exeext) ) ; \
4103 fi ; \
4104 done; \
4107 # Cancel installation by deleting the installed files.
4108 uninstall: lang.uninstall
4109 -rm -rf $(DESTDIR)$(libsubdir)
4110 -rm -rf $(DESTDIR)$(libexecsubdir)
4111 -rm -rf $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
4112 -rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext)
4113 -if [ x$(cpp_install_dir) != x ]; then \
4114 rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
4115 else true; fi
4116 -rm -rf $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext)
4117 -rm -rf $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext)
4118 -rm -rf $(DESTDIR)$(man1dir)/cpp$(man1ext)
4119 -rm -f $(DESTDIR)$(infodir)/cpp.info* $(DESTDIR)$(infodir)/gcc.info*
4120 -rm -f $(DESTDIR)$(infodir)/cppinternals.info* $(DESTDIR)$(infodir)/gccint.info*
4121 for i in ar nm ranlib ; do \
4122 install_name=`echo gcc-$$i|sed '$(program_transform_name)'`$(exeext) ;\
4123 target_install_name=$(target_noncanonical)-`echo gcc-$$i|sed '$(program_transform_name)'`$(exeext) ; \
4124 rm -f $(DESTDIR)$(bindir)/$$install_name ; \
4125 rm -f $(DESTDIR)$(bindir)/$$target_install_name ; \
4126 done
4128 # These targets are for the dejagnu testsuites. The file site.exp
4129 # contains global variables that all the testsuites will use.
4131 target_subdir = @target_subdir@
4133 site.exp: ./config.status Makefile
4134 @echo "Making a new config file..."
4135 -@rm -f ./site.tmp
4136 @$(STAMP) site.exp
4137 -@mv site.exp site.bak
4138 @echo "## these variables are automatically generated by make ##" > ./site.tmp
4139 @echo "# Do not edit here. If you wish to override these values" >> ./site.tmp
4140 @echo "# add them to the last section" >> ./site.tmp
4141 @echo "set rootme \"`${PWD_COMMAND}`\"" >> ./site.tmp
4142 @echo "set srcdir \"`cd ${srcdir}; ${PWD_COMMAND}`\"" >> ./site.tmp
4143 @echo "set host_triplet $(host)" >> ./site.tmp
4144 @echo "set build_triplet $(build)" >> ./site.tmp
4145 @echo "set target_triplet $(target)" >> ./site.tmp
4146 @echo "set target_alias $(target_noncanonical)" >> ./site.tmp
4147 @echo "set libiconv \"$(LIBICONV)\"" >> ./site.tmp
4148 # CFLAGS is set even though it's empty to show we reserve the right to set it.
4149 @echo "set CFLAGS \"\"" >> ./site.tmp
4150 @echo "set CXXFLAGS \"\"" >> ./site.tmp
4151 @echo "set HOSTCC \"$(CC)\"" >> ./site.tmp
4152 @echo "set HOSTCXX \"$(CXX)\"" >> ./site.tmp
4153 @echo "set HOSTCFLAGS \"$(CFLAGS)\"" >> ./site.tmp
4154 @echo "set HOSTCXXFLAGS \"$(CXXFLAGS)\"" >> ./site.tmp
4155 # TEST_ALWAYS_FLAGS are flags that should be passed to every compilation.
4156 # They are passed first to allow individual tests to override them.
4157 @echo "set TEST_ALWAYS_FLAGS \"$(SYSROOT_CFLAGS_FOR_TARGET)\"" >> ./site.tmp
4158 # When running the tests we set GCC_EXEC_PREFIX to the install tree so that
4159 # files that have already been installed there will be found. The -B option
4160 # overrides it, so use of GCC_EXEC_PREFIX will not result in using GCC files
4161 # from the install tree.
4162 @echo "set TEST_GCC_EXEC_PREFIX \"$(libdir)/gcc/\"" >> ./site.tmp
4163 @echo "set TESTING_IN_BUILD_TREE 1" >> ./site.tmp
4164 @echo "set HAVE_LIBSTDCXX_V3 1" >> ./site.tmp
4165 @if test "@enable_plugin@" = "yes" ; then \
4166 echo "set ENABLE_PLUGIN 1" >> ./site.tmp; \
4167 echo "set PLUGINCC \"$(PLUGINCC)\"" >> ./site.tmp; \
4168 echo "set PLUGINCFLAGS \"$(PLUGINCFLAGS)\"" >> ./site.tmp; \
4169 echo "set GMPINC \"$(GMPINC)\"" >> ./site.tmp; \
4171 # If newlib has been configured, we need to pass -B to gcc so it can find
4172 # newlib's crt0.o if it exists. This will cause a "path prefix not used"
4173 # message if it doesn't, but the testsuite is supposed to ignore the message -
4174 # it's too difficult to tell when to and when not to pass -B (not all targets
4175 # have crt0's). We could only add the -B if ../newlib/crt0.o exists, but that
4176 # seems like too selective a test.
4177 # ??? Another way to solve this might be to rely on linker scripts. Then
4178 # theoretically the -B won't be needed.
4179 # We also need to pass -L ../ld so that the linker can find ldscripts.
4180 @if [ -d $(objdir)/../$(target_subdir)/newlib ] \
4181 && [ "${host}" != "${target}" ]; then \
4182 echo "set newlib_cflags \"-I$(objdir)/../$(target_subdir)/newlib/targ-include -I\$$srcdir/../newlib/libc/include\"" >> ./site.tmp; \
4183 echo "set newlib_ldflags \"-B$(objdir)/../$(target_subdir)/newlib/\"" >> ./site.tmp; \
4184 echo "append CFLAGS \" \$$newlib_cflags\"" >> ./site.tmp; \
4185 echo "append CXXFLAGS \" \$$newlib_cflags\"" >> ./site.tmp; \
4186 echo "append LDFLAGS \" \$$newlib_ldflags\"" >> ./site.tmp; \
4187 else true; \
4189 @if [ -d $(objdir)/../ld ] ; then \
4190 echo "append LDFLAGS \" -L$(objdir)/../ld\"" >> ./site.tmp; \
4191 else true; \
4193 echo "set tmpdir $(objdir)/testsuite" >> ./site.tmp
4194 @echo "set srcdir \"\$${srcdir}/testsuite\"" >> ./site.tmp
4195 @if [ "X$(ALT_CC_UNDER_TEST)" != "X" ] ; then \
4196 echo "set ALT_CC_UNDER_TEST \"$(ALT_CC_UNDER_TEST)\"" >> ./site.tmp; \
4197 else true; \
4199 @if [ "X$(ALT_CXX_UNDER_TEST)" != "X" ] ; then \
4200 echo "set ALT_CXX_UNDER_TEST \"$(ALT_CXX_UNDER_TEST)\"" >> ./site.tmp; \
4201 else true; \
4203 @if [ "X$(COMPAT_OPTIONS)" != "X" ] ; then \
4204 echo "set COMPAT_OPTIONS \"$(COMPAT_OPTIONS)\"" >> ./site.tmp; \
4205 else true; \
4207 @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./site.tmp
4208 @cat ./site.tmp > site.exp
4209 @cat site.bak | sed \
4210 -e '1,/^## All variables above are.*##/ d' >> site.exp
4211 -@rm -f ./site.tmp
4213 CHECK_TARGETS = @check_languages@
4215 check: $(CHECK_TARGETS)
4217 check-subtargets: $(patsubst %,%-subtargets,$(CHECK_TARGETS))
4219 # The idea is to parallelize testing of multilibs, for example:
4220 # make -j3 check-gcc//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
4221 # will run 3 concurrent sessions of check-gcc, eventually testing
4222 # all 10 combinations. GNU make is required, as is a shell that expands
4223 # alternations within braces.
4224 lang_checks_parallel = $(lang_checks:=//%)
4225 $(lang_checks_parallel): site.exp
4226 target=`echo "$@" | sed 's,//.*,,'`; \
4227 variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
4228 vardots=`echo "$$variant" | sed 's,/,.,g'`; \
4229 $(MAKE) TESTSUITEDIR="testsuite.$$vardots" \
4230 RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
4231 "$$target"
4233 TESTSUITEDIR = testsuite
4235 $(TESTSUITEDIR)/site.exp: site.exp
4236 -test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR)
4237 -rm -f $@
4238 sed '/set tmpdir/ s|testsuite$$|$(TESTSUITEDIR)|' < site.exp > $@
4240 # This is only used for check-% targets that aren't parallelized.
4241 $(filter-out $(lang_checks_parallelized),$(lang_checks)): check-% : site.exp
4242 -test -d plugin || mkdir plugin
4243 -test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR)
4244 test -d $(TESTSUITEDIR)/$* || mkdir $(TESTSUITEDIR)/$*
4245 -(rootme=`${PWD_COMMAND}`; export rootme; \
4246 srcdir=`cd ${srcdir}; ${PWD_COMMAND}` ; export srcdir ; \
4247 cd $(TESTSUITEDIR)/$*; \
4248 rm -f tmp-site.exp; \
4249 sed '/set tmpdir/ s|testsuite$$|$(TESTSUITEDIR)/$*|' \
4250 < ../../site.exp > tmp-site.exp; \
4251 $(SHELL) $${srcdir}/../move-if-change tmp-site.exp site.exp; \
4252 EXPECT=${EXPECT} ; export EXPECT ; \
4253 if [ -f $${rootme}/../expect/expect ] ; then \
4254 TCL_LIBRARY=`cd .. ; cd $${srcdir}/../tcl/library ; ${PWD_COMMAND}` ; \
4255 export TCL_LIBRARY ; fi ; \
4256 $(RUNTEST) --tool $* $(RUNTESTFLAGS))
4258 $(patsubst %,%-subtargets,$(lang_checks)): check-%-subtargets:
4259 @echo check-$*
4261 check_p_tool=$(firstword $(subst _, ,$*))
4262 check_p_count=$(check_$(check_p_tool)_parallelize)
4263 check_p_subno=$(word 2,$(subst _, ,$*))
4264 check_p_subdir=$(subst _,,$*)
4265 check_p_subdirs=$(wordlist 1,$(check_p_count),$(wordlist 1, \
4266 $(if $(GCC_TEST_PARALLEL_SLOTS),$(GCC_TEST_PARALLEL_SLOTS),128), \
4267 $(one_to_9999)))
4269 # For parallelized check-% targets, this decides whether parallelization
4270 # is desirable (if -jN is used). If desirable, recursive make is run with
4271 # check-parallel-$lang{,1,2,3,4,5} etc. goals, which can be executed in
4272 # parallel, as they are run in separate directories.
4273 # check-parallel-$lang{,1,2,3,4,5} etc. goals invoke runtest with
4274 # GCC_RUNTEST_PARALLELIZE_DIR var in the environment and runtest_file_p
4275 # dejaGNU procedure is overridden to additionally synchronize through
4276 # a $lang-parallel directory which tests will be run by which runtest instance.
4277 # Afterwards contrib/dg-extract-results.sh is used to merge the sum and log
4278 # files. If parallelization isn't desirable, only one recursive make
4279 # is run with check-parallel-$lang goal and check_$lang_parallelize variable
4280 # cleared to say that no additional arguments beyond $(RUNTESTFLAGS)
4281 # should be passed to runtest.
4283 # To parallelize some language check, add the corresponding check-$lang
4284 # to lang_checks_parallelized variable and define check_$lang_parallelize
4285 # variable. This is the upper limit to which it is useful to parallelize the
4286 # check-$lang target. It doesn't make sense to try e.g. 128 goals for small
4287 # testsuites like objc or go.
4288 $(lang_checks_parallelized): check-% : site.exp
4289 -rm -rf $(TESTSUITEDIR)/$*-parallel
4290 @if [ -n "$(filter -j%, $(MFLAGS))" ]; then \
4291 test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR) || true; \
4292 test -d $(TESTSUITEDIR)/$*-parallel || mkdir $(TESTSUITEDIR)/$*-parallel || true; \
4293 GCC_RUNTEST_PARALLELIZE_DIR=`${PWD_COMMAND}`/$(TESTSUITEDIR)/$(check_p_tool)-parallel ; \
4294 export GCC_RUNTEST_PARALLELIZE_DIR ; \
4295 $(MAKE) TESTSUITEDIR="$(TESTSUITEDIR)" RUNTESTFLAGS="$(RUNTESTFLAGS)" \
4296 check-parallel-$* \
4297 $(patsubst %,check-parallel-$*_%, $(check_p_subdirs)); \
4298 sums= ; logs= ; \
4299 for dir in $(TESTSUITEDIR)/$* \
4300 $(patsubst %,$(TESTSUITEDIR)/$*%,$(check_p_subdirs));\
4301 do \
4302 if [ -d $$dir ]; then \
4303 mv -f $$dir/$*.sum $$dir/$*.sum.sep; mv -f $$dir/$*.log $$dir/$*.log.sep; \
4304 sums="$$sums $$dir/$*.sum.sep"; logs="$$logs $$dir/$*.log.sep"; \
4305 fi; \
4306 done; \
4307 $(SHELL) $(srcdir)/../contrib/dg-extract-results.sh $$sums \
4308 > $(TESTSUITEDIR)/$*/$*.sum; \
4309 $(SHELL) $(srcdir)/../contrib/dg-extract-results.sh -L $$logs \
4310 > $(TESTSUITEDIR)/$*/$*.log; \
4311 rm -rf $(TESTSUITEDIR)/$*-parallel || true; \
4312 else \
4313 $(MAKE) TESTSUITEDIR="$(TESTSUITEDIR)" RUNTESTFLAGS="$(RUNTESTFLAGS)" \
4314 check_$*_parallelize= check-parallel-$*; \
4317 check-parallel-% : site.exp
4318 -@test -d plugin || mkdir plugin
4319 -@test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR)
4320 @test -d $(TESTSUITEDIR)/$(check_p_subdir) || mkdir $(TESTSUITEDIR)/$(check_p_subdir)
4321 -$(if $(check_p_subno),@)(rootme=`${PWD_COMMAND}`; export rootme; \
4322 srcdir=`cd ${srcdir}; ${PWD_COMMAND}` ; export srcdir ; \
4323 if [ -n "$(check_p_subno)" ] \
4324 && [ -n "$$GCC_RUNTEST_PARALLELIZE_DIR" ] \
4325 && [ -f $(TESTSUITEDIR)/$(check_p_tool)-parallel/finished ]; then \
4326 rm -rf $(TESTSUITEDIR)/$(check_p_subdir); \
4327 else \
4328 cd $(TESTSUITEDIR)/$(check_p_subdir); \
4329 rm -f tmp-site.exp; \
4330 sed '/set tmpdir/ s|testsuite$$|$(TESTSUITEDIR)/$(check_p_subdir)|' \
4331 < ../../site.exp > tmp-site.exp; \
4332 $(SHELL) $${srcdir}/../move-if-change tmp-site.exp site.exp; \
4333 EXPECT=${EXPECT} ; export EXPECT ; \
4334 if [ -f $${rootme}/../expect/expect ] ; then \
4335 TCL_LIBRARY=`cd .. ; cd $${srcdir}/../tcl/library ; ${PWD_COMMAND}` ; \
4336 export TCL_LIBRARY ; \
4337 fi ; \
4338 $(RUNTEST) --tool $(check_p_tool) $(RUNTESTFLAGS); \
4339 if [ -n "$$GCC_RUNTEST_PARALLELIZE_DIR" ] ; then \
4340 touch $${rootme}/$(TESTSUITEDIR)/$(check_p_tool)-parallel/finished; \
4341 fi ; \
4342 fi )
4344 # QMTest targets
4346 # The path to qmtest.
4347 QMTEST_PATH=qmtest
4349 # The flags to pass to qmtest.
4350 QMTESTFLAGS=
4352 # The flags to pass to "qmtest run".
4353 QMTESTRUNFLAGS=-f none --result-stream dejagnu_stream.DejaGNUStream
4355 # The command to use to invoke qmtest.
4356 QMTEST=${QMTEST_PATH} ${QMTESTFLAGS}
4358 # The tests (or suites) to run.
4359 QMTEST_GPP_TESTS=g++
4361 # The subdirectory of the OBJDIR that will be used to store the QMTest
4362 # test database configuration and that will be used for temporary
4363 # scratch space during QMTest's execution.
4364 QMTEST_DIR=qmtestsuite
4366 # Create the QMTest database configuration.
4367 ${QMTEST_DIR} stamp-qmtest:
4368 ${QMTEST} -D ${QMTEST_DIR} create-tdb \
4369 -c gcc_database.GCCDatabase \
4370 -a srcdir=`cd ${srcdir}/testsuite && ${PWD_COMMAND}` && \
4371 $(STAMP) stamp-qmtest
4373 # Create the QMTest context file.
4374 ${QMTEST_DIR}/context: stamp-qmtest
4375 rm -f $@
4376 echo "CompilerTable.languages=c cplusplus" >> $@
4377 echo "CompilerTable.c_kind=GCC" >> $@
4378 echo "CompilerTable.c_path=${objdir}/xgcc" >> $@
4379 echo "CompilerTable.c_options=-B${objdir}/" >> $@
4380 echo "CompilerTable.cplusplus_kind=GCC" >> $@
4381 echo "CompilerTable.cplusplus_path=${objdir}/xg++" >> $@
4382 echo "CompilerTable.cplusplus_options=-B${objdir}/" >> $@
4383 echo "DejaGNUTest.target=${target_noncanonical}" >> $@
4385 # Run the G++ testsuite using QMTest.
4386 qmtest-g++: ${QMTEST_DIR}/context
4387 cd ${QMTEST_DIR} && ${QMTEST} run ${QMTESTRUNFLAGS} -C context \
4388 -o g++.qmr ${QMTEST_GPP_TESTS}
4390 # Use the QMTest GUI.
4391 qmtest-gui: ${QMTEST_DIR}/context
4392 cd ${QMTEST_DIR} && ${QMTEST} gui -C context
4394 .PHONY: qmtest-g++
4396 # Run Paranoia on real.cc.
4398 paranoia.o: $(srcdir)/../contrib/paranoia.cc $(CONFIG_H) $(SYSTEM_H) $(TREE_H)
4399 g++ -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $< $(OUTPUT_OPTION)
4401 paranoia: paranoia.o real.o $(LIBIBERTY)
4402 g++ -o $@ paranoia.o real.o $(LIBIBERTY)
4404 # These exist for maintenance purposes.
4406 CTAGS=@CTAGS@
4407 ETAGS=@ETAGS@
4408 CSCOPE=@CSCOPE@
4410 # Update the tags table.
4411 TAGS: lang.tags
4412 (cd $(srcdir); \
4413 incs= ; \
4414 list='$(SUBDIRS)'; for dir in $$list; do \
4415 if test -f $$dir/TAGS; then \
4416 incs="$$incs --include $$dir/TAGS.sub"; \
4417 fi; \
4418 done; \
4419 $(ETAGS) -o TAGS.sub c-family/*.h c-family/*.cc \
4420 *.h *.cc \
4421 ../include/*.h ../libiberty/*.c \
4422 ../libcpp/*.cc ../libcpp/include/*.h \
4423 --language=none --regex="/\(char\|unsigned int\|int\|bool\|void\|HOST_WIDE_INT\|enum [A-Za-z_0-9]+\) [*]?\([A-Za-z_0-9]+\)/\2/" common.opt \
4424 --language=none --regex="/\(DEF_RTL_EXPR\|DEFTREECODE\|DEFGSCODE\|DEFTIMEVAR\|DEFPARAM\|DEFPARAMENUM5\)[ ]?(\([A-Za-z_0-9]+\)/\2/" rtl.def tree.def gimple.def timevar.def \
4426 $(ETAGS) --include TAGS.sub $$incs)
4428 # -----------------------------------------------------
4429 # Rules for generating translated message descriptions.
4430 # Disabled by autoconf if the tools are not available.
4431 # -----------------------------------------------------
4433 XGETTEXT = @XGETTEXT@
4434 GMSGFMT = @GMSGFMT@
4435 MSGMERGE = msgmerge
4436 CATALOGS = $(patsubst %,po/%,@CATALOGS@)
4438 .PHONY: build- install- build-po install-po update-po
4440 # Dummy rules to deal with dependencies produced by use of
4441 # "build-@POSUB@" and "install-@POSUB@" above, when NLS is disabled.
4442 build-: ; @true
4443 install-: ; @true
4445 build-po: $(CATALOGS)
4447 # This notation should be acceptable to all Make implementations used
4448 # by people who are interested in updating .po files.
4449 update-po: $(CATALOGS:.gmo=.pox)
4451 # N.B. We do not attempt to copy these into $(srcdir). The snapshot
4452 # script does that.
4453 .po.gmo:
4454 $(mkinstalldirs) po
4455 $(GMSGFMT) --statistics -o $@ $<
4457 # The new .po has to be gone over by hand, so we deposit it into
4458 # build/po with a different extension.
4459 # If build/po/gcc.pot exists, use it (it was just created),
4460 # else use the one in srcdir.
4461 .po.pox:
4462 $(mkinstalldirs) po
4463 $(MSGMERGE) $< `if test -f po/gcc.pot; \
4464 then echo po/gcc.pot; \
4465 else echo $(srcdir)/po/gcc.pot; fi` -o $@
4467 # This rule has to look for .gmo modules in both srcdir and
4468 # the cwd, and has to check that we actually have a catalog
4469 # for each language, in case they weren't built or included
4470 # with the distribution.
4471 install-po:
4472 $(mkinstalldirs) $(DESTDIR)$(datadir)
4473 cats="$(CATALOGS)"; for cat in $$cats; do \
4474 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
4475 if [ -f $$cat ]; then :; \
4476 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
4477 else continue; \
4478 fi; \
4479 dir=$(localedir)/$$lang/LC_MESSAGES; \
4480 echo $(mkinstalldirs) $(DESTDIR)$$dir; \
4481 $(mkinstalldirs) $(DESTDIR)$$dir || exit 1; \
4482 echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/gcc.mo; \
4483 $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/gcc.mo; \
4484 done
4486 # Rule for regenerating the message template (gcc.pot).
4487 # Instead of forcing everyone to edit POTFILES.in, which proved impractical,
4488 # this rule has no dependencies and always regenerates gcc.pot. This is
4489 # relatively harmless since the .po files do not directly depend on it.
4490 # Note that exgettext has an awk script embedded in it which requires a
4491 # fairly modern (POSIX-compliant) awk.
4492 # The .pot file is left in the build directory.
4493 gcc.pot: po/gcc.pot
4494 po/gcc.pot: force
4495 $(mkinstalldirs) po
4496 $(MAKE) srcextra
4497 AWK=$(AWK) $(SHELL) $(srcdir)/po/exgettext \
4498 $(XGETTEXT) gcc $(srcdir)
4502 # Dependency information.
4504 # In order for parallel make to really start compiling the expensive
4505 # objects from $(OBJS) as early as possible, build all their
4506 # prerequisites strictly before all objects.
4507 $(ALL_HOST_OBJS) : | $(generated_files)
4509 # Include the auto-generated dependencies for all host objects.
4510 DEPFILES = \
4511 $(foreach obj,$(ALL_HOST_OBJS),\
4512 $(dir $(obj))$(DEPDIR)/$(patsubst %.o,%.Po,$(notdir $(obj))))
4513 -include $(DEPFILES)