1 # Makefile for GNU Compiler Collection
2 # Run 'configure' to generate Makefile from Makefile.in
4 # Copyright (C) 1987-2022 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)
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.internal
# @ALL@
31 # Depend on this to specify a phony target portably.
34 # This tells GNU make version 3 not to export the variables
35 # defined in this file into the environment (and thus recursive makes).
38 # And this tells it not to automatically pass command-line variables
42 # Suppress smart makes who think they know how to automake yacc and flex file
46 # The only suffixes we want for implicit rules are .c and .o, so clear
47 # the list and add them. This speeds up GNU Make, and allows -r to work.
48 # For i18n support, we also need .gmo, .po, .pox.
49 # This must come before the language makefile fragments to allow them to
50 # add suffixes and rules of their own.
52 .SUFFIXES
: .c .
cc .o .po .pox .gmo
54 # -------------------------------
55 # Standard autoconf-set variables
56 # -------------------------------
60 host_noncanonical
=@host_noncanonical@
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
:= s
,^
,sd
, # @program_transform_name@
73 # -----------------------------
74 # Directories used during build
75 # -----------------------------
77 # Directory where sources are, from where we are.
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.
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
:= ..
103 toplevel_builddir
:= ..
/..
106 build_objdir
:= $(toplevel_builddir
)/$(build_subdir
)
107 build_libobjdir
:= $(toplevel_builddir
)/$(build_libsubdir
)
108 target_objdir
:= $(toplevel_builddir
)/$(target_subdir
)
114 # Directory where sources are, from where we are.
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
129 # Extra flags to pass to indicate cross compilation, which
130 # might be used or tested by Make-lang fragments.
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)
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.
153 CXXFLAGS
= @CXXFLAGS@
156 # Should we build position-independent host code?
159 # Flags to determine code coverage. When coverage is disabled, this will
160 # contain the optimization flags, as you normally want code coverage
161 # without optimization.
162 COVERAGE_FLAGS
= @coverage_flags@
163 coverageexts
= .
{gcda
,gcno
}
165 # The warning flags are separate from CFLAGS because people tend to
166 # override optimization flags and we'd like them to still have warnings
167 # turned on. These flags are also used to pass other stage dependent
168 # flags from configure. The user is free to explicitly turn these flags
170 # LOOSE_WARN are the warning flags to use when compiling something
171 # which is only compiled with gcc, such as libgcc.
172 # C_LOOSE_WARN is similar, but with C-only warnings.
173 # STRICT_WARN are the additional warning flags to
174 # apply to the back end and some front ends, which may be compiled
175 # with other compilers.
176 # C_STRICT_WARN is similar, with C-only warnings.
177 LOOSE_WARN
= @loose_warn@
178 C_LOOSE_WARN
= @c_loose_warn@
179 STRICT_WARN
= @strict_warn@
180 C_STRICT_WARN
= @c_strict_warn@
182 # This is set by --enable-checking. The idea is to catch forgotten
183 # "extern" tags in header files.
184 NOCOMMON_FLAG
= @nocommon_flag@
186 NOEXCEPTION_FLAGS
= @noexception_flags@
188 ALIASING_FLAGS
= @aliasing_flags@
190 # This is set by --disable-maintainer-mode (default) to "#"
191 # FIXME: 'MAINT' will always be set to an empty string, no matter if
192 # --disable-maintainer-mode is used or not. This is because the
193 # following will expand to "MAINT := " in maintainer mode, and to
194 # "MAINT := #" in non-maintainer mode, but because '#' starts a comment,
195 # they mean exactly the same thing for make.
198 # The following provides the variable ENABLE_MAINTAINER_RULES that can
199 # be used in language Make-lang.in makefile fragments to enable
200 # maintainer rules. So, ENABLE_MAINTAINER_RULES is 'true' in
201 # maintainer mode, and '' otherwise.
202 @MAINT@ ENABLE_MAINTAINER_RULES
= true
204 # These are set by --enable-checking=valgrind.
205 RUN_GEN
= @valgrind_command@
206 VALGRIND_DRIVER_DEFINES
= @valgrind_path_defines@
208 # This is how we control whether or not the additional warnings are applied.
209 .
-warn
= $(STRICT_WARN
)
210 build-warn
= $(STRICT_WARN
)
211 rtl-ssa-warn
= $(STRICT_WARN
)
212 GCC_WARN_CFLAGS
= $(LOOSE_WARN
) $(C_LOOSE_WARN
) $($(@D
)-warn
) $(if
$(filter-out $(STRICT_WARN
),$($(@D
)-warn
)),,$(C_STRICT_WARN
)) $(NOCOMMON_FLAG
) $($@
-warn
)
213 GCC_WARN_CXXFLAGS
= $(LOOSE_WARN
) $($(@D
)-warn
) $(NOCOMMON_FLAG
) $($@
-warn
)
215 # These files are to have specific diagnostics suppressed, or are not to
216 # be subject to -Werror:
217 # flex output may yield harmless "no previous prototype" warnings
218 build
/gengtype-lex.o-warn
= -Wno-error
219 gengtype-lex.o-warn
= -Wno-error
220 libgcov-util.o-warn
= -Wno-error
221 libgcov-driver-tool.o-warn
= -Wno-error
222 libgcov-merge-tool.o-warn
= -Wno-error
223 gimple-match.o-warn
= -Wno-unused
224 generic-match.o-warn
= -Wno-unused
225 dfp.o-warn
= -Wno-strict-aliasing
227 # All warnings have to be shut off in stage1 if the compiler used then
228 # isn't gcc; configure determines that. WARN_CFLAGS will be either
229 # $(GCC_WARN_CFLAGS), or nothing. Similarly, WARN_CXXFLAGS will be
230 # either $(GCC_WARN_CXXFLAGS), or nothing.
231 WARN_CFLAGS
= @warn_cflags@
232 WARN_CXXFLAGS
= @warn_cxxflags@
234 CPPFLAGS
= @CPPFLAGS@
247 RANLIB_FLAGS
= @ranlib_flags@
249 # Libraries to use on the host.
250 HOST_LIBS
= @HOST_LIBS@
252 # The name of the compiler to use.
254 COMPILER_FLAGS
= $(CXXFLAGS
)
255 # If HOST_LIBS is set, then the user is controlling the libraries to
256 # link against. In that case, link with $(CC) so that the -lstdc++
257 # library is not introduced. If HOST_LIBS is not set, link with
258 # $(CXX) to pick up -lstdc++.
261 LINKER_FLAGS
= $(CXXFLAGS
)
264 LINKER_FLAGS
= $(CFLAGS
)
267 # Enable Intel CET on Intel CET enabled host if needed.
268 CET_HOST_FLAGS
= @CET_HOST_FLAGS@
269 COMPILER
+= $(CET_HOST_FLAGS
)
271 NO_PIE_CFLAGS
= @NO_PIE_CFLAGS@
272 NO_PIE_FLAG
= @NO_PIE_FLAG@
274 # We don't want to compile the compilers with -fPIE, it make PCH fail.
275 COMPILER
+= $(NO_PIE_CFLAGS
)
277 # Link with -no-pie since we compile the compiler with -fno-PIE.
278 LINKER
+= $(NO_PIE_FLAG
)
280 # Like LINKER, but use a mutex for serializing front end links.
281 ifeq (@DO_LINK_MUTEX@
,true
)
282 LLINKER
= $(SHELL
) $(srcdir)/lock-and-run.sh linkfe.lck
$(LINKER
)
287 THIN_ARCHIVE_SUPPORT
= @thin_archive_support@
289 USE_THIN_ARCHIVES
= no
290 ifeq ($(THIN_ARCHIVE_SUPPORT
),yes
)
291 ifeq ($(AR_FLAGS
),rc
)
292 ifeq ($(RANLIB_FLAGS
),)
293 USE_THIN_ARCHIVES
= yes
298 # -------------------------------------------
299 # Programs which operate on the build machine
300 # -------------------------------------------
303 # pwd command to use. Allow user to override default by setting PWDCMD in
304 # the environment to account for automounters. The make variable must not
305 # be called PWDCMD, otherwise the value set here is passed to make
306 # subprocesses and overrides the setting from the user's environment.
307 # Don't use PWD since it is a common shell environment variable and we
308 # don't want to corrupt it.
309 PWD_COMMAND
= $${PWDCMD-pwd
}
310 # on sysV, define this as cp.
312 # Some systems may be missing symbolic links, regular links, or both.
313 # Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate.
316 # These permit overriding just for certain files.
317 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
318 INSTALL_DATA
= @INSTALL_DATA@
319 INSTALL_SCRIPT
= @INSTALL@
320 install_sh
= $(SHELL
) $(srcdir)/..
/install-sh
321 INSTALL_STRIP_PROGRAM
= $(install_sh
) -c
-s
322 MAKEINFO
= @MAKEINFO@
323 MAKEINFOFLAGS
= --no-split
326 TEXI2HTML
= $(MAKEINFO
) --html
327 TEXI2POD
= perl
$(srcdir)/..
/contrib
/texi2pod.pl
328 POD2MAN
= pod2man
--center
="GNU" --release
="gcc-$(version)" --date
=$(shell sed
's/\(....\)\(..\)\(..\)/\1-\2-\3/' <$(DATESTAMP
))
329 # Some versions of `touch' (such as the version on Solaris 2.8)
330 # do not correctly set the timestamp due to buggy versions of `utime'
331 # in the kernel. So, we use `echo' instead.
332 STAMP
= echo timestamp
>
333 # If necessary (e.g., when using the MSYS shell on Microsoft Windows)
334 # translate the shell's notion of absolute pathnames to the native
336 build_file_translate
= @build_file_translate@
338 # Make sure the $(MAKE) variable is defined.
341 # Locate mkinstalldirs.
342 mkinstalldirs
=$(SHELL
) $(srcdir)/..
/mkinstalldirs
344 # write_entries_to_file - writes each entry in a list
345 # to the specified file. Entries are written in chunks of
346 # $(write_entries_to_file_split) to accommodate systems with
347 # severe command-line-length limitations.
349 # $(1): variable containing entries to iterate over
351 write_entries_to_file_split
= 50
352 write_entries_to_file
= $(shell rm -f
$(2) ||
:) $(shell touch
$(2)) \
354 $(shell i
=1; while
test $$i -le
$(words $(1)); do \
355 echo
$$i; i
=`expr $$i + $(write_entries_to_file_split)`; done
), \
356 $(shell echo
"$(wordlist $(range), \
357 $(shell expr $(range) + $(write_entries_to_file_split) - 1), $(1))" \
358 | tr
' ' '\012' >> $(2)))
360 # The jit documentation looks better if built with sphinx, but can be
361 # built with texinfo if sphinx is not available.
362 # configure sets "doc_build_sys" to "sphinx" or "texinfo" accordingly
363 doc_build_sys
=@doc_build_sys@
369 # Dependency tracking stuff.
370 CXXDEPMODE
= @CXXDEPMODE@
372 depcomp
= $(SHELL
) $(srcdir)/..
/depcomp
374 # In the past we used AC_PROG_CC_C_O and set this properly, but
375 # it was discovered that this hadn't worked in a long time, so now
377 OUTPUT_OPTION
= -o
$@
379 # This is where we get zlib from. zlibdir is -L../zlib and zlibinc is
380 # -I../zlib, unless we were configured with --with-system-zlib, in which
381 # case both are empty.
386 GMPLIBS
= # @GMPLIBS@
393 # Set to 'yes' if the LTO front end is enabled.
394 enable_lto
= @enable_lto@
396 # Compiler and flags needed for plugin support
398 PLUGINCFLAGS
= @CXXFLAGS@
400 # Libs and linker options needed for plugin support
401 PLUGINLIBS
= @pluginlibs@
403 enable_plugin
= @enable_plugin@
405 # On MinGW plugin installation involves installing import libraries.
406 ifeq ($(enable_plugin
),yes
)
407 plugin_implib
:= $(if
$(strip $(filter mingw
%,$(host_os
))),yes
,no
)
410 enable_host_shared
= @enable_host_shared@
412 enable_as_accelerator
= @enable_as_accelerator@
414 CPPLIB
= ..
/libcpp
/libcpp.a
415 CPPINC
= -I
$(srcdir)/..
/libcpp
/include
417 CODYLIB
= ..
/libcody
/libcody.a
418 CODYINC
= -I
$(srcdir)/..
/libcody
421 # Where to find decNumber
422 enable_decimal_float
= @enable_decimal_float@
423 DECNUM
= $(srcdir)/..
/libdecnumber
424 DECNUMFMT
= $(srcdir)/..
/libdecnumber
/$(enable_decimal_float
)
425 DECNUMINC
= -I
$(DECNUM
) -I
$(DECNUMFMT
) -I..
/libdecnumber
426 LIBDECNUMBER
= # ../libdecnumber/libdecnumber.a
428 # The backtrace library.
429 BACKTRACE
= $(srcdir)/..
/libbacktrace
430 BACKTRACEINC
= -I
$(BACKTRACE
)
431 LIBBACKTRACE
= ..
/libbacktrace
/.libs
/libbacktrace.a
433 # Target to use when installing include directory. Either
434 # install-headers-tar, install-headers-cpio or install-headers-cp.
435 INSTALL_HEADERS_DIR
= @build_install_headers_dir@
437 # Header files that are made available under the same name
438 # to programs compiled with GCC.
439 USER_H_
= $(srcdir)/ginclude
/float.h \
440 $(srcdir)/ginclude
/iso646.h \
441 $(srcdir)/ginclude
/stdarg.h \
442 $(srcdir)/ginclude
/stdbool.h \
443 $(srcdir)/ginclude
/stddef.h \
444 $(srcdir)/ginclude
/varargs.h \
445 $(srcdir)/ginclude
/stdfix.h \
446 $(srcdir)/ginclude
/stdnoreturn.h \
447 $(srcdir)/ginclude
/stdalign.h \
448 $(srcdir)/ginclude
/stdatomic.h \
451 USER_H_INC_NEXT_PRE
= @user_headers_inc_next_pre@
452 USER_H_INC_NEXT_POST
= @user_headers_inc_next_post@
454 # Enable target overriding of this fragment, as in config/t-vxworks.
455 T_GLIMITS_H
= # $(srcdir)/glimits.h
456 T_STDINT_GCC_H
= # $(srcdir)/ginclude/stdint-gcc.h
458 # The GCC to use for compiling crt*.o.
459 # Usually the one we just built.
460 # Don't use this as a dependency--use $(GCC_PASSES).
461 GCC_FOR_TARGET
= $(STAGE_CC_WRAPPER
) .
/xgcc
-B.
/ -B
$(build_tooldir
)/bin
/ -isystem
$(build_tooldir
)/include -isystem
$(build_tooldir
)/sys-include
-L
$(objdir
)/..
/ld
463 # Set if the compiler was configured with --with-build-sysroot.
464 SYSROOT_CFLAGS_FOR_TARGET
= @SYSROOT_CFLAGS_FOR_TARGET@
466 # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
468 # It also specifies -isystem ./include to find, e.g., stddef.h.
469 GCC_CFLAGS
=$(CFLAGS_FOR_TARGET
) $(INTERNAL_CFLAGS
) $(T_CFLAGS
) $(LOOSE_WARN
) $(C_LOOSE_WARN
) -Wold-style-definition
$($@
-warn
) -isystem .
/include $(TCFLAGS
)
471 # ---------------------------------------------------
472 # Programs which produce files for the target machine
473 # ---------------------------------------------------
475 AR_FOR_TARGET
:= $(shell \
476 if
[ -f
$(objdir
)/..
/binutils
/ar ] ; then \
477 echo
$(objdir
)/..
/binutils
/ar ; \
479 if
[ "$(host)" = "$(target)" ] ; then \
482 t
='$(program_transform_name)'; echo
ar | sed
-e
"$$t" ; \
485 AR_FLAGS_FOR_TARGET
=
486 AR_CREATE_FOR_TARGET
= $(AR_FOR_TARGET
) $(AR_FLAGS_FOR_TARGET
) rc
487 AR_EXTRACT_FOR_TARGET
= $(AR_FOR_TARGET
) $(AR_FLAGS_FOR_TARGET
) x
488 LIPO_FOR_TARGET
= lipo
489 ORIGINAL_AS_FOR_TARGET
= @ORIGINAL_AS_FOR_TARGET@
490 RANLIB_FOR_TARGET
:= $(shell \
491 if
[ -f
$(objdir
)/..
/binutils
/ranlib
] ; then \
492 echo
$(objdir
)/..
/binutils
/ranlib
; \
494 if
[ "$(host)" = "$(target)" ] ; then \
497 t
='$(program_transform_name)'; echo ranlib | sed
-e
"$$t" ; \
500 ORIGINAL_LD_FOR_TARGET
= @ORIGINAL_LD_FOR_TARGET@
501 ORIGINAL_NM_FOR_TARGET
= @ORIGINAL_NM_FOR_TARGET@
503 STRIP_FOR_TARGET
:= $(shell \
504 if
[ -f
$(objdir
)/..
/binutils
/strip-new
] ; then \
505 echo
$(objdir
)/..
/binutils
/strip-new
; \
507 if
[ "$(host)" = "$(target)" ] ; then \
510 t
='$(program_transform_name)'; echo
strip | sed
-e
"$$t" ; \
518 # Where to find some libiberty headers.
519 HASHTAB_H
= $(srcdir)/..
/include/hashtab.h
520 OBSTACK_H
= $(srcdir)/..
/include/obstack.h
521 SPLAY_TREE_H
= $(srcdir)/..
/include/splay-tree.h
522 MD5_H
= $(srcdir)/..
/include/md5.h
523 XREGEX_H
= $(srcdir)/..
/include/xregex.h
524 FNMATCH_H
= $(srcdir)/..
/include/fnmatch.h
526 # Linker plugin API headers
527 LINKER_PLUGIN_API_H
= $(srcdir)/..
/include/plugin-api.h
529 # Default native SYSTEM_HEADER_DIR, to be overridden by targets.
530 NATIVE_SYSTEM_HEADER_DIR
= @NATIVE_SYSTEM_HEADER_DIR@
531 # Default cross SYSTEM_HEADER_DIR, to be overridden by targets.
532 CROSS_SYSTEM_HEADER_DIR
= @CROSS_SYSTEM_HEADER_DIR@
534 # autoconf sets SYSTEM_HEADER_DIR to one of the above.
535 # Purge it of unnecessary internal relative paths
536 # to directories that might not exist yet.
537 # The sed idiom for this is to repeat the search-and-replace until it doesn't match, using :a ... ta.
538 # Use single quotes here to avoid nested double- and backquotes, this
539 # macro is also used in a double-quoted context.
540 SYSTEM_HEADER_DIR
= `echo @SYSTEM_HEADER_DIR@ | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta`
542 # Path to the system headers on the build machine.
543 BUILD_SYSTEM_HEADER_DIR
= `echo @BUILD_SYSTEM_HEADER_DIR@ | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta`
545 # Control whether to run fixincludes.
546 STMP_FIXINC
= # @STMP_FIXINC@
548 # Test to see whether <limits.h> exists in the system header files.
549 LIMITS_H_TEST
= [ -f
$(BUILD_SYSTEM_HEADER_DIR
)/limits.h
]
551 # Directory for prefix to system directories, for
552 # each of $(system_prefix)/usr/include, $(system_prefix)/usr/lib, etc.
553 TARGET_SYSTEM_ROOT
= @TARGET_SYSTEM_ROOT@
554 TARGET_SYSTEM_ROOT_DEFINE
= @TARGET_SYSTEM_ROOT_DEFINE@
556 xmake_file
=# @xmake_file@
557 tmake_file
=# @tmake_file@
558 TM_ENDIAN_CONFIG
=@TM_ENDIAN_CONFIG@
559 TM_MULTILIB_CONFIG
=@TM_MULTILIB_CONFIG@
560 TM_MULTILIB_EXCEPTIONS_CONFIG
=@TM_MULTILIB_EXCEPTIONS_CONFIG@
561 out_file
=$(srcdir)/config
/@out_file@
562 out_object_file
=@out_object_file@
563 common_out_file
=$(srcdir)/common
/config
/@common_out_file@
564 common_out_object_file
=@common_out_object_file@
566 md_file
=$(srcdir)/common.md
$(srcdir)/config
/@md_file@
567 tm_file_list
=@tm_file_list@
568 tm_include_list
=@tm_include_list@
569 tm_defines
=@tm_defines@
570 tm_p_file_list
=@tm_p_file_list@
571 tm_p_include_list
=@tm_p_include_list@
572 tm_d_file_list
=@tm_d_file_list@
573 tm_d_include_list
=@tm_d_include_list@
574 tm_file_list
=options.h
$(srcdir)/config
/dummy
/dummy.h
$(srcdir)/config
/dummy
/unix.h
$(srcdir)/config
/gnu-user.h
$(srcdir)/config
/glibc-stdint.h
$(srcdir)/config
/linux.h
$(srcdir)/config
/dummy
/linux-common.h
$(srcdir)/defaults.h
575 tm_include_list
=options.h insn-constants.h config
/dummy
/dummy.h config
/dummy
/unix.h config
/gnu-user.h config
/glibc-stdint.h config
/linux.h config
/dummy
/linux-common.h defaults.h
576 tm_p_file_list
= $(srcdir)/config
/dummy
/dummy-protos.h
$(srcdir)/config
/linux-protos.h tm-preds.h
577 tm_p_include_list
= config
/dummy
/dummy-protos.h config
/linux-protos.h tm-preds.h
578 tm_d_file_list
= $(srcdir)/config
/dummy
/dummy.h
$(srcdir)/config
/dummy
/dummy-protos.h
$(srcdir)/defaults.h
579 tm_d_include_list
=options.h insn-constants.h config
/dummy
/dummy.h config
/dummy
/dummy-protos.h defaults.h
580 build_xm_file_list
=@build_xm_file_list@
581 build_xm_include_list
=@build_xm_include_list@
582 build_xm_defines
=@build_xm_defines@
583 host_xm_file_list
=@host_xm_file_list@
584 host_xm_include_list
=@host_xm_include_list@
585 host_xm_defines
=@host_xm_defines@
586 xm_file_list
=@xm_file_list@
587 xm_include_list
=@xm_include_list@
588 xm_defines
=@xm_defines@
590 lang_checks_parallelized
=
591 lang_opt_files
=@lang_opt_files@
$(srcdir)/c-family
/c.opt
$(srcdir)/common.opt
$(srcdir)/params.opt
$(srcdir)/analyzer
/analyzer.opt
592 lang_specs_files
=@lang_specs_files@
593 lang_tree_files
=@lang_tree_files@
594 target_cpu_default
=@target_cpu_default@
595 OBJC_BOEHM_GC
=@objc_boehm_gc@
596 extra_modes_file
=@extra_modes_file@
597 extra_opt_files
=@extra_opt_files@
598 extra_opt_files
= $(srcdir)/config
/fused-madd.opt
$(srcdir)/config
/dummy
/dummy.opt
$(srcdir)/config
/gnu-user.opt
$(srcdir)/config
/linux.opt
599 host_hook_obj
=@out_host_hook_obj@
602 enable_multiarch
= @enable_multiarch@
603 with_cpu
= @with_cpu@
604 with_float
= @with_float@
605 ifeq ($(enable_multiarch
),yes
)
608 ifeq ($(enable_multiarch
),auto
)
609 # SYSTEM_HEADER_DIR is makefile syntax, cannot be evaluated in configure.ac
610 if_multiarch
= $(if
$(wildcard $(shell echo
$(BUILD_SYSTEM_HEADER_DIR
))/..
/..
/usr
/lib
/*/crti.o
),$(1))
616 # ------------------------
617 # Installation directories
618 # ------------------------
620 # Common prefix for installation directories.
621 # NOTE: This directory must exist when you start installation.
623 # Directory in which to put localized header files. On the systems with
624 # gcc as the native cc, `local_prefix' may not be `prefix' which is
626 # NOTE: local_prefix *should not* default from prefix.
627 local_prefix
= @local_prefix@
628 # Directory in which to put host dependent programs and libraries
629 exec_prefix = @
exec_prefix@
630 # Directory in which to put the executable for the command `gcc'
632 # Directory in which to put the directories used by the compiler.
634 # Directory in which GCC puts its executables.
635 libexecdir
= @libexecdir@
641 # Directory in which the compiler finds libraries etc.
642 libsubdir
= $(libdir)/sdcc
/$(real_target_noncanonical
)/$(version
)$(accel_dir_suffix
)
643 # Directory in which the compiler finds executables
644 libexecsubdir
= $(libexecdir
)/sdcc
/$(real_target_noncanonical
)/$(version
)$(accel_dir_suffix
)
645 # Directory in which all plugin resources are installed
646 plugin_resourcesdir
= $(libsubdir
)/plugin
647 # Directory in which plugin headers are installed
648 plugin_includedir
= $(plugin_resourcesdir
)/include
649 # Directory in which plugin specific executables are installed
650 plugin_bindir
= $(libexecsubdir
)/plugin
651 # Used to produce a relative $(gcc_tooldir) in gcc.o
652 ifeq ($(enable_as_accelerator
),yes
)
653 unlibsubdir
= ..
/..
/..
/..
/..
655 unlibsubdir
= ..
/..
/..
657 # $(prefix), expressed as a path relative to $(libsubdir).
659 # An explanation of the sed strings:
660 # -e 's|^$(prefix)||' matches and eliminates 'prefix' from 'exec_prefix'
661 # -e 's|/$$||' match a trailing forward slash and eliminates it
662 # -e 's|^[^/]|/|' forces the string to start with a forward slash (*)
663 # -e 's|/[^/]*|../|g' replaces each occurrence of /<directory> with ../
665 # (*) Note this pattern overwrites the first character of the string
666 # with a forward slash if one is not already present. This is not a
667 # problem because the exact names of the sub-directories concerned is
668 # unimportant, just the number of them matters.
670 # The practical upshot of these patterns is like this:
672 # prefix exec_prefix result
673 # ------ ----------- ------
677 # /foo/ /foo/bar/ ../
678 # /foo /foo/bar/ugg ../../
679 libsubdir_to_prefix
:= \
680 $(unlibsubdir
)/$(shell echo
"$(libdir)" | \
681 sed
-e
's|^$(prefix)||' -e
's|/$$||' -e
's|^[^/]|/|' \
683 # $(exec_prefix), expressed as a path relative to $(prefix).
684 prefix_to_exec_prefix
:= \
685 $(shell echo
"$(exec_prefix)" | \
686 sed
-e
's|^$(prefix)||' -e
's|^/||' -e
'/./s|$$|/|')
687 # Directory in which to find other cross-compilation tools and headers.
689 # Used in install-cross.
690 gcc_tooldir
= @gcc_tooldir@
691 # Since gcc_tooldir does not exist at build-time, use -B$(build_tooldir)/bin/
692 build_tooldir
= $(exec_prefix)/$(target_noncanonical
)
693 # Directory in which the compiler finds target-independent g++ includes.
694 gcc_gxx_include_dir
= @gcc_gxx_include_dir@
695 gcc_gxx_include_dir_add_sysroot
= @gcc_gxx_include_dir_add_sysroot@
696 # Directory in which the compiler finds libc++ includes.
697 gcc_gxx_libcxx_include_dir
= @gcc_gxx_libcxx_include_dir@
698 gcc_gxx_libcxx_include_dir_add_sysroot
= @gcc_gxx_libcxx_include_dir_add_sysroot@
699 # Directory to search for site-specific includes.
700 local_includedir
= $(local_prefix
)/include
701 includedir = $(prefix)/include
702 # where the info files go
704 # Where cpp should go besides $prefix/bin if necessary
705 cpp_install_dir
= @cpp_install_dir@
706 # where the locale files go
708 localedir
= $(datadir)/locale
709 # Extension (if any) to put in installed man-page filename.
713 exeext
= @host_exeext@
714 build_exeext
= @build_exeext@
716 # Directory in which to put man pages.
718 man1dir = $(mandir)/man1
719 man7dir = $(mandir)/man7
720 # Dir for temp files.
723 datarootdir
= @datarootdir@
725 # Directory in which to put DVIs
727 # Directory in which to build HTML
728 build_htmldir
= $(objdir
)/HTML
/gcc-
$(version
)
729 # Directory in which to put HTML
732 # Whether we were configured with NLS.
735 # Internationalization library.
737 LIBINTL_DEP
= @LIBINTL_DEP@
739 # Character encoding conversion library.
740 LIBICONV
= @LIBICONV@
741 LIBICONV_DEP
= @LIBICONV_DEP@
743 # If a supplementary library is being used for the GC.
746 # "true" if the target C library headers are unavailable; "false"
748 inhibit_libc
= @inhibit_libc@
749 ifeq ($(inhibit_libc
),true
)
750 INHIBIT_LIBC_CFLAGS
= -Dinhibit_libc
753 # List of extra executables that should be compiled for this target machine
754 # that are used when linking.
755 # The rules for compiling them should be in the t-* file for the machine.
756 EXTRA_PROGRAMS
= @extra_programs@
758 # List of extra object files that should be compiled and linked with
759 # compiler proper (cc1, cc1obj, cc1plus).
760 EXTRA_OBJS
= @extra_objs@
762 # List of extra object files that should be compiled and linked with
764 EXTRA_GCC_OBJS
=@extra_gcc_objs@
766 # List of extra libraries that should be linked with the gcc driver.
767 EXTRA_GCC_LIBS
= @EXTRA_GCC_LIBS@
769 # List of additional header files to install.
770 EXTRA_HEADERS
=@extra_headers_list@
772 # How to handle <stdint.h>.
773 USE_GCC_STDINT
= no
# @use_gcc_stdint@
775 # The configure script will set this to collect2$(exeext), except on a
776 # (non-Unix) host which cannot build collect2, for which it will be
778 COLLECT2
= # @collect2@
780 # Program to convert libraries.
783 # Control whether header files are installed.
784 INSTALL_HEADERS
= # install-headers install-mkheaders
786 # Control whether Info documentation is built and installed.
787 BUILD_INFO
= @BUILD_INFO@
789 # Control whether manpages generated by texi2pod.pl can be rebuilt.
790 GENERATED_MANPAGES
= # @GENERATED_MANPAGES@
792 # Additional directories of header files to run fixincludes on.
793 # These should be directories searched automatically by default
794 # just as /usr/include is.
795 # *Do not* use this for directories that happen to contain
796 # header files, but are not searched automatically by default.
797 # On most systems, this is empty.
798 OTHER_FIXINCLUDES_DIRS
=
800 # A list of all the language-specific executables.
801 COMPILERS
= @all_compilers@
803 # List of things which should already be built whenever we try to use xgcc
804 # to compile anything (without linking).
805 GCC_PASSES
=xgcc
$(exeext
) specs
807 # Directory to link to, when using the target `maketest'.
810 # Native compiler for the build machine and its switches.
811 CC_FOR_BUILD
= @CC_FOR_BUILD@
812 CXX_FOR_BUILD
= @CXX_FOR_BUILD@
813 BUILD_CFLAGS
= @BUILD_CFLAGS@
$(GENERATOR_CFLAGS
) -DGENERATOR_FILE
814 BUILD_CXXFLAGS
= @BUILD_CXXFLAGS@
$(GENERATOR_CFLAGS
) -DGENERATOR_FILE
816 # Native compiler that we use. This may be C++ some day.
817 COMPILER_FOR_BUILD
= $(CXX_FOR_BUILD
)
818 BUILD_COMPILERFLAGS
= $(BUILD_CXXFLAGS
)
820 # Native linker that we use.
821 LINKER_FOR_BUILD
= $(CXX_FOR_BUILD
)
822 BUILD_LINKERFLAGS
= $(BUILD_CXXFLAGS
)
824 # Native linker and preprocessor flags. For x-fragment overrides.
825 BUILD_LDFLAGS
=@BUILD_LDFLAGS@
826 BUILD_CPPFLAGS
= -I.
-I
$(@D
) -I
$(srcdir) -I
$(srcdir)/$(@D
) \
827 -I
$(srcdir)/..
/include @INCINTL@
$(CPPINC
) $(CPPFLAGS
)
829 # Actual name to use when installing a native compiler.
830 GCC_INSTALL_NAME
:= $(shell echo gcc|sed
'$(program_transform_name)')
831 GCC_TARGET_INSTALL_NAME
:= $(target_noncanonical
)-$(shell echo gcc|sed
'$(program_transform_name)')
832 CPP_INSTALL_NAME
:= $(shell echo
cpp|sed
'$(program_transform_name)')
833 GCOV_INSTALL_NAME
:= $(shell echo gcov|sed
'$(program_transform_name)')
834 GCOV_TOOL_INSTALL_NAME
:= $(shell echo gcov-tool|sed
'$(program_transform_name)')
835 GCOV_DUMP_INSTALL_NAME
:= $(shell echo gcov-dump|sed
'$(program_transform_name)')
837 # Setup the testing framework, if you have one
838 EXPECT
= `if [ -f $${rootme}/../expect/expect ] ; then \
839 echo $${rootme}/../expect/expect ; \
840 else echo expect ; fi`
842 RUNTEST
= `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
843 echo $${srcdir}/../dejagnu/runtest ; \
844 else echo runtest; fi`
847 # This should name the specs file that we're going to install. Target
848 # Makefiles may override it and name another file to be generated from
849 # the built-in specs and installed as the default spec, as long as
850 # they also introduce a rule to generate a file name specs, to be used
854 # Extra include files that are defined by HeaderInclude directives in
858 # Extra include files that are defined by SourceInclude directives in
860 OPTIONS_C_EXTRA
= $(PRETTY_PRINT_H
)
864 # End of variables for you to override.
866 # GTM_H lists the config files that the generator files depend on,
867 # while TM_H lists the ones ordinary gcc files depend on, which
868 # includes several files generated by those generators.
869 BCONFIG_H
= bconfig.h
$(build_xm_file_list
)
870 CONFIG_H
= config.h
$(host_xm_file_list
)
871 TCONFIG_H
= tconfig.h
$(xm_file_list
)
872 TM_P_H
= tm_p.h
$(tm_p_file_list
)
873 TM_D_H
= tm_d.h
$(tm_d_file_list
)
874 GTM_H
= tm.h
$(tm_file_list
) # insn-constants.h
875 TM_H
= $(GTM_H
) # insn-flags.h $(OPTIONS_H)
877 # Variables for version information.
878 BASEVER
:= $(srcdir)/BASE-VER
# 4.x.y
879 DEVPHASE
:= $(srcdir)/DEV-PHASE
# experimental, prerelease, ""
880 DATESTAMP
:= $(srcdir)/DATESTAMP
# YYYYMMDD or empty
881 REVISION
:= $(srcdir)/REVISION
# [BRANCH revision XXXXXX]
883 BASEVER_c
:= $(shell cat
$(BASEVER
))
884 DEVPHASE_c
:= $(shell cat
$(DEVPHASE
))
885 DATESTAMP_c
:= $(shell cat
$(DATESTAMP
))
887 ifeq (,$(wildcard $(REVISION
)))
891 REVISION_c
:= $(shell cat
$(REVISION
))
894 version
:= $(shell @get_gcc_base_ver@
$(BASEVER
))
897 $(shell echo
$(BASEVER_c
) | sed
-e
's/^[0-9]*\.[0-9]*\.\([0-9]*\)$$/\1/')
900 # For use in version.cc - double quoted strings, with appropriate
901 # surrounding punctuation and spaces, and with the datestamp and
902 # development phase collapsed to the empty string in release mode
903 # (i.e. if DEVPHASE_c is empty and PATCHLEVEL_c is 0). The space
904 # immediately after the comma in the $(if ...) constructs is
905 # significant - do not remove it.
906 BASEVER_s
:= "\"$(BASEVER_c)\""
907 DEVPHASE_s
:= "\"$(if $(DEVPHASE_c), ($(DEVPHASE_c)))\""
909 "\"$(if $(DEVPHASE_c)$(filter-out 0,$(PATCHLEVEL_c)), $(DATESTAMP_c))\""
910 PKGVERSION_s
:= "\"@PKGVERSION@\""
911 BUGURL_s
:= "\"@REPORT_BUGS_TO@\""
913 PKGVERSION
:= @PKGVERSION@
914 BUGURL_TEXI
:= @REPORT_BUGS_TEXI@
918 "\"$(if $(DEVPHASE_c)$(filter-out 0,$(PATCHLEVEL_c)), $(REVISION_c))\""
923 # Shorthand variables for dependency lists.
924 DUMPFILE_H
= $(srcdir)/..
/libcpp
/include/line-map.h dumpfile.h
925 VEC_H
= vec.h statistics.h
$(GGC_H
)
926 HASH_TABLE_H
= $(HASHTAB_H
) hash-table.h
$(GGC_H
)
927 EXCEPT_H
= except.h
$(HASHTAB_H
)
928 TARGET_DEF
= target.def target-hooks-macros.h target-insns.def
929 C_TARGET_DEF
= c-family
/c-target.def target-hooks-macros.h
930 COMMON_TARGET_DEF
= common
/common-target.def target-hooks-macros.h
931 # D_TARGET_DEF = d/d-target.def target-hooks-macros.h
932 TARGET_H
= $(TM_H
) target.h
$(TARGET_DEF
) insn-modes.h insn-codes.h
933 C_TARGET_H
= c-family
/c-target.h
$(C_TARGET_DEF
)
934 COMMON_TARGET_H
= common
/common-target.h
$(INPUT_H
) $(COMMON_TARGET_DEF
)
935 # D_TARGET_H = d/d-target.h $(D_TARGET_DEF)
936 MACHMODE_H
= machmode.h mode-classes.def
938 HOSTHOOKS_DEF_H
= hosthooks-def.h
$(HOOKS_H
)
939 LANGHOOKS_DEF_H
= langhooks-def.h
$(HOOKS_H
)
940 TARGET_DEF_H
= target-def.h target-hooks-def.h
$(HOOKS_H
) targhooks.h
941 C_TARGET_DEF_H
= c-family
/c-target-def.h c-family
/c-target-hooks-def.h \
942 $(TREE_H
) $(C_COMMON_H
) $(HOOKS_H
) common
/common-targhooks.h
943 CORETYPES_H
= coretypes.h insn-modes.h signop.h wide-int.h wide-int-print.h \
944 insn-modes-inline.h
$(MACHMODE_H
) double-int.h
945 RTL_BASE_H
= $(CORETYPES_H
) rtl.h rtl.def reg-notes.def \
946 insn-notes.def
$(INPUT_H
) $(REAL_H
) statistics.h
$(VEC_H
) \
947 $(FIXED_VALUE_H
) alias.h
$(HASHTAB_H
)
948 FIXED_VALUE_H
= fixed-value.h
949 RTL_H
= $(RTL_BASE_H
) $(FLAGS_H
) genrtl.h
950 READ_MD_H
= $(OBSTACK_H
) $(HASHTAB_H
) read-md.h
951 BUILTINS_DEF
= builtins.def sync-builtins.def omp-builtins.def \
952 gtm-builtins.def sanitizer.def
953 INTERNAL_FN_DEF
= internal-fn.def
954 INTERNAL_FN_H
= internal-fn.h
$(INTERNAL_FN_DEF
)
955 TREE_CORE_H
= tree-core.h
$(CORETYPES_H
) all-tree.def tree.def \
956 c-family
/c-common.def
$(lang_tree_files
) \
957 $(BUILTINS_DEF
) $(INPUT_H
) statistics.h \
958 $(VEC_H
) treestruct.def
$(HASHTAB_H
) \
959 alias.h
$(SYMTAB_H
) $(FLAGS_H
) \
960 $(REAL_H
) $(FIXED_VALUE_H
)
961 TREE_H
= tree.h
$(TREE_CORE_H
) tree-check.h
962 REGSET_H
= regset.h
$(BITMAP_H
) hard-reg-set.h
963 # BASIC_BLOCK_H = basic-block.h $(PREDICT_H) $(VEC_H) $(FUNCTION_H) \
964 # cfg-flags.def cfghooks.h profile-count.h
965 GIMPLE_H
= gimple.h gimple.def gsstruct.def
$(VEC_H
) \
966 $(GGC_H
) $(BASIC_BLOCK_H
) $(TREE_H
) tree-ssa-operands.h \
967 tree-ssa-alias.h
$(INTERNAL_FN_H
) $(HASH_TABLE_H
) is-a.h
968 GCOV_IO_H
= gcov-io.h version.h auto-host.h gcov-counter.def
970 EMIT_RTL_H
= emit-rtl.h
971 FLAGS_H
= flags.h flag-types.h
$(OPTIONS_H
)
972 OPTIONS_H
= options.h flag-types.h
$(OPTIONS_H_EXTRA
)
973 FUNCTION_H
= function.h
$(HASHTAB_H
) $(TM_H
) hard-reg-set.h \
975 EXPR_H
= expr.h insn-config.h
$(FUNCTION_H
) $(RTL_H
) $(FLAGS_H
) $(TREE_H
) \
977 OPTABS_H
= optabs.h insn-codes.h insn-opinit.h
978 REGS_H
= regs.h hard-reg-set.h
979 CFGLOOP_H
= cfgloop.h
$(BASIC_BLOCK_H
) $(BITMAP_H
) sbitmap.h
980 IPA_UTILS_H
= ipa-utils.h
$(TREE_H
) $(CGRAPH_H
)
981 IPA_REFERENCE_H
= ipa-reference.h
$(BITMAP_H
) $(TREE_H
)
982 CGRAPH_H
= cgraph.h
$(VEC_H
) $(TREE_H
) $(BASIC_BLOCK_H
) $(FUNCTION_H
) \
983 cif-code.def ipa-ref.h
$(LINKER_PLUGIN_API_H
) is-a.h
984 DF_H
= df.h
$(BITMAP_H
) $(REGSET_H
) sbitmap.h
$(BASIC_BLOCK_H
) \
985 alloc-pool.h
$(TIMEVAR_H
)
986 RESOURCE_H
= resource.h hard-reg-set.h
$(DF_H
)
987 GCC_H
= gcc.h version.h
$(DIAGNOSTIC_CORE_H
)
988 GGC_H
= ggc.h gtype-desc.h statistics.h
989 TIMEVAR_H
= timevar.h timevar.def
990 INSN_ATTR_H
= insn-attr.h insn-attr-common.h
$(INSN_ADDR_H
)
991 INSN_ADDR_H
= $(srcdir)/insn-addr.h
992 C_COMMON_H
= c-family
/c-common.h c-family
/c-common.def
$(TREE_H
) \
993 $(SPLAY_TREE_H
) $(CPPLIB_H
) $(GGC_H
) $(DIAGNOSTIC_CORE_H
)
994 C_PRAGMA_H
= c-family
/c-pragma.h
$(CPPLIB_H
)
995 C_TREE_H
= c
/c-tree.h
$(C_COMMON_H
) $(DIAGNOSTIC_H
)
996 SYSTEM_H
= system.h hwint.h
$(srcdir)/..
/..
/sdbinutils
/include/libiberty.h \
997 $(srcdir)/..
/include/safe-ctype.h
$(srcdir)/..
/include/filenames.h
998 PREDICT_H
= predict.h predict.def
999 CPPLIB_H
= $(srcdir)/..
/libcpp
/include/line-map.h \
1000 $(srcdir)/..
/libcpp
/include/cpplib.h
1001 CODYLIB_H
= $(srcdir)/..
/libcody
/cody.hh
1002 INPUT_H
= $(srcdir)/..
/libcpp
/include/line-map.h input.h
1003 OPTS_H
= $(INPUT_H
) $(VEC_H
) opts.h
$(OBSTACK_H
)
1004 SYMTAB_H
= $(srcdir)/..
/libcpp
/include/symtab.h
$(OBSTACK_H
)
1005 CPP_INTERNAL_H
= $(srcdir)/..
/libcpp
/internal.h
1006 TREE_DUMP_H
= tree-dump.h
$(SPLAY_TREE_H
) $(DUMPFILE_H
)
1007 TREE_PASS_H
= tree-pass.h
$(TIMEVAR_H
) $(DUMPFILE_H
)
1008 TREE_SSA_H
= tree-ssa.h tree-ssa-operands.h \
1009 $(BITMAP_H
) sbitmap.h
$(BASIC_BLOCK_H
) $(GIMPLE_H
) \
1010 $(HASHTAB_H
) $(CGRAPH_H
) $(IPA_REFERENCE_H
) \
1012 PRETTY_PRINT_H
= pretty-print.h
$(INPUT_H
) $(OBSTACK_H
) wide-int-print.h
1013 TREE_PRETTY_PRINT_H
= tree-pretty-print.h
$(PRETTY_PRINT_H
)
1014 GIMPLE_PRETTY_PRINT_H
= gimple-pretty-print.h
$(TREE_PRETTY_PRINT_H
)
1015 DIAGNOSTIC_CORE_H
= diagnostic-core.h
$(INPUT_H
) bversion.h diagnostic.def
1016 DIAGNOSTIC_H
= diagnostic.h
$(DIAGNOSTIC_CORE_H
) $(PRETTY_PRINT_H
)
1017 C_PRETTY_PRINT_H
= c-family
/c-pretty-print.h
$(PRETTY_PRINT_H
) \
1018 $(C_COMMON_H
) $(TREE_H
)
1019 TREE_INLINE_H
= tree-inline.h
1021 LTO_STREAMER_H
= lto-streamer.h
$(LINKER_PLUGIN_API_H
) $(TARGET_H
) \
1022 $(CGRAPH_H
) $(VEC_H
) $(HASH_TABLE_H
) $(TREE_H
) $(GIMPLE_H
) \
1023 $(GCOV_IO_H
) $(DIAGNOSTIC_H
) alloc-pool.h
1024 IPA_PROP_H
= ipa-prop.h
$(TREE_H
) $(VEC_H
) $(CGRAPH_H
) $(GIMPLE_H
) alloc-pool.h
1025 BITMAP_H
= bitmap.h
$(HASHTAB_H
) statistics.h
1026 GCC_PLUGIN_H
= gcc-plugin.h highlev-plugin-common.h plugin.def \
1027 $(CONFIG_H
) $(SYSTEM_H
) $(HASHTAB_H
)
1028 PLUGIN_H
= plugin.h
$(GCC_PLUGIN_H
)
1029 PLUGIN_VERSION_H
= plugin-version.h configargs.h
1030 CONTEXT_H
= context.h
1031 GENSUPPORT_H
= gensupport.h read-md.h optabs.def
1032 RTL_SSA_H
= $(PRETTY_PRINT_H
) insn-config.h splay-tree-utils.h \
1033 $(RECOG_H
) $(REGS_H
) function-abi.h obstack-utils.h \
1034 mux-utils.h rtlanal.h memmodel.h
$(EMIT_RTL_H
) \
1035 rtl-ssa
/accesses.h rtl-ssa
/insns.h rtl-ssa
/blocks.h \
1036 rtl-ssa
/changes.h rtl-ssa
/functions.h rtl-ssa
/is-a.inl \
1037 rtl-ssa
/access-utils.h rtl-ssa
/insn-utils.h rtl-ssa
/movement.h \
1038 rtl-ssa
/change-utils.h rtl-ssa
/member-fns.inl
1041 # Now figure out from those variables how to compile and link.
1043 # IN_GCC distinguishes between code compiled into GCC itself and other
1044 # programs built during a bootstrap.
1045 # autoconf inserts -DCROSS_DIRECTORY_STRUCTURE if we are building a
1046 # cross compiler which does not use the native headers and libraries.
1047 INTERNAL_CFLAGS
= -DIN_GCC
$(PICFLAG
) @CROSS@
1049 # This is the variable actually used when we compile. If you change this,
1050 # you probably want to update BUILD_CFLAGS in configure.ac
1051 ALL_CFLAGS
= $(T_CFLAGS
) $(CFLAGS-
$@
) \
1052 $(CFLAGS
) $(INTERNAL_CFLAGS
) $(COVERAGE_FLAGS
) $(WARN_CFLAGS
) @DEFS@
1055 ALL_CXXFLAGS
= $(T_CFLAGS
) $(CFLAGS-
$@
) $(CXXFLAGS
) $(INTERNAL_CFLAGS
) \
1056 $(COVERAGE_FLAGS
) $(ALIASING_FLAGS
) $(NOEXCEPTION_FLAGS
) \
1057 $(WARN_CXXFLAGS
) @DEFS@
1059 # Likewise. Put INCLUDES at the beginning: this way, if some autoconf macro
1060 # puts -I options in CPPFLAGS, our include files in the srcdir will always
1061 # win against random include files in /usr/include.
1062 ALL_CPPFLAGS
= $(INCLUDES
) $(CPPFLAGS
)
1064 # This is the variable to use when using $(COMPILER).
1065 ALL_COMPILERFLAGS
= $(ALL_CXXFLAGS
)
1067 # This is the variable to use when using $(LINKER).
1068 ALL_LINKERFLAGS
= $(ALL_CXXFLAGS
)
1070 # Build and host support libraries.
1072 # Use the "pic" build of libiberty if --enable-host-shared, unless we are
1073 # building for mingw.
1074 LIBIBERTY_PICDIR
=$(if
$(findstring mingw
,$(target
)),,pic
)
1075 ifeq ($(enable_host_shared
),yes
)
1076 LIBIBERTY
= ..
/libiberty
/$(LIBIBERTY_PICDIR
)/libiberty.a
1077 BUILD_LIBIBERTY
= $(build_libobjdir
)/libiberty
/$(LIBIBERTY_PICDIR
)/libiberty.a
1079 LIBIBERTY
= ..
/..
/sdbinutils
/libiberty
/libiberty.a
1080 BUILD_LIBIBERTY
= ..
/..
/sdbinutils
/libiberty
/libiberty.a
1083 # Dependencies on the intl and portability libraries.
1084 LIBDEPS
= libcommon.a
$(CPPLIB
) $(LIBIBERTY
) $(LIBINTL_DEP
) $(LIBICONV_DEP
) \
1085 $(LIBDECNUMBER
) $(LIBBACKTRACE
)
1087 # Likewise, for use in the tools that must run on this machine
1088 # even if we are cross-building GCC.
1089 BUILD_LIBDEPS
= $(BUILD_LIBIBERTY
)
1091 # How to link with both our special library facilities
1092 # and the system's installed libraries.
1093 LIBS
= @LIBS@ libcommon.a
$(CPPLIB
) $(LIBINTL
) $(LIBICONV
) $(LIBBACKTRACE
) \
1094 $(LIBIBERTY
) $(LIBDECNUMBER
) $(HOST_LIBS
)
1095 BACKENDLIBS
= $(ISLLIBS
) $(GMPLIBS
) $(PLUGINLIBS
) $(HOST_LIBS
) \
1097 # Any system libraries needed just for GNAT.
1098 SYSLIBS
= @GNAT_LIBEXC@
1100 # Used from ada/gcc-interface/Make-lang.in
1101 GNATBIND
= @GNATBIND@
1102 GNATMAKE
= @GNATMAKE@
1104 # Used from d/Make-lang.in
1106 GDCFLAGS
= @GDCFLAGS@
1108 # Libs needed (at present) just for jcf-dump.
1109 LDEXP_LIB
= @LDEXP_LIB@
1111 ZSTD_INC
= @ZSTD_CPPFLAGS@
1112 ZSTD_LIB
= @ZSTD_LDFLAGS@ @ZSTD_LIB@
1114 # Likewise, for use in the tools that must run on this machine
1115 # even if we are cross-building GCC.
1116 BUILD_LIBS
= $(BUILD_LIBIBERTY
)
1118 BUILD_RTL
= build
/rtl.o build
/read-rtl.o build
/ggc-none.o \
1119 build
/vec.o build
/min-insn-modes.o build
/gensupport.o \
1120 build
/print-rtl.o build
/hash-table.o build
/sort.o
1121 BUILD_MD
= build
/read-md.o
1122 BUILD_ERRORS
= build
/errors.o
1125 LIBIBERTY_DIR
= $(srcdir)/..
/sdbinutils
/include
1127 # Specify the directories to be searched for header files.
1128 # Both . and srcdir are used, in that order,
1129 # so that *config.h will be found in the compilation
1130 # subdirectory rather than in the source directory.
1131 # -I$(@D) and -I$(srcdir)/$(@D) cause the subdirectory of the file
1132 # currently being compiled, in both source trees, to be examined as well.
1133 # libintl.h will be found in ../intl if we are using the included libintl.
1134 INCLUDES
= -I.
-I
$(@D
) -I
$(srcdir) -I
$(srcdir)/$(@D
) \
1135 -I
$(srcdir)/..
/include @INCINTL@ \
1136 -I
${LIBIBERTY_DIR} \
1137 $(CPPINC
) $(CODYINC
) $(GMPINC
) $(DECNUMINC
) $(BACKTRACEINC
) \
1140 COMPILE.base
= $(COMPILER
) -c
$(ALL_COMPILERFLAGS
) $(ALL_CPPFLAGS
) -o
$@
1141 ifeq ($(CXXDEPMODE
),depmode
=gcc3
)
1142 # Note a subtlety here: we use $(@D) for the directory part, to make
1143 # things like the go/%.o rule work properly; but we use $(*F) for the
1144 # file part, as we just want the file part of the stem, not the entire
1146 COMPILE
= $(COMPILE.base
) -MT
$@
-MMD
-MP
-MF
$(@D
)/$(DEPDIR
)/$(*F
).TPo
1147 POSTCOMPILE
= @mv
$(@D
)/$(DEPDIR
)/$(*F
).TPo
$(@D
)/$(DEPDIR
)/$(*F
).Po
1149 COMPILE
= source
='$<' object
='$@' libtool
=no \
1150 DEPDIR
=$(DEPDIR
) $(CXXDEPMODE
) $(depcomp
) $(COMPILE.base
)
1159 # Support for additional languages (other than C).
1160 # C can be supported this way too (leave for later).
1162 LANG_CONFIGUREFRAGS
= @all_lang_configurefrags@
1163 LANG_MAKEFRAGS
= @all_lang_makefrags@
1165 # Used by gcc/jit/Make-lang.in
1166 LD_VERSION_SCRIPT_OPTION
= @ld_version_script_option@
1167 LD_SONAME_OPTION
= @ld_soname_option@
1169 # Flags to pass to recursive makes.
1170 # CC is set by configure.
1171 # ??? The choices here will need some experimenting with.
1173 export AR_FOR_TARGET
1174 export AR_CREATE_FOR_TARGET
1175 export AR_FLAGS_FOR_TARGET
1176 export AR_EXTRACT_FOR_TARGET
1179 export GCC_FOR_TARGET
1182 export LIPO_FOR_TARGET
1184 export NM_FOR_TARGET
1185 export STRIP_FOR_TARGET
1186 export RANLIB_FOR_TARGET
1190 "ADA_CFLAGS=$(ADA_CFLAGS)" \
1192 "BISONFLAGS=$(BISONFLAGS)" \
1193 "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)" \
1194 "LDFLAGS=$(LDFLAGS)" \
1196 "FLEXFLAGS=$(FLEXFLAGS)" \
1197 "INSTALL=$(INSTALL)" \
1198 "INSTALL_DATA=$(INSTALL_DATA)" \
1199 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
1200 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
1203 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
1204 "MAKEINFO=$(MAKEINFO)" \
1205 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
1208 "exeext=$(exeext)" \
1209 "build_exeext=$(build_exeext)" \
1210 "objext=$(objext)" \
1211 "exec_prefix=$(exec_prefix)" \
1212 "prefix=$(prefix)" \
1213 "local_prefix=$(local_prefix)" \
1214 "gxx_include_dir=$(gcc_gxx_include_dir)" \
1215 "gxx_libcxx_include_dir=$(gcc_gxx_libcxx_include_dir)" \
1216 "build_tooldir=$(build_tooldir)" \
1217 "gcc_tooldir=$(gcc_tooldir)" \
1218 "bindir=$(bindir)" \
1219 "libexecsubdir=$(libexecsubdir)" \
1220 "datarootdir=$(datarootdir)" \
1221 "datadir=$(datadir)" \
1222 "libsubdir=$(libsubdir)" \
1223 "localedir=$(localedir)"
1225 # Lists of files for various purposes.
1227 # All option source files
1228 ALL_OPT_FILES
=$(lang_opt_files
) $(extra_opt_files
)
1230 # Target specific, C specific object file
1231 C_TARGET_OBJS
=@c_target_objs@
1233 # Target specific, C++ specific object file
1234 CXX_TARGET_OBJS
=@cxx_target_objs@
1236 # Target specific, D specific object file
1237 D_TARGET_OBJS
=@d_target_objs@
1239 # Target specific, Fortran specific object file
1240 FORTRAN_TARGET_OBJS
=@fortran_target_objs@
1242 # Object files for gcc many-languages driver.
1243 GCC_OBJS
= gcc.o gcc-main.o ggc-none.o dummies.o
1245 c-family-warn
= $(STRICT_WARN
)
1247 # Language-specific object files shared by all C-family front ends.
1248 C_COMMON_OBJS
= c-family
/c-cppbuiltin.o c-family
/c-dump.o \
1249 c-family
/c-indentation.o \
1251 c-family
/c-ppoutput.o \
1252 c-family
/c-pragma.o \
1255 C_COMMON_OBJS
+= cc1_dummies.o
1256 cc1_dummies.o
: dummies.
cc cc1_dummies.
cc
1258 # Analyzer object files
1260 analyzer
/analysis-plan.o \
1261 analyzer
/analyzer.o \
1262 analyzer
/analyzer-logging.o \
1263 analyzer
/analyzer-pass.o \
1264 analyzer
/analyzer-selftests.o \
1265 analyzer
/bar-chart.o \
1266 analyzer
/call-info.o \
1267 analyzer
/call-string.o \
1268 analyzer
/checker-path.o \
1269 analyzer
/complexity.o \
1270 analyzer
/constraint-manager.o \
1271 analyzer
/diagnostic-manager.o \
1273 analyzer
/feasible-graph.o \
1274 analyzer
/function-set.o \
1275 analyzer
/pending-diagnostic.o \
1276 analyzer
/program-point.o \
1277 analyzer
/program-state.o \
1279 analyzer
/region-model.o \
1280 analyzer
/region-model-asm.o \
1281 analyzer
/region-model-impl-calls.o \
1282 analyzer
/region-model-manager.o \
1283 analyzer
/region-model-reachability.o \
1285 analyzer
/sm-file.o \
1286 analyzer
/sm-malloc.o \
1287 analyzer
/sm-pattern-test.o \
1288 analyzer
/sm-sensitive.o \
1289 analyzer
/sm-signal.o \
1290 analyzer
/sm-taint.o \
1291 analyzer
/state-purge.o \
1293 analyzer
/supergraph.o \
1295 analyzer
/trimmed-graph.o
1297 # Language-independent object files.
1298 # We put the *-match.o and insn-*.o files first so that a parallel make
1299 # will build them sooner, because they are large and otherwise tend to be
1300 # the last objects to finish building.
1319 # min-insn-modes.o \
1322 version.o
: version.h
1323 c-family
/c-opts.o
: bversion.h
1324 c-family
/c-common.o
: bversion.h
1325 c-family
/c-common.o
: all-tree.def
1327 # sometimes need insn-attr-common.h
1329 # Objects in libcommon.a, potentially used by all host binaries and with
1330 # no target dependencies.
1331 OBJS-libcommon
= diagnostic-spec.o diagnostic.o diagnostic-color.o \
1332 diagnostic-show-locus.o diagnostic-format-json.o json.o \
1334 pretty-print.o intl.o \
1336 vec.o input.o hash-table.o ggc-none.o memory-block.o \
1337 selftest.o selftest-diagnostic.o
sort.o
1339 # Objects in libcommon-target.a, used by drivers and by the core
1340 # compiler and containing target-dependent code.
1341 OBJS-libcommon-target
= $(common_out_object_file
) prefix.o \
1342 opts.o opts-common.o options.o vec.o hooks.o common
/common-targhooks.o \
1343 hash-table.o file-find.o spellcheck.o
# selftest.o # opt-suggestions.o
1345 # This lists all host objects for the front ends.
1346 ALL_HOST_FRONTEND_OBJS
= $(foreach v
,$(CONFIG_LANGUAGES
),$($(v
)_OBJS
))
1348 ALL_HOST_BACKEND_OBJS
= $(GCC_OBJS
) $(OBJS
) $(OBJS-libcommon
) \
1349 $(OBJS-libcommon-target
) main.o c-family
/cppspec.o \
1350 $(COLLECT2_OBJS
) $(EXTRA_GCC_OBJS
) $(GCOV_OBJS
) $(GCOV_DUMP_OBJS
) \
1351 $(GCOV_TOOL_OBJS
) $(GENGTYPE_OBJS
) gcc-ar.o gcc-nm.o gcc-ranlib.o \
1352 lto-wrapper.o collect-utils.o
1354 # for anything that is shared use the cc1plus profile data, as that
1355 # is likely the most exercised during the build
1356 ifeq ($(if
$(wildcard ..
/stage_current
),$(shell cat \
1357 ..
/stage_current
)),stageautofeedback
)
1358 $(ALL_HOST_BACKEND_OBJS
): ALL_COMPILERFLAGS
+= -fauto-profile
=cc1plus.fda
1359 $(ALL_HOST_BACKEND_OBJS
): cc1plus.fda
1362 # This lists all host object files, whether they are included in this
1363 # compilation or not.
1364 ALL_HOST_OBJS
= $(ALL_HOST_FRONTEND_OBJS
) $(ALL_HOST_BACKEND_OBJS
)
1366 BACKEND
= libbackend.a main.o libcommon-target.a libcommon.a \
1367 $(CPPLIB
) $(LIBDECNUMBER
)
1369 # This is defined to "yes" if Tree checking is enabled, which roughly means
1370 # front-end checking.
1371 TREECHECKING
= @TREECHECKING@
1373 # The full name of the driver on installation
1374 FULL_DRIVER_NAME
=$(target_noncanonical
)-gcc-
$(version
)$(exeext
)
1376 MOSTLYCLEANFILES
= \
1377 insn-output.
cc insn-recog.
cc insn-emit.
cc insn-extract.
cc insn-peep.
cc \
1378 insn-attrtab.
cc insn-dfatab.
cc \
1379 insn-latencytab.
cc insn-opinit.
cc insn-opinit.h insn-preds.
cc \
1380 tm-constrs.h checksum-options gimple-match.
cc generic-match.
cc \
1381 tree-check.h insn-modes.
cc \
1382 genrtl.h gt-
*.h gtype-
*.h gtype-desc.
cc gtyp-input.list \
1383 case-cfn-macros.h cfn-operators.pd \
1384 xgcc
$(exeext
) cpp$(exeext
) $(FULL_DRIVER_NAME
) \
1385 $(EXTRA_PROGRAMS
) gcc-cross
$(exeext
) \
1386 $(SPECS
) collect2
$(exeext
) gcc-ar
$(exeext
) gcc-nm
$(exeext
) \
1387 gcc-ranlib
$(exeext
) \
1388 genversion
$(build_exeext
) gcov
$(exeext
) gcov-dump
$(exeext
) \
1389 gcov-tool
$(exeect
) \
1390 gengtype
$(exeext
) *.
[0-9][0-9].
* *.
[si
] *-checksum.
cc libbackend.a \
1391 libcommon-target.a libcommon.a libgcc.mk perf.data
1393 # This symlink makes the full installation name of the driver be available
1394 # from within the *build* directory, for use when running the JIT library
1395 # from there (e.g. when running its testsuite).
1396 $(FULL_DRIVER_NAME
): .
/xgcc
$(exeext
)
1401 # SELFTEST_DEPS need to be set before including language makefile fragments.
1402 # Otherwise $(SELFTEST_DEPS) is empty when used from <LANG>/Make-lang.in.
1403 SELFTEST_DEPS
= $(GCC_PASSES
) stmp-int-hdrs
$(srcdir)/testsuite
/selftests
1405 DO_LINK_SERIALIZATION
= @DO_LINK_SERIALIZATION@
1407 # Language makefile fragments.
1409 # The following targets define the interface between us and the languages.
1411 # all.cross, start.encap, rest.encap,
1412 # install-common, install-info, install-man,
1414 # mostlyclean, clean, distclean, maintainer-clean,
1416 # Each language is linked in with a series of hooks. The name of each
1417 # hooked is "lang.${target_name}" (eg: lang.info). Configure computes
1418 # and adds these here. We use double-colon rules for some of the hooks;
1419 # double-colon rules should be preferred for any new hooks.
1421 # language hooks, generated by configure
1424 ifeq ($(DO_LINK_SERIALIZATION
),)
1427 LINK_PROGRESS
= msg
="Linking $@ |"; cnt
=0; if
test "$(2)" = start
; then \
1428 idx
=0; cnt2
=$(DO_LINK_SERIALIZATION
); \
1429 while
test $$cnt2 -le
$(1); do msg
="$${msg}=="; cnt2
=`expr $$cnt2 + 1`; idx
=`expr $$idx + 1`; done
; \
1431 while
test $$cnt -lt
$(1); do msg
="$${msg}>>"; cnt
=`expr $$cnt + 1`; done
; \
1432 msg
="$${msg}--"; cnt
=`expr $$cnt + 1`; \
1434 idx
=`expr $(1) + 1`; \
1435 while
test $$cnt -le
$(1); do msg
="$${msg}=="; cnt
=`expr $$cnt + 1`; done
; \
1437 while
test $$cnt -lt
$(SERIAL_COUNT
); do msg
="$${msg} "; cnt
=`expr $$cnt + 1`; done
; \
1438 msg
="$${msg}| `expr 100 \* $$idx / $(SERIAL_COUNT)`%"; echo
"$$msg"
1441 # Wire in install-gnatlib invocation with `make install' for a configuration
1442 # with top-level libada disabled.
1443 gnat_install_lib
= @gnat_install_lib@
1445 # per-language makefile fragments
1446 -include $(LANG_MAKEFRAGS
)
1448 # target and host overrides must follow the per-language makefile fragments
1449 # so they can override or augment language-specific variables
1452 -include $(tmake_file
)
1455 -include $(xmake_file
)
1457 # all-tree.def includes all the tree.def files.
1458 all-tree.def
: s-alltree
; @true
1460 rm -f tmp-all-tree.def
1461 echo
'#include "tree.def"' > tmp-all-tree.def
1462 echo
'END_OF_BASE_TREE_CODES' >> tmp-all-tree.def
1463 echo
'#include "c-family/c-common.def"' >> tmp-all-tree.def
1464 ltf
="$(lang_tree_files)"; for f in
$$ltf; do \
1465 echo
"#include \"$$f\""; \
1466 done | sed
's|$(srcdir)/||' >> tmp-all-tree.def
1467 $(SHELL
) $(srcdir)/..
/move-if-change tmp-all-tree.def all-tree.def
1470 # Now that LANG_MAKEFRAGS are included, we can add special flags to the
1471 # objects that belong to the front ends. We add an extra define that
1472 # causes back-end specific include files to be poisoned, in the hope that
1473 # we can avoid introducing dependencies of the front ends on things that
1474 # no front end should ever look at (e.g. everything RTL related).
1475 $(foreach file
,$(ALL_HOST_FRONTEND_OBJS
),$(eval CFLAGS-
$(file
) += -DIN_GCC_FRONTEND
))
1479 # -----------------------------
1480 # Rebuilding this configuration
1481 # -----------------------------
1483 # On the use of stamps:
1484 # Consider the example of tree-check.h. It is constructed with build/gencheck.
1485 # A simple rule to build tree-check.h would be
1486 # tree-check.h: build/gencheck$(build_exeext)
1487 # $(RUN_GEN) build/gencheck$(build_exeext) > tree-check.h
1489 # but tree-check.h doesn't change every time gencheck changes. It would the
1490 # nice if targets that depend on tree-check.h wouldn't be rebuild
1491 # unnecessarily when tree-check.h is unchanged. To make this, tree-check.h
1492 # must not be overwritten with a identical copy. One solution is to use a
1494 # tree-check.h: build/gencheck$(build_exeext)
1495 # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
1496 # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
1498 # This solution has a different problem. Since the time stamp of tree-check.h
1499 # is unchanged, make will try to update tree-check.h every time it runs.
1500 # To prevent this, one can add a stamp
1501 # tree-check.h: s-check
1502 # s-check : build/gencheck$(build_exeext)
1503 # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
1504 # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
1507 # The problem with this solution is that make thinks that tree-check.h is
1508 # always unchanged. Make must be deceived into thinking that tree-check.h is
1509 # rebuild by the "tree-check.h: s-check" rule. To do this, add a dummy command:
1510 # tree-check.h: s-check; @true
1511 # s-check : build/gencheck$(build_exeext)
1512 # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
1513 # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
1516 # This is what is done in this makefile. Note that mkconfig.sh has a
1517 # move-if-change built-in
1519 Makefile
: config.status
$(srcdir)/Makefile.in
$(LANG_MAKEFRAGS
)
1520 LANGUAGES
="$(CONFIG_LANGUAGES)" \
1522 CONFIG_SHELL
="$(SHELL)" \
1523 CONFIG_FILES
=$@
$(SHELL
) config.status
1525 config.h
: cs-config.h
; @true
1526 bconfig.h
: cs-bconfig.h
; @true
1527 tconfig.h
: cs-tconfig.h
; @true
1528 tm.h
: # cs-tm.h ; @true
1529 tm_p.h
: # cs-tm_p.h ; @true
1530 tm_d.h
: # cs-tm_d.h ; @true
1532 cs-config.h
: Makefile
1533 TARGET_CPU_DEFAULT
="" \
1534 HEADERS
="$(host_xm_include_list)" DEFINES
="$(host_xm_defines)" \
1535 $(SHELL
) $(srcdir)/mkconfig.sh config.h
1537 cs-bconfig.h
: Makefile
1538 TARGET_CPU_DEFAULT
="" \
1539 HEADERS
="$(build_xm_include_list)" DEFINES
="$(build_xm_defines)" \
1540 $(SHELL
) $(srcdir)/mkconfig.sh bconfig.h
1542 cs-tconfig.h
: Makefile
1543 TARGET_CPU_DEFAULT
="" \
1544 HEADERS
="$(xm_include_list)" DEFINES
="USED_FOR_TARGET $(xm_defines)" \
1545 $(SHELL
) $(srcdir)/mkconfig.sh tconfig.h
1548 TARGET_CPU_DEFAULT
="$(target_cpu_default)" \
1549 HEADERS
="$(tm_include_list)" DEFINES
="$(tm_defines)" \
1550 $(SHELL
) $(srcdir)/mkconfig.sh tm.h
1553 TARGET_CPU_DEFAULT
="" \
1554 HEADERS
="$(tm_p_include_list)" DEFINES
="" \
1555 $(SHELL
) $(srcdir)/mkconfig.sh tm_p.h
1558 TARGET_CPU_DEFAULT
="" \
1559 HEADERS
="$(tm_d_include_list)" DEFINES
="" \
1560 $(SHELL
) $(srcdir)/mkconfig.sh tm_d.h
1562 # Don't automatically run autoconf, since configure.ac might be accidentally
1563 # newer than configure. Also, this writes into the source directory which
1564 # might be on a read-only file system. If configured for maintainer mode
1565 # then do allow autoconf to be run.
1569 ACLOCAL_AMFLAGS
= -I ..
/config
-I ..
1571 $(srcdir)/..
/libtool.m4 \
1572 $(srcdir)/..
/ltoptions.m4 \
1573 $(srcdir)/..
/ltsugar.m4 \
1574 $(srcdir)/..
/ltversion.m4 \
1575 $(srcdir)/..
/lt~obsolete.m4 \
1576 $(srcdir)/..
/config
/acx.m4 \
1577 $(srcdir)/..
/config
/codeset.m4 \
1578 $(srcdir)/..
/config
/depstand.m4 \
1579 $(srcdir)/..
/config
/dfp.m4 \
1580 $(srcdir)/..
/config
/gcc-plugin.m4 \
1581 $(srcdir)/..
/config
/gettext-sister.m4 \
1582 $(srcdir)/..
/config
/iconv.m4 \
1583 $(srcdir)/..
/config
/lcmessage.m4 \
1584 $(srcdir)/..
/config
/lead-dot.m4 \
1585 $(srcdir)/..
/config
/lib-ld.m4 \
1586 $(srcdir)/..
/config
/lib-link.m4 \
1587 $(srcdir)/..
/config
/lib-prefix.m4 \
1588 $(srcdir)/..
/config
/mmap.m4 \
1589 $(srcdir)/..
/config
/override.m4 \
1590 $(srcdir)/..
/config
/picflag.m4 \
1591 $(srcdir)/..
/config
/progtest.m4 \
1592 $(srcdir)/..
/config
/stdint.m4 \
1593 $(srcdir)/..
/config
/warnings.m4 \
1594 $(srcdir)/..
/config
/zlib.m4 \
1595 $(srcdir)/acinclude.m4
1597 $(srcdir)/configure
: @MAINT@
$(srcdir)/configure.ac
$(srcdir)/aclocal.m4
1598 (cd
$(srcdir) && $(AUTOCONF
))
1600 $(srcdir)/aclocal.m4
: @MAINT@
$(aclocal_deps
)
1601 (cd
$(srcdir) && $(ACLOCAL
) $(ACLOCAL_AMFLAGS
))
1603 # cstamp-h.in controls rebuilding of config.in.
1604 # It is named cstamp-h.in and not stamp-h.in so the mostlyclean rule doesn't
1605 # delete it. A stamp file is needed as autoheader won't update the file if
1606 # nothing has changed.
1607 # It remains in the source directory and is part of the distribution.
1608 # This follows what is done in shellutils, fileutils, etc.
1609 # "echo timestamp" is used instead of touch to be consistent with other
1610 # packages that use autoconf (??? perhaps also to avoid problems with patch?).
1611 # ??? Newer versions have a maintainer mode that may be useful here.
1613 # Don't run autoheader automatically either.
1614 # Only run it if maintainer mode is enabled.
1615 @MAINT@ AUTOHEADER
= autoheader
1616 @MAINT@
$(srcdir)/config.in
: $(srcdir)/cstamp-h.in
1617 @MAINT@
$(srcdir)/cstamp-h.in
: $(srcdir)/configure.ac
1618 @MAINT@
(cd
$(srcdir) && $(AUTOHEADER
))
1619 @MAINT@ @
rm -f
$(srcdir)/cstamp-h.in
1620 @MAINT@ echo timestamp
> $(srcdir)/cstamp-h.in
1621 auto-host.h
: cstamp-h
; @true
1622 cstamp-h
: config.in config.status
1623 CONFIG_HEADERS
=auto-host.h
:config.in \
1625 LANGUAGES
="$(CONFIG_LANGUAGES)" $(SHELL
) config.status
1627 # On configurations that require auto-build.h, it is created while
1628 # running configure, so make config.status depend on it, so that
1629 # config.status --recheck runs and updates or creates it.
1630 @HAVE_AUTO_BUILD@auto-build.h
: $(srcdir)/configure
$(srcdir)/config.gcc
1631 @HAVE_AUTO_BUILD@ @if
test -f
$@
; then echo rerunning config.status to update
$@
; \
1632 @HAVE_AUTO_BUILD@
else echo rerunning config.status to update
$@
; fi
1633 @HAVE_AUTO_BUILD@config.status
: auto-build.h
1635 # Really, really stupid make features, such as SUN's KEEP_STATE, may force
1636 # a target to build even if it is up-to-date. So we must verify that
1637 # config.status does not exist before failing.
1638 config.status
: $(srcdir)/configure
$(srcdir)/config.gcc
$(LANG_CONFIGUREFRAGS
)
1639 @if
[ ! -f config.status
] ; then \
1640 echo You must configure gcc. Look at http
://gcc.gnu.org
/install/ for details.
; \
1643 LANGUAGES
="$(CONFIG_LANGUAGES)" $(SHELL
) config.status
--recheck
; \
1650 # Provide quickstrap as a target that people can type into the gcc directory,
1651 # and that fails if you're not into it.
1653 cd
$(toplevel_builddir
) && $(MAKE
) all-target-libgcc
1655 all.internal
: cc1
$(exeext
) cpp$(exeext
) # start.encap rest.encap doc selftest
1656 # This is what to compile if making a cross-compiler.
1657 all.cross
: cc1
$(exeext
) cpp$(exeext
) specs
1658 # libgcc-support lang.all.cross doc selftest @GENINSRC@ srcextra
1659 # This is what must be made before installing GCC and converting libraries.
1660 start.encap
: cpp$(exeext
) specs \
1661 # libgcc-support lang.start.encap @GENINSRC@ srcextra
1662 # These can't be made until after GCC can run.
1663 rest.encap
: lang.rest.encap
1664 # This is what is made with the host's compiler
1665 # whether making a cross compiler or not.
1666 native
: config.status auto-host.h build-@POSUB@
$(LANGUAGES
) \
1667 $(EXTRA_PROGRAMS
) $(COLLECT2
) \
1668 # gcc-ar$(exeext) gcc-nm$(exeext) gcc-ranlib$(exeext)
1670 ifeq ($(enable_plugin
),yes
)
1671 native
: gengtype
$(exeext
)
1674 # On the target machine, finish building a cross compiler.
1675 # This does the things that can't be done on the host machine.
1679 # Specify a dummy input file to placate the driver.
1680 # Specify -nostdinc to work around missing WIND_BASE environment variable
1681 # required for *-wrs-vxworks-* targets.
1682 # Specify -o /dev/null so the output of -S is discarded. More importantly
1683 # It does not try to create a file with the name "null.s" on POSIX and
1684 # "nul.s" on Windows. Because on Windows "nul" is a reserved file name.
1685 # Beware that /dev/null is not available to mingw tools, so directly use
1686 # "nul" instead of "/dev/null" if we're building on a mingw machine.
1687 # Specify the path to gcc/testsuite/selftests within the srcdir
1688 # as an argument to -fself-test.
1689 DEVNULL
=$(if
$(findstring mingw
,$(build
)),nul
,/dev
/null
)
1690 SELFTEST_FLAGS
= -nostdinc
$(DEVNULL
) -S
-o
$(DEVNULL
) \
1691 -fself-test
=$(srcdir)/testsuite
/selftests
1693 # Run the selftests during the build once we have a driver and the frontend,
1694 # so that self-test failures are caught as early as possible.
1695 # Use "s-selftest-FE" to ensure that we only run the selftests if the
1696 # driver, frontend, or selftest data change.
1699 # Potentially run all selftest-<LANG>. The various <LANG>/Make-lang.in can
1700 # require the selftests to be run by defining their selftest-<LANG> as
1701 # s-selftest-<LANG>. Otherwise, they should define it as empty.
1703 SELFTEST_TARGETS
= @selftest_languages@
1704 selftest
: $(SELFTEST_TARGETS
)
1706 # Recompile all the language-independent object files.
1707 # This is used only if the user explicitly asks for it.
1708 compilations
: $(BACKEND
)
1710 # This archive is strictly for the host.
1711 libbackend.a
: $(OBJS
)
1712 -rm -rf libbackend.a
1713 @
# Build libbackend.a as a thin archive if possible, as doing so
1714 @
# significantly reduces build times.
1715 ifeq ($(USE_THIN_ARCHIVES
),yes
)
1716 $(AR
) $(AR_FLAGS
)T libbackend.a
$(OBJS
)
1718 $(AR
) $(AR_FLAGS
) libbackend.a
$(OBJS
)
1719 -$(RANLIB
) $(RANLIB_FLAGS
) libbackend.a
1722 libcommon-target.a
: $(OBJS-libcommon-target
)
1723 -rm -rf libcommon-target.a
1724 $(AR
) $(AR_FLAGS
) libcommon-target.a
$(OBJS-libcommon-target
)
1725 -$(RANLIB
) $(RANLIB_FLAGS
) libcommon-target.a
1727 libcommon.a
: $(OBJS-libcommon
)
1729 $(AR
) $(AR_FLAGS
) libcommon.a
$(OBJS-libcommon
)
1730 -$(RANLIB
) $(RANLIB_FLAGS
) libcommon.a
1732 # We call this executable `xgcc' rather than `gcc'
1733 # to avoid confusion if the current directory is in the path
1734 # and CC is `gcc'. It is renamed to `gcc' when it is installed.
1735 xgcc
$(exeext
): $(GCC_OBJS
) c
/gccspec.o libcommon-target.a
$(LIBDEPS
) \
1737 $(LINKER
) $(ALL_LINKERFLAGS
) $(LDFLAGS
) -o
$@
$(GCC_OBJS
) \
1738 c
/gccspec.o
$(EXTRA_GCC_OBJS
) libcommon-target.a \
1739 $(EXTRA_GCC_LIBS
) $(LIBS
)
1741 # cpp is to cpp0 as e.g. g++ is to cc1plus: Just another driver.
1742 # It is part of c-family because the handled extensions are hard-coded
1743 # and only contain c-family extensions (see known_suffixes).
1744 cpp$(exeext
): $(GCC_OBJS
) $(SDCPP_OBJS
) c-family
/cppspec.o
${LIBDEPS} \
1746 $(LINKER
) $(ALL_LINKERFLAGS
) $(LDFLAGS
) -o
$@
$(GCC_OBJS
) $(SDCPP_OBJS
) \
1747 libcommon-target.a c-family
/cppspec.o \
1748 $(EXTRA_GCC_LIBS
) $(LIBS
) # cpp rule
1750 # Dump a specs file to make -B./ read these specs over installed ones.
1751 $(SPECS
): # xgcc$(exeext)
1752 $(GCC_FOR_TARGET
) -dumpspecs
> tmp-specs
1753 mv tmp-specs
$(SPECS
)
1755 # We do want to create an executable named `xgcc', so we can use it to
1756 # compile libgcc2.a.
1757 # Also create gcc-cross, so that install-common will install properly.
1758 gcc-cross
$(exeext
): xgcc
$(exeext
)
1759 cp xgcc
$(exeext
) gcc-cross
$(exeext
)
1762 echo
"$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS)" > checksum-options.tmp \
1763 && $(srcdir)/..
/move-if-change checksum-options.tmp checksum-options
1768 libgcc-support
: libgcc.mvars stmp-int-hdrs
$(TCONFIG_H
) \
1769 $(MACHMODE_H
) version.h
1771 libgcc.mvars
: config.status Makefile specs xgcc
$(exeext
)
1772 : > tmp-libgcc.mvars
1773 echo GCC_CFLAGS
= '$(GCC_CFLAGS)' >> tmp-libgcc.mvars
1774 echo INHIBIT_LIBC_CFLAGS
= '$(INHIBIT_LIBC_CFLAGS)' >> tmp-libgcc.mvars
1775 echo TARGET_SYSTEM_ROOT
= '$(TARGET_SYSTEM_ROOT)' >> tmp-libgcc.mvars
1776 if
test @enable_default_pie@
= yes
; then \
1777 NO_PIE_CFLAGS
="-fno-PIE"; \
1781 echo NO_PIE_CFLAGS
= "$$NO_PIE_CFLAGS" >> tmp-libgcc.mvars
1783 mv tmp-libgcc.mvars libgcc.mvars
1785 # Use the genmultilib shell script to generate the information the gcc
1786 # driver program needs to select the library directory based on the
1788 multilib.h
: s-mlib
; @true
1789 s-mlib
: $(srcdir)/genmultilib Makefile
1790 if
test @enable_multilib@
= yes \
1791 ||
test -n
"$(MULTILIB_OSDIRNAMES)"; then \
1792 $(SHELL
) $(srcdir)/genmultilib \
1793 "$(MULTILIB_OPTIONS)" \
1794 "$(MULTILIB_DIRNAMES)" \
1795 "$(MULTILIB_MATCHES)" \
1796 "$(MULTILIB_EXCEPTIONS)" \
1797 "$(MULTILIB_EXTRA_OPTS)" \
1798 "$(MULTILIB_EXCLUSIONS)" \
1799 "$(MULTILIB_OSDIRNAMES)" \
1800 "$(MULTILIB_REQUIRED)" \
1801 "$(if $(MULTILIB_OSDIRNAMES),,$(MULTIARCH_DIRNAME))" \
1802 "$(MULTILIB_REUSE)" \
1803 "@enable_multilib@" \
1806 $(SHELL
) $(srcdir)/genmultilib
'' '' '' '' '' '' '' '' \
1807 "$(MULTIARCH_DIRNAME)" '' no \
1810 $(SHELL
) $(srcdir)/..
/move-if-change tmp-mlib.h multilib.h
1813 # Compiling object files from source files.
1815 # Note that dependencies on obstack.h are not written
1816 # because that file is not part of GCC.
1818 srcextra
: gcc.srcextra lang.srcextra
1820 gcc.srcextra
: gengtype-lex.
cc
1823 AR_OBJS
= file-find.o
1824 AR_LIBS
= @COLLECT2_LIBS@
1826 gcc-ar
$(exeext
): gcc-ar.o
$(AR_OBJS
) $(LIBDEPS
)
1827 $(LINKER
) $(ALL_LINKERFLAGS
) $(LDFLAGS
) gcc-ar.o
-o
$@ \
1828 $(AR_OBJS
) $(LIBS
) $(AR_LIBS
)
1830 gcc-nm
$(exeext
): gcc-nm.o
$(AR_OBJS
) $(LIBDEPS
)
1831 $(LINKER
) $(ALL_LINKERFLAGS
) $(LDFLAGS
) gcc-nm.o
-o
$@ \
1832 $(AR_OBJS
) $(LIBS
) $(AR_LIBS
)
1834 gcc-ranlib
$(exeext
): gcc-ranlib.o
$(AR_OBJS
) $(LIBDEPS
)
1835 $(LINKER
) $(ALL_LINKERFLAGS
) $(LDFLAGS
) gcc-ranlib.o
-o
$@ \
1836 $(AR_OBJS
) $(LIBS
) $(AR_LIBS
)
1838 CFLAGS-gcc-ar.o
+= $(DRIVER_DEFINES
) \
1839 -DTARGET_MACHINE
=\"$(target_noncanonical
)\" \
1840 @TARGET_SYSTEM_ROOT_DEFINE@
-DPERSONALITY
=\"ar\"
1842 CFLAGS-gcc-ranlib.o
+= $(DRIVER_DEFINES
) \
1843 -DTARGET_MACHINE
=\"$(target_noncanonical
)\" \
1844 @TARGET_SYSTEM_ROOT_DEFINE@
-DPERSONALITY
=\"ranlib
\"
1846 CFLAGS-gcc-nm.o
+= $(DRIVER_DEFINES
) \
1847 -DTARGET_MACHINE
=\"$(target_noncanonical
)\" \
1848 @TARGET_SYSTEM_ROOT_DEFINE@
-DPERSONALITY
=\"nm
\"
1850 # ??? the implicit rules dont trigger if the source file has a different name
1852 gcc-ranlib.
cc: gcc-ar.
cc
1855 gcc-nm.
cc: gcc-ar.
cc
1858 COLLECT2_OBJS
= collect2.o collect2-aix.o vec.o ggc-none.o \
1859 collect-utils.o file-find.o hash-table.o selftest.o
1860 COLLECT2_LIBS
= @COLLECT2_LIBS@
1861 collect2
$(exeext
): $(COLLECT2_OBJS
) $(LIBDEPS
)
1862 # Don't try modifying collect2 (aka ld) in place--it might be linking this.
1863 $(LINKER
) $(ALL_LINKERFLAGS
) $(LDFLAGS
) -o T
$@ \
1864 $(COLLECT2_OBJS
) $(LIBS
) $(COLLECT2_LIBS
)
1867 CFLAGS-collect2.o
+= -DTARGET_MACHINE
=\"$(target_noncanonical
)\" \
1868 @TARGET_SYSTEM_ROOT_DEFINE@
1870 LTO_WRAPPER_OBJS
= lto-wrapper.o collect-utils.o ggc-none.o
1871 lto-wrapper
$(exeext
): $(LTO_WRAPPER_OBJS
) libcommon-target.a
$(LIBDEPS
)
1872 $(LINKER
) $(ALL_LINKERFLAGS
) $(LDFLAGS
) -o T
$@ \
1873 $(LTO_WRAPPER_OBJS
) libcommon-target.a
$(LIBS
)
1876 # Files used by all variants of C or by the stand-alone pre-processor.
1878 CFLAGS-c-family
/c-opts.o
+= @TARGET_SYSTEM_ROOT_DEFINE@
1880 CFLAGS-c-family
/c-pch.o
+= -DHOST_MACHINE
=\"$(host
)\" \
1881 -DTARGET_MACHINE
=\"$(target
)\"
1883 default-c.o
: config
/default-c.
cc options.h
1887 # Files used by all variants of C and some other languages.
1889 CFLAGS-prefix.o
+= -DPREFIX
=\"$(prefix)\" -DBASEVER
=$(BASEVER_s
)
1890 prefix.o
: $(BASEVER
)
1892 # Files used by the D language front end.
1894 default-d.o
: config
/default-d.
cc
1898 # Language-independent files.
1901 -DSTANDARD_STARTFILE_PREFIX
=\"$(unlibsubdir
)/\" \
1902 -DSTANDARD_EXEC_PREFIX
=\"$(libdir)/sdcc
/\" \
1903 -DSTANDARD_LIBEXEC_PREFIX
=\"$(libexecdir
)/sdcc
/\" \
1904 -DDEFAULT_TARGET_VERSION
=\"$(version
)\" \
1905 -DDEFAULT_REAL_TARGET_MACHINE
=\"$(real_target_noncanonical
)\" \
1906 -DDEFAULT_TARGET_MACHINE
=\"$(target_noncanonical
)\" \
1907 -DSTANDARD_BINDIR_PREFIX
=\"$(bindir)/\" \
1908 -DTOOLDIR_BASE_PREFIX
=\"$(libsubdir_to_prefix
)$(prefix_to_exec_prefix
)\" \
1909 -DACCEL_DIR_SUFFIX
=\"$(accel_dir_suffix
)\" \
1910 @TARGET_SYSTEM_ROOT_DEFINE@ \
1911 $(VALGRIND_DRIVER_DEFINES
) \
1912 $(if
$(SHLIB
),$(if
$(filter yes
,@enable_shared@
),-DENABLE_SHARED_LIBGCC
)) \
1913 -DCONFIGURE_SPECS
="\"@CONFIGURE_SPECS@\"" \
1914 -DTOOL_INCLUDE_DIR
=\"$(gcc_tooldir
)/include\" \
1915 -DNATIVE_SYSTEM_HEADER_DIR
=\"$(NATIVE_SYSTEM_HEADER_DIR
)\"
1917 CFLAGS-gcc.o
+= $(DRIVER_DEFINES
) -DBASEVER
=$(BASEVER_s
)
1920 specs.h
: s-specs
; @true
1922 lsf
="$(lang_specs_files)"; for f in
$$lsf; do \
1923 echo
"#include \"$$f\""; \
1924 done | sed
's|$(srcdir)/||' > tmp-specs.h
1925 $(SHELL
) $(srcdir)/..
/move-if-change tmp-specs.h specs.h
1928 optionlist
: s-options
; @true
1929 s-options
: $(ALL_OPT_FILES
) Makefile
$(srcdir)/opt-gather.awk
1930 LC_ALL
=C
; export LC_ALL
; \
1931 $(AWK
) -f
$(srcdir)/opt-gather.awk
$(ALL_OPT_FILES
) > tmp-optionlist
1932 $(SHELL
) $(srcdir)/..
/move-if-change tmp-optionlist optionlist
1935 options.
cc: optionlist
$(srcdir)/opt-functions.awk
$(srcdir)/opt-read.awk \
1936 $(srcdir)/optc-gen.awk
1937 $(AWK
) -f
$(srcdir)/opt-functions.awk
-f
$(srcdir)/opt-read.awk \
1938 -f
$(srcdir)/optc-gen.awk \
1939 -v header_name
="config.h system.h coretypes.h options.h tm.h" < $< > $@
1941 options-save.
cc: optionlist
$(srcdir)/opt-functions.awk
$(srcdir)/opt-read.awk \
1942 $(srcdir)/optc-save-gen.awk
1943 $(AWK
) -f
$(srcdir)/opt-functions.awk
-f
$(srcdir)/opt-read.awk \
1944 -f
$(srcdir)/optc-save-gen.awk \
1945 -v header_name
="config.h system.h coretypes.h tm.h" < $< > $@
1947 options.h
: s-options-h
; @true
1948 s-options-h
: optionlist
$(srcdir)/opt-functions.awk
$(srcdir)/opt-read.awk \
1949 $(srcdir)/opth-gen.awk
1950 $(AWK
) -f
$(srcdir)/opt-functions.awk
-f
$(srcdir)/opt-read.awk \
1951 -f
$(srcdir)/opth-gen.awk \
1952 < $< > tmp-options.h
1953 $(SHELL
) $(srcdir)/..
/move-if-change tmp-options.h options.h
1956 dumpvers
: dumpvers.
cc
1958 # lto-compress.o needs $(ZLIBINC) added to the include flags.
1959 CFLAGS-lto-compress.o
+= $(ZLIBINC
) $(ZSTD_INC
)
1961 CFLAGS-lto-streamer-in.o
+= -DTARGET_MACHINE
=\"$(target_noncanonical
)\"
1963 bversion.h
: s-bversion
; @true
1964 s-bversion
: BASE-VER
1965 echo
"#define BUILDING_GCC_MAJOR `echo $(BASEVER_c) | sed -e 's/^\([0-9]*\).*$$/\1/'`" > bversion.h
1966 echo
"#define BUILDING_GCC_MINOR `echo $(BASEVER_c) | sed -e 's/^[0-9]*\.\([0-9]*\).*$$/\1/'`" >> bversion.h
1967 echo
"#define BUILDING_GCC_PATCHLEVEL `echo $(BASEVER_c) | sed -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\)$$/\1/'`" >> bversion.h
1968 echo
"#define BUILDING_GCC_VERSION (BUILDING_GCC_MAJOR * 1000 + BUILDING_GCC_MINOR)" >> bversion.h
1971 CFLAGS-toplev.o
+= -DTARGET_NAME
=\"$(target_noncanonical
)\"
1972 CFLAGS-optinfo-emit-json.o
+= -DTARGET_NAME
=\"$(target_noncanonical
)\" $(ZLIBINC
)
1973 CFLAGS-analyzer
/engine.o
+= $(ZLIBINC
)
1975 pass-instances.def
: $(srcdir)/passes.def
$(PASSES_EXTRA
) \
1976 $(srcdir)/gen-pass-instances.awk
1977 $(AWK
) -f
$(srcdir)/gen-pass-instances.awk \
1978 $(srcdir)/passes.def
$(PASSES_EXTRA
) > pass-instances.def
1980 $(out_object_file
): $(out_file
)
1984 $(common_out_object_file
): $(common_out_file
)
1988 # Generate header and source files from the machine description,
1991 .PRECIOUS
: insn-config.h insn-flags.h insn-codes.h insn-constants.h \
1992 insn-emit.
cc insn-recog.
cc insn-extract.
cc insn-output.
cc insn-peep.
cc \
1993 insn-attr.h insn-attr-common.h insn-attrtab.
cc insn-dfatab.
cc \
1994 insn-latencytab.
cc insn-preds.
cc gimple-match.
cc generic-match.
cc \
1997 # Dependencies for the md file. The first time through, we just assume
1998 # the md file itself and the generated dependency file (in order to get
1999 # it built). The second time through we have the dependency file.
2001 MD_DEPS
= # s-mddeps $(md_file) $(MD_INCLUDES)
2003 s-mddeps
: $(md_file
) $(MD_INCLUDES
) build
/genmddeps
$(build_exeext
)
2004 $(RUN_GEN
) build
/genmddeps
$(build_exeext
) $(md_file
) > tmp-mddeps
2005 $(SHELL
) $(srcdir)/..
/move-if-change tmp-mddeps mddeps.mk
2008 # For each of the files generated by running a generator program over
2009 # the machine description, the following static pattern rules run the
2010 # generator program only if the machine description has changed,
2011 # but touch the target file only when its contents actually change.
2012 # The "; @true" construct forces Make to recheck the timestamp on
2015 simple_rtl_generated_h
= # insn-attr.h insn-attr-common.h insn-codes.h \
2016 # insn-config.h insn-flags.h insn-target-def.h
2018 simple_rtl_generated_c
= insn-automata.
cc insn-emit.
cc \
2019 insn-extract.
cc insn-output.
cc \
2020 insn-peep.
cc insn-recog.
cc
2022 simple_generated_h
= $(simple_rtl_generated_h
) # insn-constants.h
2024 simple_generated_c
= $(simple_rtl_generated_c
) insn-enums.
cc
2026 $(simple_generated_h
:insn-
%.h
=s-
%) \
2027 $(simple_generated_c
:insn-
%.
cc=s-
%): s-
%: $(MD_DEPS
)
2029 $(simple_rtl_generated_h
:insn-
%.h
=s-
%) \
2030 $(simple_rtl_generated_c
:insn-
%.
cc=s-
%): s-
%: insn-conditions.md
2032 $(simple_generated_h
): insn-
%.h
: s-
%; @true
2034 $(RUN_GEN
) build
/gen
$*$(build_exeext
) $(md_file
) \
2035 $(filter insn-conditions.md
,$^
) > tmp-
$*.h
2036 $(SHELL
) $(srcdir)/..
/move-if-change tmp-
$*.h insn-
$*.h
2039 $(simple_generated_c
): insn-
%.
cc: s-
%; @true
2040 $(simple_generated_c
:insn-
%.
cc=s-
%): s-
%: build
/gen
%$(build_exeext
)
2041 $(RUN_GEN
) build
/gen
$*$(build_exeext
) $(md_file
) \
2042 $(filter insn-conditions.md
,$^
) > tmp-
$*.
cc
2043 $(SHELL
) $(srcdir)/..
/move-if-change tmp-
$*.
cc insn-
$*.
cc
2046 # gencheck doesn't read the machine description, and the file produced
2047 # doesn't use the insn-* convention.
2048 tree-check.h
: # s-check ; @true
2049 s-check
: build
/gencheck
$(build_exeext
)
2050 $(RUN_GEN
) build
/gencheck
$(build_exeext
) > tmp-check.h
2051 $(SHELL
) $(srcdir)/..
/move-if-change tmp-check.h tree-check.h
2054 # genattrtab produces three files: tmp-{attrtab.cc,dfatab.cc,latencytab.cc}
2055 insn-attrtab.
cc insn-dfatab.
cc insn-latencytab.
cc: s-attrtab
; @true
2056 s-attrtab
: $(MD_DEPS
) build
/genattrtab
$(build_exeext
) \
2058 $(RUN_GEN
) build
/genattrtab
$(build_exeext
) $(md_file
) insn-conditions.md \
2059 -Atmp-attrtab.
cc -Dtmp-dfatab.
cc -Ltmp-latencytab.
cc
2060 $(SHELL
) $(srcdir)/..
/move-if-change tmp-attrtab.
cc insn-attrtab.
cc
2061 $(SHELL
) $(srcdir)/..
/move-if-change tmp-dfatab.
cc insn-dfatab.
cc
2062 $(SHELL
) $(srcdir)/..
/move-if-change tmp-latencytab.
cc insn-latencytab.
cc
2065 # genopinit produces two files.
2066 insn-opinit.
cc insn-opinit.h
: # s-opinit ; @true
2067 s-opinit
: $(MD_DEPS
) build
/genopinit
$(build_exeext
) insn-conditions.md
2068 $(RUN_GEN
) build
/genopinit
$(build_exeext
) $(md_file
) \
2069 insn-conditions.md
-htmp-opinit.h
-ctmp-opinit.
cc
2070 $(SHELL
) $(srcdir)/..
/move-if-change tmp-opinit.h insn-opinit.h
2071 $(SHELL
) $(srcdir)/..
/move-if-change tmp-opinit.
cc insn-opinit.
cc
2074 # gencondmd doesn't use the standard naming convention.
2075 build
/gencondmd.
cc: s-conditions
; @true
2076 s-conditions
: $(MD_DEPS
) build
/genconditions
$(build_exeext
)
2077 $(RUN_GEN
) build
/genconditions
$(build_exeext
) $(md_file
) > tmp-condmd.
cc
2078 $(SHELL
) $(srcdir)/..
/move-if-change tmp-condmd.
cc build
/gencondmd.
cc
2079 $(STAMP
) s-conditions
2081 insn-conditions.md
: # s-condmd; @true
2082 s-condmd
: build
/gencondmd
$(build_exeext
)
2083 $(RUN_GEN
) build
/gencondmd
$(build_exeext
) > tmp-cond.md
2084 $(SHELL
) $(srcdir)/..
/move-if-change tmp-cond.md insn-conditions.md
2088 # These files are generated by running the same generator more than
2089 # once with different options, so they have custom rules. The
2090 # stampfile idiom is the same.
2091 #genrtl.h: s-genrtl-h; @true
2093 #s-genrtl-h: build/gengenrtl$(build_exeext)
2094 # $(RUN_GEN) build/gengenrtl$(build_exeext) > tmp-genrtl.h
2095 # $(SHELL) $(srcdir)/../move-if-change tmp-genrtl.h genrtl.h
2096 # $(STAMP) s-genrtl-h
2098 insn-modes.
cc: # s-modes; @true
2099 insn-modes.h
: # s-modes-h; @true
2100 insn-modes-inline.h
: # s-modes-inline-h; @true
2101 min-insn-modes.
cc: # s-modes-m; @true
2103 s-modes
: build
/genmodes
$(build_exeext
)
2104 $(RUN_GEN
) build
/genmodes
$(build_exeext
) > tmp-modes.
cc
2105 $(SHELL
) $(srcdir)/..
/move-if-change tmp-modes.
cc insn-modes.
cc
2108 s-modes-h
: build
/genmodes
$(build_exeext
)
2109 $(RUN_GEN
) build
/genmodes
$(build_exeext
) -h
> tmp-modes.h
2110 $(SHELL
) $(srcdir)/..
/move-if-change tmp-modes.h insn-modes.h
2113 s-modes-inline-h
: build
/genmodes
$(build_exeext
)
2114 $(RUN_GEN
) build
/genmodes
$(build_exeext
) -i
> tmp-modes-inline.h
2115 $(SHELL
) $(srcdir)/..
/move-if-change tmp-modes-inline.h \
2117 $(STAMP
) s-modes-inline-h
2119 s-modes-m
: build
/genmodes
$(build_exeext
)
2120 $(RUN_GEN
) build
/genmodes
$(build_exeext
) -m
> tmp-min-modes.
cc
2121 $(SHELL
) $(srcdir)/..
/move-if-change tmp-min-modes.
cc min-insn-modes.
cc
2124 insn-preds.
cc: # s-preds; @true
2125 tm-preds.h
: # s-preds-h; @true
2126 tm-constrs.h
: # s-constrs-h; @true
2129 mddump
: $(BUILD_RTL
) $(MD_DEPS
) build
/genmddump
$(build_exeext
)
2130 $(RUN_GEN
) build
/genmddump
$(build_exeext
) $(md_file
) > tmp-mddump.md
2132 s-preds
: $(MD_DEPS
) build
/genpreds
$(build_exeext
)
2133 $(RUN_GEN
) build
/genpreds
$(build_exeext
) $(md_file
) > tmp-preds.
cc
2134 $(SHELL
) $(srcdir)/..
/move-if-change tmp-preds.
cc insn-preds.
cc
2137 s-preds-h
: $(MD_DEPS
) build
/genpreds
$(build_exeext
)
2138 $(RUN_GEN
) build
/genpreds
$(build_exeext
) -h
$(md_file
) > tmp-preds.h
2139 $(SHELL
) $(srcdir)/..
/move-if-change tmp-preds.h tm-preds.h
2142 s-constrs-h
: $(MD_DEPS
) build
/genpreds
$(build_exeext
)
2143 $(RUN_GEN
) build
/genpreds
$(build_exeext
) -c
$(md_file
) > tmp-constrs.h
2144 $(SHELL
) $(srcdir)/..
/move-if-change tmp-constrs.h tm-constrs.h
2145 $(STAMP
) s-constrs-h
2147 s-case-cfn-macros
: build
/gencfn-macros
$(build_exeext
)
2148 $(RUN_GEN
) build
/gencfn-macros
$(build_exeext
) -c \
2149 > tmp-case-cfn-macros.h
2150 $(SHELL
) $(srcdir)/..
/move-if-change tmp-case-cfn-macros.h \
2152 $(STAMP
) s-case-cfn-macros
2153 case-cfn-macros.h
: # s-case-cfn-macros; @true
2155 s-cfn-operators
: # build/gencfn-macros$(build_exeext)
2156 $(RUN_GEN
) build
/gencfn-macros
$(build_exeext
) -o \
2157 > tmp-cfn-operators.pd
2158 $(SHELL
) $(srcdir)/..
/move-if-change tmp-cfn-operators.pd \
2160 $(STAMP
) s-cfn-operators
2161 cfn-operators.pd
: # s-cfn-operators; @true
2163 target-hooks-def.h
: # s-target-hooks-def-h; @true
2164 # make sure that when we build info files, the used tm.texi is up to date.
2165 $(srcdir)/doc
/tm.texi
: s-tm-texi
; @true
2167 s-target-hooks-def-h
: # build/genhooks$(build_exeext)
2168 $(RUN_GEN
) build
/genhooks
$(build_exeext
) "Target Hook" \
2169 > tmp-target-hooks-def.h
2170 $(SHELL
) $(srcdir)/..
/move-if-change tmp-target-hooks-def.h \
2172 $(STAMP
) s-target-hooks-def-h
2174 c-family
/c-target-hooks-def.h
: # s-c-target-hooks-def-h; @true
2176 s-c-target-hooks-def-h
: # build/genhooks$(build_exeext)
2177 $(RUN_GEN
) build
/genhooks
$(build_exeext
) "C Target Hook" \
2178 > tmp-c-target-hooks-def.h
2179 $(SHELL
) $(srcdir)/..
/move-if-change tmp-c-target-hooks-def.h \
2180 c-family
/c-target-hooks-def.h
2181 $(STAMP
) s-c-target-hooks-def-h
2183 common
/common-target-hooks-def.h
: # s-common-target-hooks-def-h; @true
2185 s-common-target-hooks-def-h
: # build/genhooks$(build_exeext)
2186 $(RUN_GEN
) build
/genhooks
$(build_exeext
) "Common Target Hook" \
2187 > tmp-common-target-hooks-def.h
2188 $(SHELL
) $(srcdir)/..
/move-if-change tmp-common-target-hooks-def.h \
2189 common
/common-target-hooks-def.h
2190 $(STAMP
) s-common-target-hooks-def-h
2192 d
/d-target-hooks-def.h
: # s-d-target-hooks-def-h; @true
2194 s-d-target-hooks-def-h
: build
/genhooks
$(build_exeext
)
2195 $(RUN_GEN
) build
/genhooks
$(build_exeext
) "D Target Hook" \
2196 > tmp-d-target-hooks-def.h
2198 $(SHELL
) $(srcdir)/..
/move-if-change tmp-d-target-hooks-def.h \
2199 d
/d-target-hooks-def.h
2200 $(STAMP
) s-d-target-hooks-def-h
2202 # check if someone mistakenly only changed tm.texi.
2203 # We use a different pathname here to avoid a circular dependency.
2204 s-tm-texi
: $(srcdir)/doc
/..
/doc
/tm.texi
2206 # The tm.texi we want to compare against / check into svn should have
2207 # unix-style line endings. To make this work on MinGW, remove \r.
2208 # \r is not portable to Solaris tr, therefore we have a special
2209 # case for ASCII. We use \r for other encodings like EBCDIC.
2210 s-tm-texi
: build
/genhooks
$(build_exeext
) $(srcdir)/doc
/tm.texi.in
2211 $(RUN_GEN
) build
/genhooks
$(build_exeext
) -d \
2212 $(srcdir)/doc
/tm.texi.in
> tmp-tm.texi
2213 case
`echo X|tr X '\101'` in \
2214 A
) tr
-d
'\015' < tmp-tm.texi
> tmp2-tm.texi
;; \
2215 *) tr
-d
'\r' < tmp-tm.texi
> tmp2-tm.texi
;; \
2217 mv tmp2-tm.texi tmp-tm.texi
2218 $(SHELL
) $(srcdir)/..
/move-if-change tmp-tm.texi tm.texi
2219 @if cmp
-s
$(srcdir)/doc
/tm.texi tm.texi
; then \
2221 elif
test $(srcdir)/doc
/tm.texi
-nt
$(srcdir)/doc
/tm.texi.in \
2222 && ( test $(srcdir)/doc
/tm.texi
-nt
$(srcdir)/target.def \
2223 ||
test $(srcdir)/doc
/tm.texi
-nt
$(srcdir)/c-family
/c-target.def \
2224 ||
test $(srcdir)/doc
/tm.texi
-nt
$(srcdir)/common
/common-target.def \
2225 ||
test $(srcdir)/doc
/tm.texi
-nt
$(srcdir)/d
/d-target.def \
2228 echo You should edit
$(srcdir)/doc
/tm.texi.in rather than
$(srcdir)/doc
/tm.texi .
>&2 ; \
2232 echo Verify that you have permission to grant a GFDL license for
all >&2 ; \
2233 echo new text in
$(objdir
)/tm.texi
, then copy it to
$(srcdir)/doc
/tm.texi.
>&2 ; \
2237 gimple-match.
cc: # s-match gimple-match-head.cc ; @true
2238 generic-match.
cc: # s-match generic-match-head.cc ; @true
2240 s-match
: build
/genmatch
$(build_exeext
) $(srcdir)/match.pd cfn-operators.pd
2241 $(RUN_GEN
) build
/genmatch
$(build_exeext
) --gimple
$(srcdir)/match.pd \
2242 > tmp-gimple-match.
cc
2243 $(RUN_GEN
) build
/genmatch
$(build_exeext
) --generic
$(srcdir)/match.pd \
2244 > tmp-generic-match.
cc
2245 $(SHELL
) $(srcdir)/..
/move-if-change tmp-gimple-match.
cc \
2247 $(SHELL
) $(srcdir)/..
/move-if-change tmp-generic-match.
cc \
2251 GTFILES
= $(CPPLIB_H
) $(srcdir)/input.h
$(srcdir)/coretypes.h \
2252 $(host_xm_file_list
) \
2253 $(tm_file_list
) $(HASHTAB_H
) $(SPLAY_TREE_H
) $(srcdir)/bitmap.h \
2254 $(srcdir)/wide-int.h
$(srcdir)/alias.h \
2255 $(srcdir)/coverage.
cc $(srcdir)/rtl.h \
2256 $(srcdir)/optabs.h
$(srcdir)/tree.h
$(srcdir)/tree-core.h \
2257 $(srcdir)/libfuncs.h
$(SYMTAB_H
) \
2258 $(srcdir)/real.h
$(srcdir)/function.h
$(srcdir)/insn-addr.h
$(srcdir)/hwint.h \
2259 $(srcdir)/fixed-value.h \
2260 $(srcdir)/function-abi.h \
2261 $(srcdir)/output.h
$(srcdir)/cfgloop.h
$(srcdir)/cfg.h
$(srcdir)/profile-count.h \
2262 $(srcdir)/cselib.h
$(srcdir)/basic-block.h
$(srcdir)/ipa-ref.h
$(srcdir)/cgraph.h \
2263 $(srcdir)/symtab-thunks.h
$(srcdir)/symtab-thunks.
cc \
2264 $(srcdir)/symtab-clones.h \
2265 $(srcdir)/reload.h
$(srcdir)/caller-save.
cc $(srcdir)/symtab.
cc \
2266 $(srcdir)/alias.
cc $(srcdir)/bitmap.
cc $(srcdir)/cselib.
cc $(srcdir)/cgraph.
cc \
2267 $(srcdir)/ipa-prop.
cc $(srcdir)/ipa-cp.
cc $(srcdir)/ipa-utils.h \
2268 $(srcdir)/ipa-param-manipulation.h
$(srcdir)/ipa-sra.
cc $(srcdir)/dbxout.
cc \
2269 $(srcdir)/ipa-modref.h
$(srcdir)/ipa-modref.
cc \
2270 $(srcdir)/ipa-modref-tree.h \
2271 $(srcdir)/signop.h \
2272 $(srcdir)/diagnostic-spec.h
$(srcdir)/diagnostic-spec.
cc \
2273 $(srcdir)/dwarf2out.h \
2274 $(srcdir)/dwarf2asm.
cc \
2275 $(srcdir)/dwarf2cfi.
cc \
2276 $(srcdir)/dwarf2ctf.
cc \
2277 $(srcdir)/dwarf2out.
cc \
2279 $(srcdir)/ctfout.
cc \
2280 $(srcdir)/btfout.
cc \
2281 $(srcdir)/tree-vect-generic.
cc \
2282 $(srcdir)/gimple-isel.
cc \
2283 $(srcdir)/dojump.
cc $(srcdir)/emit-rtl.h \
2284 $(srcdir)/emit-rtl.
cc $(srcdir)/except.h
$(srcdir)/explow.
cc $(srcdir)/expr.
cc \
2286 $(srcdir)/function.
cc $(srcdir)/except.
cc \
2287 $(srcdir)/ggc-tests.
cc \
2288 $(srcdir)/gcse.
cc $(srcdir)/godump.
cc \
2289 $(srcdir)/lists.
cc $(srcdir)/optabs-libfuncs.
cc \
2290 $(srcdir)/profile.
cc $(srcdir)/mcf.
cc \
2291 $(srcdir)/reg-stack.
cc $(srcdir)/cfgrtl.
cc \
2292 $(srcdir)/stor-layout.
cc \
2293 $(srcdir)/stringpool.
cc $(srcdir)/tree.
cc $(srcdir)/varasm.
cc \
2294 $(srcdir)/gimple.h \
2295 $(srcdir)/gimple-ssa.h \
2296 $(srcdir)/tree-ssanames.
cc $(srcdir)/tree-eh.
cc $(srcdir)/tree-ssa-address.
cc \
2297 $(srcdir)/tree-cfg.
cc $(srcdir)/tree-ssa-loop-ivopts.
cc \
2298 $(srcdir)/tree-dfa.
cc \
2299 $(srcdir)/tree-iterator.
cc $(srcdir)/gimple-expr.
cc \
2300 $(srcdir)/tree-chrec.h \
2301 $(srcdir)/tree-scalar-evolution.
cc \
2302 $(srcdir)/tree-ssa-operands.h \
2303 $(srcdir)/tree-profile.
cc $(srcdir)/tree-nested.
cc \
2304 $(srcdir)/omp-offload.h \
2305 $(srcdir)/omp-general.
cc \
2306 $(srcdir)/omp-low.
cc \
2307 $(srcdir)/targhooks.
cc $(out_file
) $(srcdir)/passes.
cc \
2308 $(srcdir)/cgraphclones.
cc \
2309 $(srcdir)/tree-phinodes.
cc \
2310 $(srcdir)/tree-ssa-alias.h \
2311 $(srcdir)/tree-ssanames.h \
2312 $(srcdir)/tree-vrp.h \
2313 $(srcdir)/value-range.h \
2314 $(srcdir)/ipa-prop.h \
2315 $(srcdir)/trans-mem.
cc \
2316 $(srcdir)/lto-streamer.h \
2317 $(srcdir)/target-globals.h \
2318 $(srcdir)/ipa-predicate.h \
2319 $(srcdir)/ipa-fnsummary.h \
2320 $(srcdir)/vtable-verify.
cc \
2322 $(srcdir)/ubsan.
cc \
2324 $(srcdir)/sanopt.
cc \
2325 $(srcdir)/sancov.
cc \
2326 $(srcdir)/ipa-devirt.
cc \
2327 $(srcdir)/internal-fn.h \
2328 $(srcdir)/calls.
cc \
2329 $(srcdir)/omp-general.h \
2332 # Compute the list of GT header files from the corresponding C sources,
2333 # possibly nested within config or language subdirectories. Match gengtype's
2334 # behavior in this respect: gt-LANG-file.h for "file" anywhere within a LANG
2335 # language subdir, gt-file.h otherwise (no subdir indication for config/
2338 GTFILES_H
= $(subst /,-, \
2339 $(shell echo
$(patsubst $(srcdir)/%,gt-
%, \
2340 $(patsubst %.
cc,%.h
, \
2341 $(filter %.
cc, $(GTFILES
)))) \
2342 | sed
-e
"s|/[^ ]*/|/|g" -e
"s|gt-config/|gt-|g"))
2344 GTFILES_LANG_H
= $(patsubst [%], gtype-
%.h
, $(filter [%], $(GTFILES
)))
2345 ALL_GTFILES_H
:= $(sort $(GTFILES_H
) $(GTFILES_LANG_H
))
2347 # $(GTFILES) may be too long to put on a command line, so we have to
2348 # write it out to a file (taking care not to do that in a way that
2349 # overflows a command line!) and then have gengtype read the file in.
2351 $(ALL_GTFILES_H
) gtype-desc.
cc gtype-desc.h gtype.state
: # s-gtype ; @true
2353 ### Common flags to gengtype [e.g. -v or -B backupdir]
2356 gtyp-input.list
: s-gtyp-input
; @true
2357 s-gtyp-input
: Makefile
2358 @
: $(call write_entries_to_file
,$(GTFILES
),tmp-gi.list
)
2359 $(SHELL
) $(srcdir)/..
/move-if-change tmp-gi.list gtyp-input.list
2360 $(STAMP
) s-gtyp-input
2362 s-gtype
: $(EXTRA_GTYPE_DEPS
) build
/gengtype
$(build_exeext
) \
2363 $(filter-out [%], $(GTFILES
)) gtyp-input.list
2364 # First, parse all files and save a state file.
2365 $(RUN_GEN
) build
/gengtype
$(build_exeext
) $(GENGTYPE_FLAGS
) \
2366 -S
$(srcdir) -I gtyp-input.list
-w tmp-gtype.state
2367 # Second, read the state file and generate all files. This ensure that
2368 # gtype.state is correctly read:
2369 $(SHELL
) $(srcdir)/..
/move-if-change tmp-gtype.state gtype.state
2370 $(RUN_GEN
) build
/gengtype
$(build_exeext
) $(GENGTYPE_FLAGS
) \
2375 generated_files
= config.h tm.h
$(TM_P_H
) $(TM_D_H
) $(TM_H
) multilib.h \
2376 $(simple_generated_h
) specs.h \
2379 $(ALL_GTFILES_H
) gtype-desc.
cc gtype-desc.h version.h \
2380 options.h target-hooks-def.h insn-opinit.h \
2381 common
/common-target-hooks-def.h pass-instances.def \
2382 gimple-match.
cc generic-match.
cc \
2383 c-family
/c-target-hooks-def.h d
/d-target-hooks-def.h \
2385 cfn-operators.pd omp-device-properties.h
2388 # How to compile object files to run on the build machine.
2390 build
/%.o
: # dependencies provided by explicit rule later
2391 $(COMPILER_FOR_BUILD
) -c
$(BUILD_COMPILERFLAGS
) $(BUILD_CPPFLAGS
) \
2394 # Header dependencies for the programs that generate source code.
2395 # These are library modules...
2396 build
/errors.o
: errors.
cc $(BCONFIG_H
) $(SYSTEM_H
) errors.h
2397 build
/gensupport.o
: gensupport.
cc $(BCONFIG_H
) $(SYSTEM_H
) \
2398 $(CORETYPES_H
) $(GTM_H
) $(RTL_BASE_H
) $(OBSTACK_H
) errors.h \
2399 $(HASHTAB_H
) $(READ_MD_H
) $(GENSUPPORT_H
) $(HASH_TABLE_H
)
2400 build
/ggc-none.o
: ggc-none.
cc $(BCONFIG_H
) $(SYSTEM_H
) $(CORETYPES_H
) \
2402 build
/min-insn-modes.o
: min-insn-modes.
cc $(BCONFIG_H
) $(SYSTEM_H
) \
2404 build
/print-rtl.o
: print-rtl.
cc $(BCONFIG_H
) $(SYSTEM_H
) $(CORETYPES_H
) \
2405 $(GTM_H
) $(RTL_BASE_H
)
2406 build
/read-md.o
: read-md.
cc $(BCONFIG_H
) $(SYSTEM_H
) $(CORETYPES_H
) \
2407 $(HASHTAB_H
) errors.h
$(READ_MD_H
)
2408 build
/read-rtl.o
: read-rtl.
cc $(BCONFIG_H
) $(SYSTEM_H
) $(CORETYPES_H
) \
2409 $(GTM_H
) $(RTL_BASE_H
) $(OBSTACK_H
) $(HASHTAB_H
) $(READ_MD_H
) \
2411 build
/rtl.o
: rtl.
cc $(BCONFIG_H
) $(CORETYPES_H
) $(GTM_H
) $(SYSTEM_H
) \
2412 $(RTL_H
) $(GGC_H
) errors.h
2413 build
/vec.o
: vec.
cc $(BCONFIG_H
) $(SYSTEM_H
) $(CORETYPES_H
) $(VEC_H
) \
2414 $(GGC_H
) toplev.h
$(DIAGNOSTIC_CORE_H
) $(HASH_TABLE_H
)
2415 build
/hash-table.o
: hash-table.
cc $(BCONFIG_H
) $(SYSTEM_H
) \
2416 $(CORETYPES_H
) $(HASH_TABLE_H
) $(GGC_H
) toplev.h
$(DIAGNOSTIC_CORE_H
)
2417 build
/sort.o
: sort.
cc $(BCONFIG_H
) $(SYSTEM_H
)
2418 build
/inchash.o
: inchash.
cc $(BCONFIG_H
) $(SYSTEM_H
) $(CORETYPES_H
) \
2419 $(HASHTAB_H
) inchash.h
2420 build
/gencondmd.o
: build
/gencondmd.
cc $(BCONFIG_H
) $(SYSTEM_H
) \
2421 $(CORETYPES_H
) $(GTM_H
) insn-constants.h \
2422 $(filter-out insn-flags.h
, $(RTL_H
) $(TM_P_H
) $(FUNCTION_H
) $(REGS_H
) \
2423 $(RECOG_H
) output.h
$(FLAGS_H
) $(RESOURCE_H
) toplev.h
$(DIAGNOSTIC_CORE_H
) reload.h \
2424 $(EXCEPT_H
) tm-constrs.h
)
2425 # This pulls in tm-pred.h which contains inline functions wrapping up
2426 # predicates from the back-end so those functions must be discarded.
2427 # No big deal since gencondmd.cc is a dummy file for non-GCC compilers.
2428 build
/gencondmd.o
: \
2429 BUILD_CFLAGS
:= $(filter-out -fkeep-inline-functions
, $(BUILD_CFLAGS
))
2431 # ...these are the programs themselves.
2432 build
/genattr.o
: genattr.
cc $(RTL_BASE_H
) $(BCONFIG_H
) $(SYSTEM_H
) \
2433 $(CORETYPES_H
) $(GTM_H
) errors.h
$(READ_MD_H
) $(GENSUPPORT_H
)
2434 build
/genattr-common.o
: genattr-common.
cc $(RTL_BASE_H
) $(BCONFIG_H
) \
2435 $(SYSTEM_H
) $(CORETYPES_H
) $(GTM_H
) errors.h
$(READ_MD_H
) $(GENSUPPORT_H
)
2436 build
/genattrtab.o
: genattrtab.
cc $(RTL_BASE_H
) $(OBSTACK_H
) \
2437 $(BCONFIG_H
) $(SYSTEM_H
) $(CORETYPES_H
) $(GTM_H
) errors.h
$(GGC_H
) \
2438 $(READ_MD_H
) $(GENSUPPORT_H
) $(FNMATCH_H
)
2439 build
/genautomata.o
: genautomata.
cc $(RTL_BASE_H
) $(OBSTACK_H
) \
2440 $(BCONFIG_H
) $(SYSTEM_H
) $(CORETYPES_H
) $(GTM_H
) errors.h
$(VEC_H
) \
2441 $(HASHTAB_H
) $(GENSUPPORT_H
) $(FNMATCH_H
)
2442 build
/gencheck.o
: gencheck.
cc all-tree.def
$(BCONFIG_H
) $(GTM_H
) \
2443 $(SYSTEM_H
) $(CORETYPES_H
) tree.def c-family
/c-common.def \
2444 $(lang_tree_files
) gimple.def
2445 build
/genchecksum.o
: genchecksum.
cc $(BCONFIG_H
) $(SYSTEM_H
) $(MD5_H
)
2446 build
/gencodes.o
: gencodes.
cc $(RTL_BASE_H
) $(BCONFIG_H
) $(SYSTEM_H
) \
2447 $(CORETYPES_H
) $(GTM_H
) errors.h
$(GENSUPPORT_H
)
2448 build
/genconditions.o
: genconditions.
cc $(RTL_BASE_H
) $(BCONFIG_H
) \
2449 $(SYSTEM_H
) $(CORETYPES_H
) $(GTM_H
) errors.h
$(HASHTAB_H
) \
2450 $(READ_MD_H
) $(GENSUPPORT_H
)
2451 build
/genconfig.o
: genconfig.
cc $(RTL_BASE_H
) $(BCONFIG_H
) $(SYSTEM_H
) \
2452 $(CORETYPES_H
) $(GTM_H
) errors.h
$(GENSUPPORT_H
)
2453 build
/genconstants.o
: genconstants.
cc $(BCONFIG_H
) $(SYSTEM_H
) \
2454 $(CORETYPES_H
) errors.h
$(READ_MD_H
)
2455 build
/genemit.o
: genemit.
cc $(RTL_BASE_H
) $(BCONFIG_H
) $(SYSTEM_H
) \
2456 $(CORETYPES_H
) $(GTM_H
) errors.h
$(READ_MD_H
) $(GENSUPPORT_H
) internal-fn.def
2457 build
/genenums.o
: genenums.
cc $(BCONFIG_H
) $(SYSTEM_H
) \
2458 $(CORETYPES_H
) errors.h
$(READ_MD_H
)
2459 build
/genextract.o
: genextract.
cc $(RTL_BASE_H
) $(BCONFIG_H
) \
2460 $(SYSTEM_H
) $(CORETYPES_H
) $(GTM_H
) errors.h
$(READ_MD_H
) $(GENSUPPORT_H
)
2461 build
/genflags.o
: genflags.
cc $(RTL_BASE_H
) $(OBSTACK_H
) $(BCONFIG_H
) \
2462 $(SYSTEM_H
) $(CORETYPES_H
) $(GTM_H
) errors.h
$(READ_MD_H
) $(GENSUPPORT_H
)
2463 build
/gentarget-def.o
: gentarget-def.
cc $(BCONFIG_H
) $(SYSTEM_H
) \
2464 $(CORETYPES_H
) $(GTM_H
) $(RTL_BASE_H
) errors.h
$(READ_MD_H
) \
2465 $(GENSUPPORT_H
) $(HASH_TABLE_H
) target-insns.def
2466 build
/gengenrtl.o
: gengenrtl.
cc $(BCONFIG_H
) $(SYSTEM_H
) rtl.def
2468 # The gengtype generator program is special: Two versions are built.
2469 # One is for the build machine, and one is for the host to allow
2470 # plugins to define their types and generate the supporting GGC
2471 # datastructures and routines with GTY markers.
2472 # The host object files depend on CONFIG_H, and the build objects
2473 # on BCONFIG_H. For the build objects, add -DGENERATOR_FILE manually,
2474 # the build-%: rule doesn't apply to them.
2476 GENGTYPE_OBJS
= gengtype.o gengtype-parse.o gengtype-state.o \
2477 gengtype-lex.o errors.o
2479 gengtype-lex.o build
/gengtype-lex.o
: gengtype-lex.
cc gengtype.h
$(SYSTEM_H
)
2480 CFLAGS-gengtype-lex.o
+= -DHOST_GENERATOR_FILE
2481 build
/gengtype-lex.o
: $(BCONFIG_H
)
2483 gengtype-parse.o build
/gengtype-parse.o
: gengtype-parse.
cc gengtype.h \
2485 CFLAGS-gengtype-parse.o
+= -DHOST_GENERATOR_FILE
2486 build
/gengtype-parse.o
: $(BCONFIG_H
)
2488 gengtype-state.o build
/gengtype-state.o
: gengtype-state.
cc $(SYSTEM_H
) \
2489 gengtype.h errors.h version.h
$(HASHTAB_H
) $(OBSTACK_H
) \
2491 CFLAGS-gengtype-state.o
+= -DHOST_GENERATOR_FILE
2492 build
/gengtype-state.o
: $(BCONFIG_H
)
2493 gengtype.o build
/gengtype.o
: gengtype.
cc $(SYSTEM_H
) gengtype.h \
2494 rtl.def insn-notes.def errors.h version.h \
2495 $(HASHTAB_H
) $(OBSTACK_H
) $(XREGEX_H
)
2496 CFLAGS-gengtype.o
+= -DHOST_GENERATOR_FILE
2497 build
/gengtype.o
: $(BCONFIG_H
)
2499 CFLAGS-errors.o
+= -DHOST_GENERATOR_FILE
2501 build
/genmddeps.o
: genmddeps.
cc $(BCONFIG_H
) $(SYSTEM_H
) $(CORETYPES_H
) \
2502 errors.h
$(READ_MD_H
)
2503 build
/genmodes.o
: genmodes.
cc $(BCONFIG_H
) $(SYSTEM_H
) errors.h \
2504 $(HASHTAB_H
) machmode.def
$(extra_modes_file
)
2505 build
/genopinit.o
: genopinit.
cc $(RTL_BASE_H
) $(BCONFIG_H
) $(SYSTEM_H
) \
2506 $(CORETYPES_H
) $(GTM_H
) errors.h
$(GENSUPPORT_H
) optabs.def
2507 build
/genoutput.o
: genoutput.
cc $(RTL_BASE_H
) $(BCONFIG_H
) $(SYSTEM_H
) \
2508 $(CORETYPES_H
) $(GTM_H
) errors.h
$(READ_MD_H
) $(GENSUPPORT_H
)
2509 build
/genpeep.o
: genpeep.
cc $(RTL_BASE_H
) $(BCONFIG_H
) $(SYSTEM_H
) \
2510 $(CORETYPES_H
) $(GTM_H
) errors.h
$(GENSUPPORT_H
) toplev.h \
2511 $(DIAGNOSTIC_CORE_H
)
2512 build
/genpreds.o
: genpreds.
cc $(RTL_BASE_H
) $(BCONFIG_H
) $(SYSTEM_H
) \
2513 $(CORETYPES_H
) $(GTM_H
) errors.h
$(READ_MD_H
) $(GENSUPPORT_H
) $(OBSTACK_H
)
2514 build
/genrecog.o
: genrecog.
cc $(RTL_BASE_H
) $(BCONFIG_H
) $(SYSTEM_H
) \
2515 $(CORETYPES_H
) $(GTM_H
) errors.h
$(READ_MD_H
) $(GENSUPPORT_H
) \
2516 $(HASH_TABLE_H
) inchash.h
2517 build
/genhooks.o
: genhooks.
cc $(TARGET_DEF
) $(C_TARGET_DEF
) \
2518 $(COMMON_TARGET_DEF
) $(D_TARGET_DEF
) $(BCONFIG_H
) $(SYSTEM_H
) errors.h
2519 build
/genmddump.o
: genmddump.
cc $(RTL_BASE_H
) $(BCONFIG_H
) $(SYSTEM_H
) \
2520 $(CORETYPES_H
) $(GTM_H
) errors.h
$(READ_MD_H
) $(GENSUPPORT_H
)
2521 build
/genmatch.o
: genmatch.
cc $(BCONFIG_H
) $(SYSTEM_H
) \
2522 $(CORETYPES_H
) errors.h
$(HASH_TABLE_H
) hash-map.h
$(GGC_H
) is-a.h \
2523 tree.def builtins.def internal-fn.def case-cfn-macros.h
$(CPPLIB_H
)
2524 build
/gencfn-macros.o
: gencfn-macros.
cc $(BCONFIG_H
) $(SYSTEM_H
) \
2525 $(CORETYPES_H
) errors.h
$(HASH_TABLE_H
) hash-set.h builtins.def \
2528 # Compile the programs that generate insn-* from the machine description.
2529 # They are compiled with $(COMPILER_FOR_BUILD), and associated libraries,
2530 # since they need to run on this machine
2531 # even if GCC is being compiled to run on some other machine.
2533 # All these programs use the RTL reader ($(BUILD_RTL)).
2534 genprogrtl
= attr attr-common attrtab automata codes conditions config emit \
2535 extract flags mddump opinit output peep preds recog target-def
2536 $(genprogrtl
:%=build
/gen
%$(build_exeext
)): $(BUILD_RTL
)
2538 # All these programs use the MD reader ($(BUILD_MD)).
2539 genprogmd
= $(genprogrtl
) mddeps constants enums
2540 $(genprogmd
:%=build
/gen
%$(build_exeext
)): $(BUILD_MD
)
2542 # All these programs need to report errors.
2543 genprogerr
= $(genprogmd
) genrtl modes gtype hooks cfn-macros condmd
2544 $(genprogerr
:%=build
/gen
%$(build_exeext
)): $(BUILD_ERRORS
)
2546 # Remaining build programs.
2547 genprog
= # $(genprogerr) check checksum match
2550 # These programs need libs over and above what they get from the above list.
2551 build
/genautomata
$(build_exeext
) : BUILD_LIBS
+= -lm
2553 build
/genrecog
$(build_exeext
) : build
/hash-table.o build
/inchash.o
2554 build
/gencfn-macros
$(build_exeext
) : build
/hash-table.o build
/vec.o \
2555 build
/ggc-none.o build
/sort.o
2557 # For stage1 and when cross-compiling use the build libcpp which is
2558 # built with NLS disabled. For stage2+ use the host library and
2560 ifeq ($(build_objdir
),$(build_libobjdir
))
2561 BUILD_CPPLIB
= $(build_libobjdir
)/libcpp
/libcpp.a
2564 BUILD_CPPLIB
= ..
/libcpp
/libcpp.a
2567 BUILD_CPPLIB
= $(CPPLIB
) $(LIBIBERTY
)
2568 build
/genmatch
$(build_exeext
): BUILD_LIBDEPS
+= $(LIBINTL_DEP
) $(LIBICONV_DEP
)
2569 build
/genmatch
$(build_exeext
): BUILD_LIBS
+= $(LIBINTL
) $(LIBICONV
)
2572 build
/genmatch
$(build_exeext
) : $(BUILD_CPPLIB
) \
2573 $(BUILD_ERRORS
) build
/vec.o build
/hash-table.o build
/sort.o
2575 # These programs are not linked with the MD reader.
2576 build
/gengtype
$(build_exeext
) : build
/gengtype-lex.o build
/gengtype-parse.o \
2577 build
/gengtype-state.o build
/errors.o
2579 gengtype
$(exeext
) : gengtype.o gengtype-lex.o gengtype-parse.o \
2580 gengtype-state.o errors.o
$(LIBDEPS
)
2581 $(LINKER
) $(ALL_LINKERFLAGS
) $(LDFLAGS
) -o
$@ \
2582 $(filter-out $(LIBDEPS
), $^
) $(LIBS
)
2584 # Rule for the generator programs:
2585 $(genprog
:%=build
/gen
%$(build_exeext
)): build
/gen
%$(build_exeext
): build
/gen
%.o
$(BUILD_LIBDEPS
)
2586 $(LINKER_FOR_BUILD
) $(BUILD_LINKERFLAGS
) $(BUILD_LDFLAGS
) -o
$@ \
2587 $(filter-out $(BUILD_LIBDEPS
), $^
) $(BUILD_LIBS
)
2589 omp-general.o
: omp-device-properties.h
2591 omp_device_properties
= @omp_device_properties@
2592 omp-device-properties.h
: s-omp-device-properties-h
; @true
2593 s-omp-device-properties-h
: @omp_device_property_deps@
2594 -rm -f tmp-omp-device-properties.h
; \
2595 for kind in kind arch isa
; do \
2596 echo
'const char omp_offload_device_'$${kind}'[] = ' \
2597 >> tmp-omp-device-properties.h
; \
2598 for prop in none
$(omp_device_properties
); do \
2599 [ "$$prop" = "none" ] && continue
; \
2600 tgt
=`echo "$$prop" | sed 's/=.*$$//'`; \
2601 props
=`echo "$$prop" | sed 's/.*=//'`; \
2602 echo
"\"$$tgt\\0\"" >> tmp-omp-device-properties.h
; \
2603 sed
-n
's/^'$${kind}': //p' $${props} \
2604 | sed
's/[[:blank:]]/ /g;s/ */ /g;s/^ //;s/ $$//;s/ /\\0/g;s/^/"/;s/$$/\\0\\0"/' \
2605 >> tmp-omp-device-properties.h
; \
2607 echo
'"";' >> tmp-omp-device-properties.h
; \
2609 $(SHELL
) $(srcdir)/..
/move-if-change tmp-omp-device-properties.h \
2610 omp-device-properties.h
2611 $(STAMP
) s-omp-device-properties-h
2613 # Generated source files for gengtype. Prepend inclusion of
2614 # config.h/bconfig.h because AIX requires _LARGE_FILES to be defined before
2615 # any system header is included.
2616 gengtype-lex.
cc : gengtype-lex.l
2617 -$(FLEX
) $(FLEXFLAGS
) -o
$@
$< && { \
2618 echo
'#ifdef HOST_GENERATOR_FILE' > $@.tmp
; \
2619 echo
'#include "config.h"' >> $@.tmp
; \
2620 echo
'#else' >> $@.tmp
; \
2621 echo
'#include "bconfig.h"' >> $@.tmp
; \
2622 echo
'#endif' >> $@.tmp
; \
2628 # Remake internationalization support.
2629 CFLAGS-intl.o
+= -DLOCALEDIR
=\"$(localedir
)\"
2634 PREPROCESSOR_DEFINES
= \
2635 -DGCC_INCLUDE_DIR
=\"$(libsubdir
)/include\" \
2636 -DFIXED_INCLUDE_DIR
=\"$(libsubdir
)/include-fixed
\" \
2637 -DGPLUSPLUS_INCLUDE_DIR
=\"$(gcc_gxx_include_dir
)\" \
2638 -DGPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT
=$(gcc_gxx_include_dir_add_sysroot
) \
2639 -DGPLUSPLUS_TOOL_INCLUDE_DIR
=\"$(gcc_gxx_include_dir
)/$(target_noncanonical
)\" \
2640 -DGPLUSPLUS_BACKWARD_INCLUDE_DIR
=\"$(gcc_gxx_include_dir
)/backward
\" \
2641 -DGPLUSPLUS_LIBCXX_INCLUDE_DIR
=\"$(gcc_gxx_libcxx_include_dir
)\" \
2642 -DGPLUSPLUS_LIBCXX_INCLUDE_DIR_ADD_SYSROOT
=$(gcc_gxx_libcxx_include_dir_add_sysroot
) \
2643 -DLOCAL_INCLUDE_DIR
=\"$(local_includedir
)\" \
2644 -DCROSS_INCLUDE_DIR
=\"$(CROSS_SYSTEM_HEADER_DIR
)\" \
2645 -DTOOL_INCLUDE_DIR
=\"$(gcc_tooldir
)/include\" \
2646 -DNATIVE_SYSTEM_HEADER_DIR
=\"$(NATIVE_SYSTEM_HEADER_DIR
)\" \
2647 -DPREFIX
=\"$(prefix)/\" \
2648 -DSTANDARD_EXEC_PREFIX
=\"$(libdir)/sdcc
/\" \
2649 @TARGET_SYSTEM_ROOT_DEFINE@
2651 CFLAGS-cppbuiltin.o
+= $(PREPROCESSOR_DEFINES
) -DBASEVER
=$(BASEVER_s
)
2652 cppbuiltin.o
: $(BASEVER
)
2654 CFLAGS-cppdefault.o
+= $(PREPROCESSOR_DEFINES
)
2656 # Note for the stamp targets, we run the program `true' instead of
2657 # having an empty command (nothing following the semicolon).
2659 # genversion.cc is run on the build machine to generate version.h
2660 CFLAGS-build
/genversion.o
+= -DBASEVER
=$(BASEVER_s
) -DDATESTAMP
=$(DATESTAMP_s
) \
2661 -DREVISION
=$(REVISION_s
) \
2662 -DDEVPHASE
=$(DEVPHASE_s
) -DPKGVERSION
=$(PKGVERSION_s
) \
2663 -DBUGURL
=$(BUGURL_s
)
2665 build
/genversion.o
: genversion.
cc $(BCONFIG_H
) $(SYSTEM_H
) $(srcdir)/DATESTAMP
2667 build
/genversion
$(build_exeext
): build
/genversion.o
2668 $(LINKER_FOR_BUILD
) $(BUILD_LINKERFLAGS
) $(BUILD_LDFLAGS
) \
2669 build
/genversion.o
-o
$@
2671 version.h
: s-version
; @true
2672 s-version
: build
/genversion
$(build_exeext
)
2673 build
/genversion
$(build_exeext
) > tmp-version.h
2674 $(SHELL
) $(srcdir)/..
/move-if-change tmp-version.h version.h
2677 # gcov.o needs $(ZLIBINC) added to the include flags.
2678 CFLAGS-gcov.o
+= $(ZLIBINC
)
2680 GCOV_OBJS
= gcov.o json.o
2681 gcov
$(exeext
): $(GCOV_OBJS
) $(LIBDEPS
)
2682 $(LINKER
) $(ALL_LINKERFLAGS
) $(LDFLAGS
) $(GCOV_OBJS
) \
2683 hash-table.o ggc-none.o
$(LIBS
) $(ZLIB
) -o
$@
2684 GCOV_DUMP_OBJS
= gcov-dump.o
2685 gcov-dump
$(exeext
): $(GCOV_DUMP_OBJS
) $(LIBDEPS
)
2686 $(LINKER
) $(ALL_LINKERFLAGS
) $(LDFLAGS
) $(GCOV_DUMP_OBJS
) \
2687 hash-table.o ggc-none.o\
2690 GCOV_TOOL_DEP_FILES
= $(srcdir)/..
/libgcc
/libgcov-util.c gcov-io.
cc $(GCOV_IO_H
) \
2691 $(srcdir)/..
/libgcc
/libgcov-driver.c
$(srcdir)/..
/libgcc
/libgcov-driver-system.c \
2692 $(srcdir)/..
/libgcc
/libgcov-merge.c
$(srcdir)/..
/libgcc
/libgcov.h \
2693 $(SYSTEM_H
) coretypes.h
$(TM_H
) $(CONFIG_H
) version.h intl.h
$(DIAGNOSTIC_H
)
2694 libgcov-util.o
: $(srcdir)/..
/libgcc
/libgcov-util.c
$(GCOV_TOOL_DEP_FILES
)
2695 $(COMPILER
) -c
$(ALL_COMPILERFLAGS
) $(ALL_CPPFLAGS
) $(INCLUDES
) -o
$@
$<
2696 libgcov-driver-tool.o
: $(srcdir)/..
/libgcc
/libgcov-driver.c
$(GCOV_TOOL_DEP_FILES
)
2697 $(COMPILER
) -c
$(ALL_COMPILERFLAGS
) $(ALL_CPPFLAGS
) $(INCLUDES
) \
2698 -DIN_GCOV_TOOL
=1 -o
$@
$<
2699 libgcov-merge-tool.o
: $(srcdir)/..
/libgcc
/libgcov-merge.c
$(GCOV_TOOL_DEP_FILES
)
2700 $(COMPILER
) -c
$(ALL_COMPILERFLAGS
) $(ALL_CPPFLAGS
) $(INCLUDES
) \
2701 -DIN_GCOV_TOOL
=1 -o
$@
$<
2702 GCOV_TOOL_OBJS
= gcov-tool.o libgcov-util.o libgcov-driver-tool.o libgcov-merge-tool.o
2703 gcov-tool
$(exeext
): $(GCOV_TOOL_OBJS
) $(LIBDEPS
)
2704 $(LINKER
) $(ALL_LINKERFLAGS
) $(LDFLAGS
) $(GCOV_TOOL_OBJS
) $(LIBS
) -o
$@
2706 # Build the include directories. The stamp files are stmp-* rather than
2707 # s-* so that mostlyclean does not force the include directory to
2710 # Build the include directories.
2711 stmp-int-hdrs
: # $(STMP_FIXINC) $(T_GLIMITS_H) $(T_STDINT_GCC_H) $(USER_H) fixinc_list
2712 # Copy in the headers provided with gcc.
2714 # The sed command gets just the last file name component;
2715 # this is necessary because VPATH could add a dirname.
2716 # Using basename would be simpler, but some systems don't have it.
2718 # The touch command is here to workaround an AIX/Linux NFS bug.
2720 # The move-if-change + cp -p twists for limits.h are intended to preserve
2721 # the time stamp when we regenerate, to prevent pointless rebuilds during
2722 # e.g. install-no-fixedincludes.
2723 -if
[ -d
include ] ; then true
; else mkdir
include; chmod a
+rx
include; fi
2724 -if
[ -d include-fixed
] ; then true
; else mkdir include-fixed
; chmod a
+rx include-fixed
; fi
2725 for file in ..
$(USER_H
); do \
2726 if
[ X
$$file != X..
]; then \
2727 realfile
=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
2728 $(STAMP
) include/$$realfile; \
2729 rm -f
include/$$realfile; \
2730 cp
$$file include; \
2731 chmod a
+r
include/$$realfile; \
2734 for file in ..
$(USER_H_INC_NEXT_PRE
); do \
2735 if
[ X
$$file != X..
]; then \
2736 mv
include/$$file include/x_
$$file; \
2737 echo
"#include_next <$$file>" >include/$$file; \
2738 cat
include/x_
$$file >>include/$$file; \
2739 rm -f
include/x_
$$file; \
2740 chmod a
+r
include/$$file; \
2743 for file in ..
$(USER_H_INC_NEXT_POST
); do \
2744 if
[ X
$$file != X..
]; then \
2745 echo
"#include_next <$$file>" >>include/$$file; \
2746 chmod a
+r
include/$$file; \
2749 rm -f
include/stdint.h
2750 if
[ $(USE_GCC_STDINT
) = wrap
]; then \
2751 rm -f
include/stdint-gcc.h
; \
2752 cp
$(srcdir)/ginclude
/stdint-gcc.h
include/stdint-gcc.h
; \
2753 chmod a
+r
include/stdint-gcc.h
; \
2754 cp
$(srcdir)/ginclude
/stdint-wrap.h
include/stdint.h
; \
2755 chmod a
+r
include/stdint.h
; \
2756 elif
[ $(USE_GCC_STDINT
) = provide
]; then \
2757 cp
$(T_STDINT_GCC_H
) include/stdint.h
; \
2758 chmod a
+r
include/stdint.h
; \
2760 set
-e
; for ml in
`cat fixinc_list`; do \
2761 sysroot_headers_suffix
=`echo $${ml} | sed -e 's/;.*$$//'`; \
2762 multi_dir
=`echo $${ml} | sed -e 's/^[^;]*;//'`; \
2763 fix_dir
=include-fixed
$${multi_dir}; \
2764 if
$(LIMITS_H_TEST
) ; then \
2765 cat
$(srcdir)/limitx.h
$(T_GLIMITS_H
) $(srcdir)/limity.h
> tmp-xlimits.h
; \
2767 cat
$(T_GLIMITS_H
) > tmp-xlimits.h
; \
2769 $(mkinstalldirs
) $${fix_dir}; \
2770 chmod a
+rx
$${fix_dir} || true
; \
2771 $(SHELL
) $(srcdir)/..
/move-if-change \
2772 tmp-xlimits.h tmp-limits.h
; \
2773 rm -f
$${fix_dir}/limits.h
; \
2774 cp
-p tmp-limits.h
$${fix_dir}/limits.h
; \
2775 chmod a
+r
$${fix_dir}/limits.h
; \
2777 # Install the README
2778 rm -f include-fixed
/README
2779 cp
$(srcdir)/..
/fixincludes
/README-fixinc include-fixed
/README
2780 chmod a
+r include-fixed
/README
2783 .PHONY
: install-gcc-tooldir
2784 install-gcc-tooldir
:
2785 $(mkinstalldirs
) $(DESTDIR
)$(gcc_tooldir
)
2787 macro_list
: # s-macro_list; @true
2788 s-macro_list
: $(GCC_PASSES
) cc1
$(exeext
)
2789 echo |
$(GCC_FOR_TARGET
) -E
-dM
- | \
2790 sed
-n
-e
's/^#define \([^_][a-zA-Z0-9_]*\).*/\1/p' \
2791 -e
's/^#define \(_[^_A-Z][a-zA-Z0-9_]*\).*/\1/p' | \
2792 sort -u
> tmp-macro_list
2793 $(SHELL
) $(srcdir)/..
/move-if-change tmp-macro_list macro_list
2794 $(STAMP
) s-macro_list
2796 fixinc_list
: # s-fixinc_list; @true
2797 s-fixinc_list
: $(GCC_PASSES
)
2798 # Build up a list of multilib directories and corresponding sysroot
2799 # suffixes, in form sysroot;multilib.
2800 if
$(GCC_FOR_TARGET
) -print-sysroot-headers-suffix
> /dev
/null
2>&1; then \
2801 set
-e
; for ml in
`$(GCC_FOR_TARGET) -print-multi-lib`; do \
2802 multi_dir
=`echo $${ml} | sed -e 's/;.*$$//'`; \
2803 flags
=`echo $${ml} | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
2804 sfx
=`$(GCC_FOR_TARGET) $${flags} -print-sysroot-headers-suffix`; \
2805 if
[ "$${multi_dir}" = "." ]; \
2806 then multi_dir
=""; \
2808 multi_dir
=/$${multi_dir}; \
2810 echo
"$${sfx};$${multi_dir}"; \
2814 fi
> tmp-fixinc_list
2815 $(SHELL
) $(srcdir)/..
/move-if-change tmp-fixinc_list fixinc_list
2816 $(STAMP
) s-fixinc_list
2818 # The line below is supposed to avoid accidentally matching the
2819 # built-in suffix rule `.o:' to build fixincl out of fixincl.o. You'd
2820 # expect fixincl to be newer than fixincl.o, such that this situation
2821 # would never come up. As it turns out, if you use ccache with
2822 # CCACHE_HARDLINK enabled, the compiler doesn't embed the current
2823 # working directory in object files (-g absent, or -fno-working-dir
2824 # present), and build and host are the same, fixincl for the host will
2825 # build after fixincl for the build machine, getting a cache hit,
2826 # thereby updating the timestamp of fixincl.o in the host tree.
2827 # Because of CCACHE_HARDLINK, this will also update the timestamp in
2828 # the build tree, and so fixincl in the build tree will appear to be
2829 # out of date. Yuck.
2830 ..
/$(build_subdir
)/fixincludes
/fixincl
: ; @
:
2832 # Build fixed copies of system files.
2833 # Abort if no system headers available, unless building a crosscompiler.
2834 # FIXME: abort unless building --without-headers would be more accurate and less ugly
2835 stmp-fixinc
: gsyslimits.h macro_list fixinc_list \
2836 $(build_objdir
)/fixincludes
/fixincl \
2837 $(build_objdir
)/fixincludes
/fixinc.sh
2838 rm -rf include-fixed
; mkdir include-fixed
2839 -chmod a
+rx include-fixed
2840 if
[ -d ..
/prev-gcc
]; then \
2842 $(MAKE
) real-
$(INSTALL_HEADERS_DIR
) DESTDIR
=`pwd`/..
/sdcc
/ \
2845 set
-e
; for ml in
`cat fixinc_list`; do \
2846 sysroot_headers_suffix
=`echo $${ml} | sed -e 's/;.*$$//'`; \
2847 multi_dir
=`echo $${ml} | sed -e 's/^[^;]*;//'`; \
2848 fix_dir
=include-fixed
$${multi_dir}; \
2849 if
! $(inhibit_libc
) && test ! -d
${BUILD_SYSTEM_HEADER_DIR}; then \
2850 echo The directory that should contain system headers does not exist
: >&2 ; \
2851 echo
" ${BUILD_SYSTEM_HEADER_DIR}" >&2 ; \
2852 tooldir_sysinc
=`echo "${gcc_tooldir}/sys-include" | sed -e :a -e "s,[^/]*/\.\.\/,," -e ta`; \
2853 if
test "x${BUILD_SYSTEM_HEADER_DIR}" = "x$${tooldir_sysinc}"; \
2854 then sleep
1; else exit
1; fi
; \
2856 $(mkinstalldirs
) $${fix_dir}; \
2857 chmod a
+rx
$${fix_dir} || true
; \
2858 (TARGET_MACHINE
='$(target)'; srcdir=`cd $(srcdir); ${PWD_COMMAND}`; \
2859 SHELL
='$(SHELL)'; MACRO_LIST
=`${PWD_COMMAND}`/macro_list
; \
2860 gcc_dir
=`${PWD_COMMAND}` ; \
2861 export TARGET_MACHINE
srcdir SHELL MACRO_LIST
&& \
2862 cd
$(build_objdir
)/fixincludes
&& \
2863 $(SHELL
) .
/fixinc.sh
"$${gcc_dir}/$${fix_dir}" \
2864 $(BUILD_SYSTEM_HEADER_DIR
) $(OTHER_FIXINCLUDES_DIRS
) ); \
2865 rm -f
$${fix_dir}/syslimits.h
; \
2866 if
[ -f
$${fix_dir}/limits.h
]; then \
2867 mv
$${fix_dir}/limits.h
$${fix_dir}/syslimits.h
; \
2869 cp
$(srcdir)/gsyslimits.h
$${fix_dir}/syslimits.h
; \
2871 chmod a
+r
$${fix_dir}/syslimits.h
; \
2874 $(STAMP
) stmp-fixinc
2877 # Install with the gcc headers files, not the fixed include files, which we
2878 # are typically not allowed to distribute. The general idea is to:
2879 # - Get to "install" with a bare set of internal headers, not the
2880 # fixed system ones,
2881 # - Prevent rebuilds of what normally depends on the headers, which is
2882 # useless for installation purposes and would rely on improper headers.
2883 # - Restore as much of the original state as possible.
2885 .PHONY
: install-no-fixedincludes
2887 install-no-fixedincludes
:
2888 # Stash the current set of headers away, save stamps we're going to
2889 # alter explicitly, and arrange for fixincludes not to run next time
2890 # we trigger a headers rebuild.
2892 -mv
include tmp-include
2>/dev
/null
2893 -mv include-fixed tmp-include-fixed
2>/dev
/null
2894 -mv stmp-int-hdrs tmp-stmp-int-hdrs
2>/dev
/null
2895 -mv stmp-fixinc tmp-stmp-fixinc
2>/dev
/null
2897 -cp
-p
$(srcdir)/gsyslimits.h
include/syslimits.h
2900 # Rebuild our internal headers, restore the original stamps so that
2901 # "install" doesn't trigger pointless rebuilds because of that update,
2903 $(MAKE
) $(FLAGS_TO_PASS
) stmp-int-hdrs
2904 -mv tmp-stmp-int-hdrs stmp-int-hdrs
2>/dev
/null
2905 -mv tmp-stmp-fixinc stmp-fixinc
2>/dev
/null
2906 $(MAKE
) $(FLAGS_TO_PASS
) install
2908 # Restore the original set of maybe-fixed headers
2909 -rm -rf
include; mv tmp-include
include 2>/dev
/null
2910 -rm -rf include-fixed
; mv tmp-include-fixed include-fixed
2>/dev
/null
2912 # Remake the info files.
2914 doc
: # $(BUILD_INFO) $(GENERATED_MANPAGES)
2916 INFOFILES
= doc
/cpp.
info doc
/gcc.
info doc
/gccint.
info \
2917 doc
/gccinstall.
info doc
/cppinternals.
info
2919 info: $(INFOFILES
) lang.
info @GENINSRC@ srcinfo lang.srcinfo
2921 srcinfo
: $(INFOFILES
)
2922 -cp
-p
$^
$(srcdir)/doc
2924 TEXI_CPP_FILES_
= cpp.texi fdl.texi cppenv.texi cppopts.texi \
2925 gcc-common.texi gcc-vers.texi
2927 TEXI_GCC_FILES
= gcc.texi gcc-common.texi gcc-vers.texi frontends.texi \
2928 standards.texi invoke.texi extend.texi md.texi objc.texi \
2929 gcov.texi trouble.texi bugreport.texi service.texi \
2930 contribute.texi compat.texi funding.texi gnu.texi gpl_v3.texi \
2931 fdl.texi contrib.texi cppenv.texi cppopts.texi avr-mmcu.texi \
2932 implement-c.texi implement-cxx.texi gcov-tool.texi gcov-dump.texi \
2935 # we explicitly use $(srcdir)/doc/tm.texi here to avoid confusion with
2936 # the generated tm.texi; the latter might have a more recent timestamp,
2937 # but we don't want to rebuild the info files unless the contents of
2938 # the *.texi files have changed.
2939 TEXI_GCCINT_FILES
= gccint.texi gcc-common.texi gcc-vers.texi \
2940 contribute.texi makefile.texi configterms.texi options.texi \
2941 portability.texi interface.texi passes.texi rtl.texi md.texi \
2942 $(srcdir)/doc
/tm.texi hostconfig.texi fragments.texi \
2943 configfiles.texi collect2.texi headerdirs.texi funding.texi \
2944 gnu.texi gpl_v3.texi fdl.texi contrib.texi languages.texi \
2945 sourcebuild.texi gty.texi libgcc.texi cfg.texi tree-ssa.texi \
2946 loop.texi generic.texi gimple.texi plugins.texi optinfo.texi \
2947 match-and-simplify.texi analyzer.texi ux.texi poly-int.texi
2949 TEXI_GCCINSTALL_FILES
= install.texi fdl.texi \
2950 gcc-common.texi gcc-vers.texi
2952 TEXI_CPPINT_FILES
= cppinternals.texi gcc-common.texi gcc-vers.texi
2954 # gcc-vers.texi is generated from the version files.
2955 gcc-vers.texi
: $(BASEVER
) $(DEVPHASE
)
2956 (echo
"@set version-GCC $(BASEVER_c)"; \
2957 if
[ "$(DEVPHASE_c)" = "experimental" ]; \
2958 then echo
"@set DEVELOPMENT"; \
2959 else echo
"@clear DEVELOPMENT"; \
2961 $(build_file_translate
) echo @set
srcdir `echo $(abs_srcdir) | sed -e 's|\\([@{}]\\)|@\\1|g'` >> $@T
2962 if
[ -n
"$(PKGVERSION)" ]; then \
2963 echo
"@set VERSION_PACKAGE $(PKGVERSION)" >> $@T
; \
2965 echo
"@set BUGURL $(BUGURL_TEXI)" >> $@T
; \
2969 # The *.1, *.7, *.info, *.dvi, and *.pdf files are being generated from implicit
2970 # patterns. To use them, put each of the specific targets with its
2971 # specific dependencies but no build commands.
2973 doc
/cpp.
info: $(TEXI_CPP_FILES
)
2974 doc
/gcc.
info: $(TEXI_GCC_FILES
)
2975 doc
/gccint.
info: $(TEXI_GCCINT_FILES
)
2976 doc
/cppinternals.
info: $(TEXI_CPPINT_FILES
)
2979 if
[ x
$(BUILD_INFO
) = xinfo
]; then \
2980 $(MAKEINFO
) $(MAKEINFOFLAGS
) -I .
-I
$(gcc_docdir
) \
2981 -I
$(gcc_docdir
)/include -o
$@
$<; \
2984 # Duplicate entry to handle renaming of gccinstall.info
2985 doc
/gccinstall.
info: $(TEXI_GCCINSTALL_FILES
)
2986 if
[ x
$(BUILD_INFO
) = xinfo
]; then \
2987 $(MAKEINFO
) $(MAKEINFOFLAGS
) -I
$(gcc_docdir
) \
2988 -I
$(gcc_docdir
)/include -o
$@
$<; \
2991 doc
/cpp.
dvi: $(TEXI_CPP_FILES
)
2992 doc
/gcc.
dvi: $(TEXI_GCC_FILES
)
2993 doc
/gccint.
dvi: $(TEXI_GCCINT_FILES
)
2994 doc
/cppinternals.
dvi: $(TEXI_CPPINT_FILES
)
2996 doc
/cpp.pdf
: $(TEXI_CPP_FILES
)
2997 doc
/gcc.pdf
: $(TEXI_GCC_FILES
)
2998 doc
/gccint.pdf
: $(TEXI_GCCINT_FILES
)
2999 doc
/cppinternals.pdf
: $(TEXI_CPPINT_FILES
)
3001 $(build_htmldir
)/cpp/index.html
: $(TEXI_CPP_FILES
)
3002 $(build_htmldir
)/gcc
/index.html
: $(TEXI_GCC_FILES
)
3003 $(build_htmldir
)/gccint
/index.html
: $(TEXI_GCCINT_FILES
)
3004 $(build_htmldir
)/cppinternals
/index.html
: $(TEXI_CPPINT_FILES
)
3006 DVIFILES
= doc
/gcc.
dvi doc
/gccint.
dvi doc
/gccinstall.
dvi doc
/cpp.
dvi \
3007 doc
/cppinternals.
dvi
3009 dvi:: $(DVIFILES
) lang.
dvi
3012 $(TEXI2DVI
) -I .
-I
$(abs_docdir
) -I
$(abs_docdir
)/include -o
$@
$<
3014 # Duplicate entry to handle renaming of gccinstall.dvi
3015 doc
/gccinstall.
dvi: $(TEXI_GCCINSTALL_FILES
)
3016 $(TEXI2DVI
) -I .
-I
$(abs_docdir
) -I
$(abs_docdir
)/include -o
$@
$<
3018 PDFFILES
= doc
/gcc.pdf doc
/gccint.pdf doc
/gccinstall.pdf doc
/cpp.pdf \
3019 doc
/cppinternals.pdf
3021 pdf
:: $(PDFFILES
) lang.pdf
3024 $(TEXI2PDF
) -I .
-I
$(abs_docdir
) -I
$(abs_docdir
)/include -o
$@
$<
3026 # Duplicate entry to handle renaming of gccinstall.pdf
3027 doc
/gccinstall.pdf
: $(TEXI_GCCINSTALL_FILES
)
3028 $(TEXI2PDF
) -I .
-I
$(abs_docdir
) -I
$(abs_docdir
)/include -o
$@
$<
3030 # List the directories or single hmtl files which are installed by
3031 # install-html. The lang.html file triggers language fragments to build
3032 # html documentation.
3033 HTMLS_INSTALL
=$(build_htmldir
)/cpp $(build_htmldir
)/gcc \
3034 $(build_htmldir
)/gccinstall
$(build_htmldir
)/gccint \
3035 $(build_htmldir
)/cppinternals
3037 # List the html file targets.
3038 HTMLS_BUILD
=$(build_htmldir
)/cpp/index.html
$(build_htmldir
)/gcc
/index.html \
3039 $(build_htmldir
)/gccinstall
/index.html
$(build_htmldir
)/gccint
/index.html \
3040 $(build_htmldir
)/cppinternals
/index.html lang.html
3042 html
:: $(HTMLS_BUILD
)
3044 $(build_htmldir
)/%/index.html
: %.texi
3045 $(mkinstalldirs
) $(@D
)
3047 $(TEXI2HTML
) -I
$(abs_docdir
) -I
$(abs_docdir
)/include -o
$(@D
) $<
3049 # Duplicate entry to handle renaming of gccinstall
3050 $(build_htmldir
)/gccinstall
/index.html
: $(TEXI_GCCINSTALL_FILES
)
3051 $(mkinstalldirs
) $(@D
)
3053 SOURCEDIR
=$(abs_docdir
) \
3055 $(SHELL
) $(srcdir)/doc
/install.texi2html
3057 MANFILES
= doc
/gcov
.1 doc
/cpp.1 doc
/gcc
.1 doc
/gfdl
.7 doc
/gpl
.7 \
3058 doc
/fsf-funding
.7 doc
/gcov-tool
.1 doc
/gcov-dump
.1 \
3059 $(if
$(filter yes
,@enable_lto@
),doc
/lto-dump
.1)
3061 generated-manpages
: man
3063 man
: $(MANFILES
) lang.man @GENINSRC@ srcman lang.srcman
3066 -cp
-p
$^
$(srcdir)/doc
3070 -($(POD2MAN
) --section
=1 $< > $(@
).T
$$$$ && \
3071 mv
-f
$(@
).T
$$$$ $@
) || \
3072 (rm -f
$(@
).T
$$$$ && exit
1)
3076 -($(POD2MAN
) --section
=7 $< > $(@
).T
$$$$ && \
3077 mv
-f
$(@
).T
$$$$ $@
) || \
3078 (rm -f
$(@
).T
$$$$ && exit
1)
3082 -$(TEXI2POD
) -DBUGURL
="$(BUGURL_TEXI)" $< > $@
3084 .INTERMEDIATE
: # cpp.pod gcc.pod gfdl.pod fsf-funding.pod gpl.pod
3085 cpp.pod
: cpp.texi cppenv.texi cppopts.texi
3087 # These next rules exist because the output name is not the same as
3088 # the input name, so our implicit %.pod rule will not work.
3090 gcc.pod
: invoke.texi cppenv.texi cppopts.texi gcc-vers.texi
3092 -$(TEXI2POD
) $< > $@
3095 -$(TEXI2POD
) $< > $@
3096 fsf-funding.pod
: funding.texi
3098 -$(TEXI2POD
) $< > $@
3099 gpl.pod
: gpl_v3.texi
3101 -$(TEXI2POD
) $< > $@
3104 # Deletion of files made during compilation.
3105 # There are four levels of this:
3106 # `mostlyclean', `clean', `distclean' and `maintainer-clean'.
3107 # `mostlyclean' is useful while working on a particular type of machine.
3108 # It deletes most, but not all, of the files made by compilation.
3109 # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
3110 # `clean' deletes everything made by running `make all'.
3111 # `distclean' also deletes the files made by config.
3112 # `maintainer-clean' also deletes everything that could be regenerated
3113 # automatically, except for `configure'.
3114 # We remove as much from the language subdirectories as we can
3115 # (less duplicated code).
3117 mostlyclean: lang.
mostlyclean
3118 -rm -f
$(MOSTLYCLEANFILES
)
3119 -rm -f
*$(objext
) c-family
/*$(objext
)
3120 -rm -f
*$(coverageexts
)
3121 # Delete build programs
3124 # Delete other built files.
3125 -rm -f specs.h options.
cc options.h options-save.
cc
3126 # Delete the stamp and temporary files.
3127 -rm -f s-
* tmp-
* stamp-
* stmp-
*
3128 -rm -f
*/stamp-
* */tmp-
*
3129 # Delete debugging dump files.
3130 -rm -f
*.
[0-9][0-9].
* */*.
[0-9][0-9].
*
3131 # Delete some files made during installation.
3132 -rm -f specs
$(SPECS
)
3133 -rm -f collect collect2 mips-tfile mips-tdump
3134 # Delete unwanted output files from TeX.
3135 -rm -f
*.toc
*.log
*.vr
*.fn
*.cp
*.tp
*.ky
*.pg
3136 -rm -f
*/*.toc
*/*.log
*/*.vr
*/*.fn
*/*.cp
*/*.tp
*/*.ky
*/*.pg
3137 # Delete sorted indices we don't actually use.
3138 -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
3139 # Delete core dumps.
3141 # Delete file generated for gengtype
3142 -rm -f gtyp-input.list
3143 # Delete files generated by gengtype
3147 # Delete genchecksum outputs
3148 -rm -f
*-checksum.
cc
3149 # Delete lock-and-run bits
3150 -rm -rf linkfe.lck lock-stamp.
*
3152 # Delete all files made by compilation
3153 # that don't exist in the distribution.
3154 clean: mostlyclean lang.
clean
3155 -rm -f libgcc.a libgcc_eh.a libgcov.a
3156 -rm -f common
/common-targhooks.o
3159 -rm -f config.h tconfig.h bconfig.h
3160 -rm -f options.
cc options.h optionlist
3164 # Delete the include directories.
3165 -rm -rf
include include-fixed
3166 # Delete files used by the "multilib" facility (including libgcc subdirs).
3167 -rm -f multilib.h tmpmultilib
*
3168 -if
[ "x$(MULTILIB_DIRNAMES)" != x
] ; then \
3169 rm -rf
$(MULTILIB_DIRNAMES
); \
3170 else if
[ "x$(MULTILIB_OPTIONS)" != x
] ; then \
3171 rm -rf
`echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \
3174 # Delete all files that users would normally create
3175 # while building and installing GCC.
3176 distclean: clean lang.
distclean
3177 -rm -f auto-host.h auto-build.h
3179 -rm -f config.status config.run config.cache config.bak
3180 -rm -f Make-lang Make-hooks Make-host Make-target
3181 -rm -f Makefile
*.oaux
3182 -rm -f gthr-default.h
3185 -rm -f site.exp site.bak testsuite
/site.exp testsuite
/site.bak
3186 -rm -f testsuite
/*.log testsuite
/*.sum
3187 -cd testsuite
&& rm -f x
*.x
*.x?
*.exe
*.rpo
*.o
*.s
*.S
*.
cc
3188 -cd testsuite
&& rm -f
*.out
*.gcov
*$(coverageexts
)
3189 -rm -rf
${QMTEST_DIR} stamp-qmtest
3190 -rm -f .gdbinit configargs.h
3192 # Delete po/*.gmo only if we are not building in the source directory.
3193 -if
[ ! -f po
/exgettext
]; then
rm -f po
/*.gmo
; fi
3194 -rmdir ada cp f java objc intl po testsuite plugin
2>/dev
/null
3196 # Get rid of every file that's generated from some other file, except for `configure'.
3197 # Most of these files ARE PRESENT in the GCC distribution.
3199 @echo
'This command is intended for maintainers to use; it'
3200 @echo
'deletes files that may need special tools to rebuild.'
3201 $(MAKE
) lang.maintainer-clean
distclean
3202 -rm -f
cpp.??s
cpp.
*aux
3203 -rm -f gcc.??s gcc.
*aux
3204 -rm -f
$(gcc_docdir
)/*.
info $(gcc_docdir
)/*.1 $(gcc_docdir
)/*.7 $(gcc_docdir
)/*.
dvi $(gcc_docdir
)/*.pdf
3206 # Entry points `install', `install-strip', and `uninstall'.
3207 # Also use `install-collect2' to install collect2 when the config files don't.
3209 # Copy the compiler files into directories where they will be run.
3210 # Install the driver last so that the window when things are
3212 install: install-common
$(INSTALL_HEADERS
) \
3213 install-cpp
# install-man install-info install-@POSUB@ \
3214 install-driver install-lto-wrapper install-gcc-ar
3216 ifeq ($(enable_plugin
),yes
)
3217 install: install-plugin
3220 install-strip
: override INSTALL_PROGRAM
= $(INSTALL_STRIP_PROGRAM
)
3222 install-strip
: STRIPPROG
= $(STRIP
)
3225 install-strip
: install
3227 # Handle cpp installation. adopted for sdcpp
3228 install-cpp
: installdirs cpp$(exeext
)
3229 -if
test "$(enable_as_accelerator)" != "yes" ; then \
3230 rm -f
$(DESTDIR
)$(bindir)/$(CPP_INSTALL_NAME
)$(exeext
); \
3231 $(INSTALL_PROGRAM
) -m
755 cpp$(exeext
) $(DESTDIR
)$(bindir)/$(CPP_INSTALL_NAME
)$(exeext
); \
3232 if
[ x
$(cpp_install_dir
) != x
]; then \
3233 rm -f
$(DESTDIR
)$(prefix)/$(cpp_install_dir
)/$(CPP_INSTALL_NAME
)$(exeext
); \
3234 $(INSTALL_PROGRAM
) -m
755 cpp$(exeext
) $(DESTDIR
)$(prefix)/$(cpp_install_dir
)/$(CPP_INSTALL_NAME
)$(exeext
); \
3238 # Create the installation directories.
3239 # $(libdir)/gcc/include isn't currently searched by cpp.
3241 # $(mkinstalldirs) $(DESTDIR)$(libsubdir)
3242 $(mkinstalldirs
) $(DESTDIR
)$(libexecsubdir
)
3243 $(mkinstalldirs
) $(DESTDIR
)$(bindir)
3246 $(mkinstalldirs
) $(DESTDIR
)$(includedir)
3247 $(mkinstalldirs
) $(DESTDIR
)$(infodir)
3248 $(mkinstalldirs
) $(DESTDIR
)$(man1dir)
3249 $(mkinstalldirs
) $(DESTDIR
)$(man7dir)
3251 PLUGIN_HEADERS
= $(TREE_H
) $(CONFIG_H
) $(SYSTEM_H
) coretypes.h
$(TM_H
) \
3252 toplev.h
$(DIAGNOSTIC_CORE_H
) $(BASIC_BLOCK_H
) $(HASH_TABLE_H
) \
3253 tree-ssa-alias.h
$(INTERNAL_FN_H
) gimple-fold.h tree-eh.h gimple-expr.h \
3254 gimple.h is-a.h memmodel.h
$(TREE_PASS_H
) $(GCC_PLUGIN_H
) \
3255 $(GGC_H
) $(TREE_DUMP_H
) $(PRETTY_PRINT_H
) $(OPTS_H
) $(PARAMS_H
) \
3256 $(tm_file_list
) $(tm_include_list
) $(tm_p_file_list
) $(tm_p_include_list
) \
3257 $(host_xm_file_list
) $(host_xm_include_list
) $(xm_include_list
) \
3258 intl.h
$(PLUGIN_VERSION_H
) $(DIAGNOSTIC_H
) ${C_TREE_H} \
3259 $(C_COMMON_H
) c-family
/c-objc.h
$(C_PRETTY_PRINT_H
) \
3260 tree-iterator.h
$(PLUGIN_H
) $(TREE_SSA_H
) langhooks.h incpath.h debug.h \
3261 $(EXCEPT_H
) tree-ssa-sccvn.h real.h output.h
$(IPA_UTILS_H
) \
3262 ipa-param-manipulation.h
$(C_PRAGMA_H
) $(CPPLIB_H
) $(FUNCTION_H
) \
3263 cppdefault.h flags.h
$(MD5_H
) params.def params.h params-enum.h \
3264 prefix.h tree-inline.h
$(GIMPLE_PRETTY_PRINT_H
) realmpfr.h \
3265 $(IPA_PROP_H
) $(TARGET_H
) $(RTL_H
) $(TM_P_H
) $(CFGLOOP_H
) $(EMIT_RTL_H
) \
3266 version.h stringpool.h gimplify.h gimple-iterator.h gimple-ssa.h \
3267 fold-const.h fold-const-call.h tree-cfg.h tree-into-ssa.h tree-ssanames.h \
3268 print-tree.h varasm.h context.h tree-phinodes.h stor-layout.h \
3269 ssa-iterators.h
$(RESOURCE_H
) tree-cfgcleanup.h attribs.h calls.h \
3270 cfgexpand.h diagnostic-color.h gcc-symtab.h gimple-builder.h gimple-low.h \
3271 gimple-walk.h gimplify-me.h pass_manager.h print-rtl.h stmt.h \
3272 tree-dfa.h tree-hasher.h tree-nested.h tree-object-size.h tree-outof-ssa.h \
3273 tree-parloops.h tree-ssa-address.h tree-ssa-coalesce.h tree-ssa-dom.h \
3274 tree-ssa-loop.h tree-ssa-loop-ivopts.h tree-ssa-loop-manip.h \
3275 tree-ssa-loop-niter.h tree-ssa-ter.h tree-ssa-threadedge.h \
3276 tree-ssa-threadupdate.h inchash.h wide-int.h signop.h hash-map.h \
3277 hash-set.h dominance.h cfg.h cfgrtl.h cfganal.h cfgbuild.h cfgcleanup.h \
3278 lcm.h cfgloopmanip.h file-prefix-map.h builtins.def
$(INSN_ATTR_H
) \
3279 pass-instances.def params.list
$(srcdir)/..
/include/gomp-constants.h \
3282 # generate the 'build fragment' b-header-vars
3283 s-header-vars
: Makefile
3284 rm -f tmp-header-vars
3285 # The first sed gets the list "header variables" as the list variables
3286 # assigned in Makefile and having _H at the end of the name. "sed -n" proved
3287 # more portable than a trailing "-e d" to filter out the uninteresting lines,
3288 # in particular on ia64-hpux where "s/.../p" only prints if -n was requested
3290 $(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
;)
3291 $(SHELL
) $(srcdir)/..
/move-if-change tmp-header-vars b-header-vars
3292 $(STAMP
) s-header-vars
3295 install-gengtype
: installdirs gengtype
$(exeext
) gtype.state
3296 $(mkinstalldirs
) $(DESTDIR
)$(plugin_resourcesdir
)
3297 $(INSTALL_DATA
) gtype.state
$(DESTDIR
)$(plugin_resourcesdir
)/gtype.state
3298 $(mkinstalldirs
) $(DESTDIR
)$(plugin_bindir
)
3299 $(INSTALL_PROGRAM
) gengtype
$(exeext
) $(DESTDIR
)$(plugin_bindir
)/gengtype
$(exeext
)
3301 # Install the headers needed to build a plugin.
3302 install-plugin
: installdirs lang.install-plugin s-header-vars install-gengtype
3303 # We keep the directory structure for files in config, common/config or
3304 # c-family and .def files. All other files are flattened to a single directory.
3305 $(mkinstalldirs
) $(DESTDIR
)$(plugin_includedir
)
3306 headers
=`echo $(sort $(PLUGIN_HEADERS)) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
3307 srcdirstrip
=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
3308 for file in
$$headers; do \
3309 if
[ -f
$$file ] ; then \
3311 elif
[ -f
$(srcdir)/$$file ]; then \
3312 path
=$(srcdir)/$$file; \
3316 "$(srcdir)"/config
/* |
"$(srcdir)"/common
/config
/* \
3317 |
"$(srcdir)"/c-family
/* |
"$(srcdir)"/*.def
) \
3318 base
=`echo "$$path" | sed -e "s|$$srcdirstrip/||"`;; \
3319 *) base
=`basename $$path` ;; \
3321 dest
=$(plugin_includedir
)/$$base; \
3322 echo
$(INSTALL_DATA
) $$path $(DESTDIR
)$$dest; \
3323 dir=`dirname $$dest`; \
3324 $(mkinstalldirs
) $(DESTDIR
)$$dir; \
3325 $(INSTALL_DATA
) $$path $(DESTDIR
)$$dest; \
3327 $(INSTALL_DATA
) b-header-vars
$(DESTDIR
)$(plugin_includedir
)/b-header-vars
3329 # Install the compiler executables built during cross compilation.
3330 install-common
: native lang.install-common
installdirs
3331 for file in
$(COMPILERS
); do \
3332 if
[ -f
$$file ] ; then \
3333 rm -f
$(DESTDIR
)$(libexecsubdir
)/$$file; \
3334 $(INSTALL_PROGRAM
) $$file $(DESTDIR
)$(libexecsubdir
)/$$file; \
3338 for file in
$(EXTRA_PROGRAMS
) $(COLLECT2
) ..
; do \
3339 if
[ x
"$$file" != x..
]; then \
3340 rm -f
$(DESTDIR
)$(libexecsubdir
)/$$file; \
3341 $(INSTALL_PROGRAM
) $$file $(DESTDIR
)$(libexecsubdir
)/$$file; \
3344 # We no longer install the specs file because its presence makes the
3345 # driver slower, and because people who need it can recreate it by
3346 # using -dumpspecs. We remove any old version because it would
3347 # otherwise override the specs built into the driver.
3348 rm -f
$(DESTDIR
)$(libsubdir
)/specs
3349 # Install gcov if it was compiled.
3350 -if
test "$(enable_as_accelerator)" != "yes" ; then \
3351 if
[ -f gcov
$(exeext
) ]; \
3353 rm -f
$(DESTDIR
)$(bindir)/$(GCOV_INSTALL_NAME
)$(exeext
); \
3354 $(INSTALL_PROGRAM
) gcov
$(exeext
) $(DESTDIR
)$(bindir)/$(GCOV_INSTALL_NAME
)$(exeext
); \
3357 # Install gcov-tool if it was compiled.
3358 -if
test "$(enable_as_accelerator)" != "yes" ; then \
3359 if
[ -f gcov-tool
$(exeext
) ]; \
3361 rm -f
$(DESTDIR
)$(bindir)/$(GCOV_TOOL_INSTALL_NAME
)$(exeext
); \
3362 $(INSTALL_PROGRAM
) \
3363 gcov-tool
$(exeext
) $(DESTDIR
)$(bindir)/$(GCOV_TOOL_INSTALL_NAME
)$(exeext
); \
3366 # Install gcov-dump if it was compiled.
3367 -if
test "$(enable_as_accelerator)" != "yes" ; then \
3368 if
[ -f gcov-dump
$(exeext
) ]; \
3370 rm -f
$(DESTDIR
)$(bindir)/$(GCOV_DUMP_INSTALL_NAME
)$(exeext
); \
3371 $(INSTALL_PROGRAM
) \
3372 gcov-dump
$(exeext
) $(DESTDIR
)$(bindir)/$(GCOV_DUMP_INSTALL_NAME
)$(exeext
); \
3376 # Install the driver program as $(target_noncanonical)-gcc,
3377 # $(target_noncanonical)-gcc-$(version), and also as gcc if native.
3378 install-driver
: installdirs xgcc
$(exeext
)
3379 -rm -f
$(DESTDIR
)$(bindir)/$(GCC_INSTALL_NAME
)$(exeext
)
3380 -$(INSTALL_PROGRAM
) xgcc
$(exeext
) $(DESTDIR
)$(bindir)/$(GCC_INSTALL_NAME
)$(exeext
)
3381 -if
test "$(enable_as_accelerator)" != "yes" ; then \
3382 if
[ "$(GCC_INSTALL_NAME)" != "$(target_noncanonical)-gcc-$(version)" ]; then \
3383 rm -f
$(DESTDIR
)$(bindir)/$(FULL_DRIVER_NAME
); \
3384 ( cd
$(DESTDIR
)$(bindir) && \
3385 $(LN
) $(GCC_INSTALL_NAME
)$(exeext
) $(FULL_DRIVER_NAME
) ); \
3387 if
[ ! -f gcc-cross
$(exeext
) ] \
3388 && [ "$(GCC_INSTALL_NAME)" != "$(GCC_TARGET_INSTALL_NAME)" ]; then \
3389 rm -f
$(DESTDIR
)$(bindir)/$(target_noncanonical
)-gcc-tmp
$(exeext
); \
3390 ( cd
$(DESTDIR
)$(bindir) && \
3391 $(LN
) $(GCC_INSTALL_NAME
)$(exeext
) $(target_noncanonical
)-gcc-tmp
$(exeext
) && \
3392 mv
-f
$(target_noncanonical
)-gcc-tmp
$(exeext
) $(GCC_TARGET_INSTALL_NAME
)$(exeext
) ); \
3396 # Install the info files.
3397 # $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
3398 # to do the install.
3399 install-info
:: # doc installdirs \
3400 $(DESTDIR
)$(infodir)/cpp.
info \
3401 $(DESTDIR
)$(infodir)/gcc.
info \
3402 $(DESTDIR
)$(infodir)/cppinternals.
info \
3403 $(DESTDIR
)$(infodir)/gccinstall.
info \
3404 $(DESTDIR
)$(infodir)/gccint.
info \
3407 $(DESTDIR
)$(infodir)/%.
info: doc
/%.
info installdirs
3409 if
[ -f
$< ]; then \
3410 for f in
$(<)*; do \
3411 realfile
=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
3412 $(INSTALL_DATA
) $$f $(DESTDIR
)$(infodir)/$$realfile; \
3413 chmod a-x
$(DESTDIR
)$(infodir)/$$realfile; \
3416 -if
$(SHELL
) -c
'install-info --version' >/dev
/null
2>&1; then \
3417 if
[ -f
$@
]; then \
3418 install-info
--dir-file
=$(DESTDIR
)$(infodir)/dir $@
; \
3422 dvi__strip_dir
= `echo $$p | sed -e 's|^.*/||'`;
3424 install-dvi
: $(DVIFILES
) lang.install-dvi
3426 test -z
"$(dvidir)/gcc" ||
$(mkinstalldirs
) "$(DESTDIR)$(dvidir)/gcc"
3427 @list
='$(DVIFILES)'; for p in
$$list; do \
3428 if
test -f
"$$p"; then d
=; else d
="$(srcdir)/"; fi
; \
3429 f
=$(dvi__strip_dir
) \
3430 echo
" $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(dvidir)/gcc/$$f'"; \
3431 $(INSTALL_DATA
) "$$d$$p" "$(DESTDIR)$(dvidir)/gcc/$$f"; \
3434 pdf__strip_dir
= `echo $$p | sed -e 's|^.*/||'`;
3436 install-pdf
: $(PDFFILES
) lang.install-pdf
3438 test -z
"$(pdfdir)/gcc" ||
$(mkinstalldirs
) "$(DESTDIR)$(pdfdir)/gcc"
3439 @list
='$(PDFFILES)'; for p in
$$list; do \
3440 if
test -f
"$$p"; then d
=; else d
="$(srcdir)/"; fi
; \
3441 f
=$(pdf__strip_dir
) \
3442 echo
" $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/gcc/$$f'"; \
3443 $(INSTALL_DATA
) "$$d$$p" "$(DESTDIR)$(pdfdir)/gcc/$$f"; \
3446 html__strip_dir
= `echo $$p | sed -e 's|^.*/||'`;
3448 install-html
: $(HTMLS_BUILD
) lang.install-html
3450 test -z
"$(htmldir)" ||
$(mkinstalldirs
) "$(DESTDIR)$(htmldir)"
3451 @list
='$(HTMLS_INSTALL)'; for p in
$$list; do \
3452 if
test -f
"$$p" ||
test -d
"$$p"; then d
=""; else d
="$(srcdir)/"; fi
; \
3453 f
=$(html__strip_dir
) \
3454 if
test -d
"$$d$$p"; then \
3455 echo
" $(mkinstalldirs) '$(DESTDIR)$(htmldir)/$$f'"; \
3456 $(mkinstalldirs
) "$(DESTDIR)$(htmldir)/$$f" || exit
1; \
3457 echo
" $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
3458 $(INSTALL_DATA
) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
3460 echo
" $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
3461 $(INSTALL_DATA
) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
3465 # Install the man pages.
3466 install-man
: # lang.install-man \
3467 $(DESTDIR
)$(man1dir)/$(GCC_INSTALL_NAME
)$(man1ext) \
3468 $(DESTDIR
)$(man1dir)/$(CPP_INSTALL_NAME
)$(man1ext) \
3469 $(DESTDIR
)$(man1dir)/$(GCOV_INSTALL_NAME
)$(man1ext) \
3470 $(DESTDIR
)$(man1dir)/$(GCOV_TOOL_INSTALL_NAME
)$(man1ext) \
3471 $(DESTDIR
)$(man1dir)/$(GCOV_DUMP_INSTALL_NAME
)$(man1ext) \
3472 $(if
$(filter yes
,@enable_lto@
),$(DESTDIR
)$(man1dir)/$(LTO_DUMP_INSTALL_NAME
)$(man1ext)) \
3473 $(DESTDIR
)$(man7dir)/fsf-funding
$(man7ext) \
3474 $(DESTDIR
)$(man7dir)/gfdl
$(man7ext) \
3475 $(DESTDIR
)$(man7dir)/gpl
$(man7ext)
3477 $(DESTDIR
)$(man7dir)/%$(man7ext): doc
/%.7 installdirs
3479 -$(INSTALL_DATA
) $< $@
3482 $(DESTDIR
)$(man1dir)/$(GCC_INSTALL_NAME
)$(man1ext): doc
/gcc
.1 installdirs
3484 -$(INSTALL_DATA
) $< $@
3487 $(DESTDIR
)$(man1dir)/$(CPP_INSTALL_NAME
)$(man1ext): doc
/cpp.1 installdirs
3489 -$(INSTALL_DATA
) $< $@
3492 $(DESTDIR
)$(man1dir)/$(GCOV_INSTALL_NAME
)$(man1ext): doc
/gcov
.1 installdirs
3494 -$(INSTALL_DATA
) $< $@
3497 $(DESTDIR
)$(man1dir)/$(GCOV_TOOL_INSTALL_NAME
)$(man1ext): doc
/gcov-tool
.1 installdirs
3499 -$(INSTALL_DATA
) $< $@
3502 $(DESTDIR
)$(man1dir)/$(GCOV_DUMP_INSTALL_NAME
)$(man1ext): doc
/gcov-dump
.1 installdirs
3504 -$(INSTALL_DATA
) $< $@
3507 $(DESTDIR
)$(man1dir)/$(LTO_DUMP_INSTALL_NAME
)$(man1ext): doc
/lto-dump
.1 installdirs
3509 -$(INSTALL_DATA
) $< $@
3512 # Install all the header files built in the include subdirectory.
3513 install-headers
: $(INSTALL_HEADERS_DIR
)
3514 # Fix symlinks to absolute paths in the installed include directory to
3515 # point to the installed directory, not the build directory.
3516 # Don't need to use LN_S here since we really do need ln -s and no substitutes.
3517 -files
=`cd $(DESTDIR)$(libsubdir)/include-fixed; find . -type l -print 2>/dev/null`; \
3518 if
[ $$?
-eq
0 ]; then \
3519 dir=`cd include-fixed; ${PWD_COMMAND}`; \
3520 for i in
$$files; do \
3521 dest
=`ls -ld $(DESTDIR)$(libsubdir)/include-fixed/$$i | sed -n 's/.*-> //p'`; \
3522 if expr
"$$dest" : "$$dir.*" > /dev
/null
; then \
3523 rm -f
$(DESTDIR
)$(libsubdir
)/include-fixed
/$$i; \
3524 ln
-s
`echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(DESTDIR
)$(libsubdir
)/include-fixed
/$$i; \
3529 # Create or recreate the gcc private include file directory.
3530 install-include-dir
: installdirs
3531 $(mkinstalldirs
) $(DESTDIR
)$(libsubdir
)/include
3532 -rm -rf
$(DESTDIR
)$(libsubdir
)/include-fixed
3533 mkdir
$(DESTDIR
)$(libsubdir
)/include-fixed
3534 -chmod a
+rx
$(DESTDIR
)$(libsubdir
)/include-fixed
3536 # Create or recreate the install-tools include file directory.
3537 itoolsdir
= $(libexecsubdir
)/install-tools
3538 itoolsdatadir
= $(libsubdir
)/install-tools
3539 install-itoolsdirs
: installdirs
3540 $(mkinstalldirs
) $(DESTDIR
)$(itoolsdatadir
)/include
3541 $(mkinstalldirs
) $(DESTDIR
)$(itoolsdir
)
3543 # Install the include directory using tar.
3544 install-headers-tar
: # stmp-int-hdrs install-include-dir
3545 # We use `pwd`/include instead of just include to problems with CDPATH
3546 # Unless a full pathname is provided, some shells would print the new CWD,
3547 # found in CDPATH, corrupting the output. We could just redirect the
3548 # output of `cd', but some shells lose on redirection within `()'s
3549 (cd
`${PWD_COMMAND}`/include ; \
3550 tar -cf
- .
; exit
0) |
(cd
$(DESTDIR
)$(libsubdir
)/include; tar xpf
- )
3551 (cd
`${PWD_COMMAND}`/include-fixed
; \
3552 tar -cf
- .
; exit
0) |
(cd
$(DESTDIR
)$(libsubdir
)/include-fixed
; tar xpf
- )
3553 # /bin/sh on some systems returns the status of the first tar,
3554 # and that can lose with GNU tar which always writes a full block.
3555 # So use `exit 0' to ignore its exit status.
3557 # Install the include directory using cpio.
3558 install-headers-cpio
: # stmp-int-hdrs install-include-dir
3559 # See discussion about the use of `pwd` above
3560 cd
`${PWD_COMMAND}`/include ; \
3561 find .
-print | cpio
-pdum
$(DESTDIR
)$(libsubdir
)/include
3562 cd
`${PWD_COMMAND}`/include-fixed
; \
3563 find .
-print | cpio
-pdum
$(DESTDIR
)$(libsubdir
)/include-fixed
3565 # Install the include directory using cp.
3566 install-headers-cp
: # stmp-int-hdrs install-include-dir
3567 cp
-p
-r
include $(DESTDIR
)$(libsubdir
)
3568 cp
-p
-r include-fixed
$(DESTDIR
)$(libsubdir
)
3570 # Targets without dependencies, for use in prev-gcc during bootstrap.
3571 real-install-headers-tar
:
3572 (cd
`${PWD_COMMAND}`/include-fixed
; \
3573 tar -cf
- .
; exit
0) |
(cd
$(DESTDIR
)$(libsubdir
)/include-fixed
; tar xpf
- )
3575 real-install-headers-cpio
:
3576 cd
`${PWD_COMMAND}`/include-fixed
; \
3577 find .
-print | cpio
-pdum
$(DESTDIR
)$(libsubdir
)/include-fixed
3579 real-install-headers-cp
:
3580 cp
-p
-r include-fixed
$(DESTDIR
)$(libsubdir
)
3582 # Install supporting files for fixincludes to be run later.
3583 install-mkheaders
: # stmp-int-hdrs install-itoolsdirs \
3584 macro_list fixinc_list
3585 $(INSTALL_DATA
) $(srcdir)/gsyslimits.h \
3586 $(DESTDIR
)$(itoolsdatadir
)/gsyslimits.h
3587 $(INSTALL_DATA
) macro_list
$(DESTDIR
)$(itoolsdatadir
)/macro_list
3588 $(INSTALL_DATA
) fixinc_list
$(DESTDIR
)$(itoolsdatadir
)/fixinc_list
3589 set
-e
; for ml in
`cat fixinc_list`; do \
3590 multi_dir
=`echo $${ml} | sed -e 's/^[^;]*;//'`; \
3591 $(mkinstalldirs
) $(DESTDIR
)$(itoolsdatadir
)/include$${multi_dir}; \
3592 $(INSTALL_DATA
) include-fixed
$${multi_dir}/limits.h
$(DESTDIR
)$(itoolsdatadir
)/include$${multi_dir}/limits.h
; \
3594 $(INSTALL_SCRIPT
) $(srcdir)/..
/mkinstalldirs \
3595 $(DESTDIR
)$(itoolsdir
)/mkinstalldirs
; \
3596 sysroot_headers_suffix
='$${sysroot_headers_suffix}'; \
3597 echo
'SYSTEM_HEADER_DIR="'"$(SYSTEM_HEADER_DIR)"'"' \
3598 > $(DESTDIR
)$(itoolsdatadir
)/mkheaders.conf
3599 echo
'OTHER_FIXINCLUDES_DIRS="$(OTHER_FIXINCLUDES_DIRS)"' \
3600 >> $(DESTDIR
)$(itoolsdatadir
)/mkheaders.conf
3601 echo
'STMP_FIXINC="$(STMP_FIXINC)"' \
3602 >> $(DESTDIR
)$(itoolsdatadir
)/mkheaders.conf
3604 # Use this target to install the program `collect2' under the name `collect2'.
3605 install-collect2
: collect2
installdirs
3606 $(INSTALL_PROGRAM
) collect2
$(exeext
) $(DESTDIR
)$(libexecsubdir
)/collect2
$(exeext
)
3607 # Install the driver program as $(libsubdir)/gcc for collect2.
3608 $(INSTALL_PROGRAM
) xgcc
$(exeext
) $(DESTDIR
)$(libexecsubdir
)/gcc
$(exeext
)
3610 # Install lto-wrapper.
3611 install-lto-wrapper
: lto-wrapper
$(exeext
)
3612 $(INSTALL_PROGRAM
) lto-wrapper
$(exeext
) $(DESTDIR
)$(libexecsubdir
)/lto-wrapper
$(exeext
)
3614 install-gcc-ar
: installdirs gcc-ar
$(exeext
) gcc-nm
$(exeext
) gcc-ranlib
$(exeext
)
3615 if
test "$(enable_as_accelerator)" != "yes" ; then \
3616 for i in gcc-ar gcc-nm gcc-ranlib
; do \
3617 install_name
=`echo $$i|sed '$(program_transform_name)'` ;\
3618 target_install_name
=$(target_noncanonical
)-`echo $$i|sed '$(program_transform_name)'` ; \
3619 rm -f
$(DESTDIR
)$(bindir)/$$install_name$(exeext
) ; \
3620 $(INSTALL_PROGRAM
) $$i$(exeext
) $(DESTDIR
)$(bindir)/$$install_name$(exeext
) ;\
3621 if
test -f gcc-cross
$(exeext
); then \
3624 rm -f
$(DESTDIR
)$(bindir)/$$target_install_name$(exeext
); \
3625 ( cd
$(DESTDIR
)$(bindir) && \
3626 $(LN
) $$install_name$(exeext
) $$target_install_name$(exeext
) ) ; \
3631 # Cancel installation by deleting the installed files.
3632 uninstall: lang.
uninstall
3633 -rm -rf
$(DESTDIR
)$(libsubdir
)
3634 -rm -rf
$(DESTDIR
)$(libexecsubdir
)
3635 -rm -rf
$(DESTDIR
)$(bindir)/$(GCC_INSTALL_NAME
)$(exeext
)
3636 -rm -f
$(DESTDIR
)$(bindir)/$(CPP_INSTALL_NAME
)$(exeext
)
3637 -if
[ x
$(cpp_install_dir
) != x
]; then \
3638 rm -f
$(DESTDIR
)$(prefix)/$(cpp_install_dir
)/$(CPP_INSTALL_NAME
)$(exeext
); \
3640 -rm -rf
$(DESTDIR
)$(bindir)/$(GCOV_INSTALL_NAME
)$(exeext
)
3641 -rm -rf
$(DESTDIR
)$(man1dir)/$(GCC_INSTALL_NAME
)$(man1ext)
3642 -rm -rf
$(DESTDIR
)$(man1dir)/cpp$(man1ext)
3643 -rm -f
$(DESTDIR
)$(infodir)/cpp.
info* $(DESTDIR
)$(infodir)/gcc.
info*
3644 -rm -f
$(DESTDIR
)$(infodir)/cppinternals.
info* $(DESTDIR
)$(infodir)/gccint.
info*
3645 for i in
ar nm ranlib
; do \
3646 install_name
=`echo gcc-$$i|sed '$(program_transform_name)'`$(exeext
) ;\
3647 target_install_name
=$(target_noncanonical
)-`echo gcc-$$i|sed '$(program_transform_name)'`$(exeext
) ; \
3648 rm -f
$(DESTDIR
)$(bindir)/$$install_name ; \
3649 rm -f
$(DESTDIR
)$(bindir)/$$target_install_name ; \
3652 # These targets are for the dejagnu testsuites. The file site.exp
3653 # contains global variables that all the testsuites will use.
3655 target_subdir
= @target_subdir@
3657 site.exp
: .
/config.status Makefile
3658 @echo
"Making a new config file..."
3661 -@mv site.exp site.bak
3662 @echo
"## these variables are automatically generated by make ##" > .
/site.tmp
3663 @echo
"# Do not edit here. If you wish to override these values" >> .
/site.tmp
3664 @echo
"# add them to the last section" >> .
/site.tmp
3665 @echo
"set rootme \"`${PWD_COMMAND}`\"" >> .
/site.tmp
3666 @echo
"set srcdir \"`cd ${srcdir}; ${PWD_COMMAND}`\"" >> .
/site.tmp
3667 @echo
"set host_triplet $(host)" >> .
/site.tmp
3668 @echo
"set build_triplet $(build)" >> .
/site.tmp
3669 @echo
"set target_triplet $(target)" >> .
/site.tmp
3670 @echo
"set target_alias $(target_noncanonical)" >> .
/site.tmp
3671 @echo
"set libiconv \"$(LIBICONV)\"" >> .
/site.tmp
3672 # CFLAGS is set even though it's empty to show we reserve the right to set it.
3673 @echo
"set CFLAGS \"\"" >> .
/site.tmp
3674 @echo
"set CXXFLAGS \"\"" >> .
/site.tmp
3675 @echo
"set HOSTCC \"$(CC)\"" >> .
/site.tmp
3676 @echo
"set HOSTCXX \"$(CXX)\"" >> .
/site.tmp
3677 @echo
"set HOSTCFLAGS \"$(CFLAGS)\"" >> .
/site.tmp
3678 @echo
"set HOSTCXXFLAGS \"$(CXXFLAGS)\"" >> .
/site.tmp
3679 # TEST_ALWAYS_FLAGS are flags that should be passed to every compilation.
3680 # They are passed first to allow individual tests to override them.
3681 @echo
"set TEST_ALWAYS_FLAGS \"$(SYSROOT_CFLAGS_FOR_TARGET)\"" >> .
/site.tmp
3682 # When running the tests we set GCC_EXEC_PREFIX to the install tree so that
3683 # files that have already been installed there will be found. The -B option
3684 # overrides it, so use of GCC_EXEC_PREFIX will not result in using GCC files
3685 # from the install tree.
3686 @echo
"set TEST_GCC_EXEC_PREFIX \"$(libdir)/sdcc/\"" >> .
/site.tmp
3687 @echo
"set TESTING_IN_BUILD_TREE 1" >> .
/site.tmp
3688 @echo
"set HAVE_LIBSTDCXX_V3 1" >> .
/site.tmp
3689 @if
test "@enable_plugin@" = "yes" ; then \
3690 echo
"set ENABLE_PLUGIN 1" >> .
/site.tmp
; \
3691 echo
"set PLUGINCC \"$(PLUGINCC)\"" >> .
/site.tmp
; \
3692 echo
"set PLUGINCFLAGS \"$(PLUGINCFLAGS)\"" >> .
/site.tmp
; \
3693 echo
"set GMPINC \"$(GMPINC)\"" >> .
/site.tmp
; \
3695 # If newlib has been configured, we need to pass -B to gcc so it can find
3696 # newlib's crt0.o if it exists. This will cause a "path prefix not used"
3697 # message if it doesn't, but the testsuite is supposed to ignore the message -
3698 # it's too difficult to tell when to and when not to pass -B (not all targets
3699 # have crt0's). We could only add the -B if ../newlib/crt0.o exists, but that
3700 # seems like too selective a test.
3701 # ??? Another way to solve this might be to rely on linker scripts. Then
3702 # theoretically the -B won't be needed.
3703 # We also need to pass -L ../ld so that the linker can find ldscripts.
3704 @if
[ -d
$(objdir
)/..
/$(target_subdir
)/newlib
] \
3705 && [ "${host}" != "${target}" ]; then \
3706 echo
"set newlib_cflags \"-I$(objdir)/../$(target_subdir)/newlib/targ-include -I\$$srcdir/../newlib/libc/include\"" >> .
/site.tmp
; \
3707 echo
"set newlib_ldflags \"-B$(objdir)/../$(target_subdir)/newlib/\"" >> .
/site.tmp
; \
3708 echo
"append CFLAGS \" \$$newlib_cflags\"" >> .
/site.tmp
; \
3709 echo
"append CXXFLAGS \" \$$newlib_cflags\"" >> .
/site.tmp
; \
3710 echo
"append LDFLAGS \" \$$newlib_ldflags\"" >> .
/site.tmp
; \
3713 @if
[ -d
$(objdir
)/..
/ld ] ; then \
3714 echo
"append LDFLAGS \" -L$(objdir)/../ld\"" >> .
/site.tmp
; \
3717 echo
"set tmpdir $(objdir)/testsuite" >> .
/site.tmp
3718 @echo
"set srcdir \"\$${srcdir}/testsuite\"" >> .
/site.tmp
3719 @if
[ "X$(ALT_CC_UNDER_TEST)" != "X" ] ; then \
3720 echo
"set ALT_CC_UNDER_TEST \"$(ALT_CC_UNDER_TEST)\"" >> .
/site.tmp
; \
3723 @if
[ "X$(ALT_CXX_UNDER_TEST)" != "X" ] ; then \
3724 echo
"set ALT_CXX_UNDER_TEST \"$(ALT_CXX_UNDER_TEST)\"" >> .
/site.tmp
; \
3727 @if
[ "X$(COMPAT_OPTIONS)" != "X" ] ; then \
3728 echo
"set COMPAT_OPTIONS \"$(COMPAT_OPTIONS)\"" >> .
/site.tmp
; \
3731 @echo
"## All variables above are generated by configure. Do Not Edit ##" >> .
/site.tmp
3732 @cat .
/site.tmp
> site.exp
3733 @cat site.bak | sed \
3734 -e
'1,/^## All variables above are.*##/ d' >> site.exp
3737 CHECK_TARGETS
= @check_languages@
3739 check: $(CHECK_TARGETS
)
3741 check-subtargets
: $(patsubst %,%-subtargets
,$(CHECK_TARGETS
))
3743 # The idea is to parallelize testing of multilibs, for example:
3744 # make -j3 check-gcc//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
3745 # will run 3 concurrent sessions of check-gcc, eventually testing
3746 # all 10 combinations. GNU make is required, as is a shell that expands
3747 # alternations within braces.
3748 lang_checks_parallel
= $(lang_checks
:=//%)
3749 $(lang_checks_parallel
): site.exp
3750 target
=`echo "$@" | sed 's,//.*,,'`; \
3751 variant
=`echo "$@" | sed 's,^[^/]*//,,'`; \
3752 vardots
=`echo "$$variant" | sed 's,/,.,g'`; \
3753 $(MAKE
) TESTSUITEDIR
="testsuite.$$vardots" \
3754 RUNTESTFLAGS
="--target_board=$$variant $(RUNTESTFLAGS)" \
3757 TESTSUITEDIR
= testsuite
3759 $(TESTSUITEDIR
)/site.exp
: site.exp
3760 -test -d
$(TESTSUITEDIR
) || mkdir
$(TESTSUITEDIR
)
3762 sed
'/set tmpdir/ s|testsuite$$|$(TESTSUITEDIR)|' < site.exp
> $@
3764 # This is only used for check-% targets that aren't parallelized.
3765 $(filter-out $(lang_checks_parallelized
),$(lang_checks
)): check-
% : site.exp
3766 -test -d plugin || mkdir plugin
3767 -test -d
$(TESTSUITEDIR
) || mkdir
$(TESTSUITEDIR
)
3768 test -d
$(TESTSUITEDIR
)/$* || mkdir
$(TESTSUITEDIR
)/$*
3769 -(rootme
=`${PWD_COMMAND}`; export rootme
; \
3770 srcdir=`cd ${srcdir}; ${PWD_COMMAND}` ; export srcdir ; \
3771 cd
$(TESTSUITEDIR
)/$*; \
3772 rm -f tmp-site.exp
; \
3773 sed
'/set tmpdir/ s|testsuite$$|$(TESTSUITEDIR)/$*|' \
3774 < ..
/..
/site.exp
> tmp-site.exp
; \
3775 $(SHELL
) $${srcdir}/..
/move-if-change tmp-site.exp site.exp
; \
3776 EXPECT
=${EXPECT} ; export EXPECT
; \
3777 if
[ -f
$${rootme}/..
/expect
/expect
] ; then \
3778 TCL_LIBRARY
=`cd .. ; cd $${srcdir}/../tcl/library ; ${PWD_COMMAND}` ; \
3779 export TCL_LIBRARY
; fi
; \
3780 $(RUNTEST
) --tool
$* $(RUNTESTFLAGS
))
3782 $(patsubst %,%-subtargets
,$(lang_checks
)): check-
%-subtargets
:
3785 check_p_tool
=$(firstword $(subst _
, ,$*))
3786 check_p_count
=$(check_
$(check_p_tool
)_parallelize
)
3787 check_p_subno
=$(word 2,$(subst _
, ,$*))
3788 check_p_numbers0
:=1 2 3 4 5 6 7 8 9
3789 check_p_numbers1
:=0 $(check_p_numbers0
)
3790 check_p_numbers2
:=$(foreach i
,$(check_p_numbers0
),$(addprefix $(i
),$(check_p_numbers1
)))
3791 check_p_numbers3
:=$(addprefix 0,$(check_p_numbers1
)) $(check_p_numbers2
)
3792 check_p_numbers4
:=$(foreach i
,$(check_p_numbers0
),$(addprefix $(i
),$(check_p_numbers3
)))
3793 check_p_numbers5
:=$(addprefix 0,$(check_p_numbers3
)) $(check_p_numbers4
)
3794 check_p_numbers6
:=$(foreach i
,$(check_p_numbers0
),$(addprefix $(i
),$(check_p_numbers5
)))
3795 check_p_numbers
:=$(check_p_numbers0
) $(check_p_numbers2
) $(check_p_numbers4
) $(check_p_numbers6
)
3796 check_p_subdir
=$(subst _
,,$*)
3797 check_p_subdirs
=$(wordlist
1,$(check_p_count
),$(wordlist
1, \
3798 $(if
$(GCC_TEST_PARALLEL_SLOTS
),$(GCC_TEST_PARALLEL_SLOTS
),128), \
3799 $(check_p_numbers
)))
3801 # For parallelized check-% targets, this decides whether parallelization
3802 # is desirable (if -jN is used). If desirable, recursive make is run with
3803 # check-parallel-$lang{,1,2,3,4,5} etc. goals, which can be executed in
3804 # parallel, as they are run in separate directories.
3805 # check-parallel-$lang{,1,2,3,4,5} etc. goals invoke runtest with
3806 # GCC_RUNTEST_PARALLELIZE_DIR var in the environment and runtest_file_p
3807 # dejaGNU procedure is overridden to additionally synchronize through
3808 # a $lang-parallel directory which tests will be run by which runtest instance.
3809 # Afterwards contrib/dg-extract-results.sh is used to merge the sum and log
3810 # files. If parallelization isn't desirable, only one recursive make
3811 # is run with check-parallel-$lang goal and check_$lang_parallelize variable
3812 # cleared to say that no additional arguments beyond $(RUNTESTFLAGS)
3813 # should be passed to runtest.
3815 # To parallelize some language check, add the corresponding check-$lang
3816 # to lang_checks_parallelized variable and define check_$lang_parallelize
3817 # variable. This is the upper limit to which it is useful to parallelize the
3818 # check-$lang target. It doesn't make sense to try e.g. 128 goals for small
3819 # testsuites like objc or go.
3820 $(lang_checks_parallelized
): check-
% : site.exp
3821 -rm -rf
$(TESTSUITEDIR
)/$*-parallel
3822 @if
[ -n
"$(filter -j%, $(MFLAGS))" ]; then \
3823 test -d
$(TESTSUITEDIR
) || mkdir
$(TESTSUITEDIR
) || true
; \
3824 test -d
$(TESTSUITEDIR
)/$*-parallel || mkdir
$(TESTSUITEDIR
)/$*-parallel || true
; \
3825 GCC_RUNTEST_PARALLELIZE_DIR
=`${PWD_COMMAND}`/$(TESTSUITEDIR
)/$(check_p_tool
)-parallel
; \
3826 export GCC_RUNTEST_PARALLELIZE_DIR
; \
3827 $(MAKE
) TESTSUITEDIR
="$(TESTSUITEDIR)" RUNTESTFLAGS
="$(RUNTESTFLAGS)" \
3829 $(patsubst %,check-parallel-
$*_
%, $(check_p_subdirs
)); \
3831 for
dir in
$(TESTSUITEDIR
)/$* \
3832 $(patsubst %,$(TESTSUITEDIR
)/$*%,$(check_p_subdirs
));\
3834 if
[ -d
$$dir ]; then \
3835 mv
-f
$$dir/$*.sum
$$dir/$*.sum.sep
; mv
-f
$$dir/$*.log
$$dir/$*.log.sep
; \
3836 sums
="$$sums $$dir/$*.sum.sep"; logs
="$$logs $$dir/$*.log.sep"; \
3839 $(SHELL
) $(srcdir)/..
/contrib
/dg-extract-results.sh
$$sums \
3840 > $(TESTSUITEDIR
)/$*/$*.sum
; \
3841 $(SHELL
) $(srcdir)/..
/contrib
/dg-extract-results.sh
-L
$$logs \
3842 > $(TESTSUITEDIR
)/$*/$*.log
; \
3843 rm -rf
$(TESTSUITEDIR
)/$*-parallel || true
; \
3845 $(MAKE
) TESTSUITEDIR
="$(TESTSUITEDIR)" RUNTESTFLAGS
="$(RUNTESTFLAGS)" \
3846 check_
$*_parallelize
= check-parallel-
$*; \
3849 check-parallel-
% : site.exp
3850 -@
test -d plugin || mkdir plugin
3851 -@
test -d
$(TESTSUITEDIR
) || mkdir
$(TESTSUITEDIR
)
3852 @
test -d
$(TESTSUITEDIR
)/$(check_p_subdir
) || mkdir
$(TESTSUITEDIR
)/$(check_p_subdir
)
3853 -$(if
$(check_p_subno
),@
)(rootme
=`${PWD_COMMAND}`; export rootme
; \
3854 srcdir=`cd ${srcdir}; ${PWD_COMMAND}` ; export srcdir ; \
3855 if
[ -n
"$(check_p_subno)" ] \
3856 && [ -n
"$$GCC_RUNTEST_PARALLELIZE_DIR" ] \
3857 && [ -f
$(TESTSUITEDIR
)/$(check_p_tool
)-parallel
/finished
]; then \
3858 rm -rf
$(TESTSUITEDIR
)/$(check_p_subdir
); \
3860 cd
$(TESTSUITEDIR
)/$(check_p_subdir
); \
3861 rm -f tmp-site.exp
; \
3862 sed
'/set tmpdir/ s|testsuite$$|$(TESTSUITEDIR)/$(check_p_subdir)|' \
3863 < ..
/..
/site.exp
> tmp-site.exp
; \
3864 $(SHELL
) $${srcdir}/..
/move-if-change tmp-site.exp site.exp
; \
3865 EXPECT
=${EXPECT} ; export EXPECT
; \
3866 if
[ -f
$${rootme}/..
/expect
/expect
] ; then \
3867 TCL_LIBRARY
=`cd .. ; cd $${srcdir}/../tcl/library ; ${PWD_COMMAND}` ; \
3868 export TCL_LIBRARY
; \
3870 $(RUNTEST
) --tool
$(check_p_tool
) $(RUNTESTFLAGS
); \
3871 if
[ -n
"$$GCC_RUNTEST_PARALLELIZE_DIR" ] ; then \
3872 touch
$${rootme}/$(TESTSUITEDIR
)/$(check_p_tool
)-parallel
/finished
; \
3878 # The path to qmtest.
3881 # The flags to pass to qmtest.
3884 # The flags to pass to "qmtest run".
3885 QMTESTRUNFLAGS
=-f none
--result-stream dejagnu_stream.DejaGNUStream
3887 # The command to use to invoke qmtest.
3888 QMTEST
=${QMTEST_PATH} ${QMTESTFLAGS}
3890 # The tests (or suites) to run.
3891 QMTEST_GPP_TESTS
=g
++
3893 # The subdirectory of the OBJDIR that will be used to store the QMTest
3894 # test database configuration and that will be used for temporary
3895 # scratch space during QMTest's execution.
3896 QMTEST_DIR
=qmtestsuite
3898 # Create the QMTest database configuration.
3899 ${QMTEST_DIR} stamp-qmtest
:
3900 ${QMTEST} -D
${QMTEST_DIR} create-tdb \
3901 -c gcc_database.GCCDatabase \
3902 -a
srcdir=`cd ${srcdir}/testsuite && ${PWD_COMMAND}` && \
3903 $(STAMP
) stamp-qmtest
3905 # Create the QMTest context file.
3906 ${QMTEST_DIR}/context
: stamp-qmtest
3908 echo
"CompilerTable.languages=c cplusplus" >> $@
3909 echo
"CompilerTable.c_kind=GCC" >> $@
3910 echo
"CompilerTable.c_path=${objdir}/xgcc" >> $@
3911 echo
"CompilerTable.c_options=-B${objdir}/" >> $@
3912 echo
"CompilerTable.cplusplus_kind=GCC" >> $@
3913 echo
"CompilerTable.cplusplus_path=${objdir}/xg++" >> $@
3914 echo
"CompilerTable.cplusplus_options=-B${objdir}/" >> $@
3915 echo
"DejaGNUTest.target=${target_noncanonical}" >> $@
3917 # Run the G++ testsuite using QMTest.
3918 qmtest-g
++: ${QMTEST_DIR}/context
3919 cd
${QMTEST_DIR} && ${QMTEST} run
${QMTESTRUNFLAGS} -C context \
3920 -o g
++.qmr
${QMTEST_GPP_TESTS}
3922 # Use the QMTest GUI.
3923 qmtest-gui
: ${QMTEST_DIR}/context
3924 cd
${QMTEST_DIR} && ${QMTEST} gui
-C context
3928 # Run Paranoia on real.cc.
3930 paranoia.o
: $(srcdir)/..
/contrib
/paranoia.
cc $(CONFIG_H
) $(SYSTEM_H
) $(TREE_H
)
3931 g
++ -c
$(ALL_CFLAGS
) $(ALL_CPPFLAGS
) $< $(OUTPUT_OPTION
)
3933 paranoia
: paranoia.o real.o
$(LIBIBERTY
)
3934 g
++ -o
$@ paranoia.o real.o
$(LIBIBERTY
)
3936 # These exist for maintenance purposes.
3942 # Update the tags table.
3946 list
='$(SUBDIRS)'; for
dir in
$$list; do \
3947 if
test -f
$$dir/TAGS
; then \
3948 incs
="$$incs --include $$dir/TAGS.sub"; \
3951 $(ETAGS
) -o TAGS.sub c-family
/*.h c-family
/*.
cc c-family
/*.
cc \
3953 ..
/include/*.h ..
/libiberty
/*.c \
3954 ..
/libcpp
/*.c ..
/libcpp
/include/*.h \
3955 --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 \
3956 --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 \
3958 $(ETAGS
) --include TAGS.sub
$$incs)
3960 # -----------------------------------------------------
3961 # Rules for generating translated message descriptions.
3962 # Disabled by autoconf if the tools are not available.
3963 # -----------------------------------------------------
3965 XGETTEXT
= @XGETTEXT@
3968 CATALOGS
= $(patsubst %,po
/%,@CATALOGS@
)
3970 .PHONY
: build- install- build-po install-po update-po
3972 # Dummy rules to deal with dependencies produced by use of
3973 # "build-@POSUB@" and "install-@POSUB@" above, when NLS is disabled.
3977 build-po
: $(CATALOGS
)
3979 # This notation should be acceptable to all Make implementations used
3980 # by people who are interested in updating .po files.
3981 update-po
: $(CATALOGS
:.gmo
=.pox
)
3983 # N.B. We do not attempt to copy these into $(srcdir). The snapshot
3987 $(GMSGFMT
) --statistics
-o
$@
$<
3989 # The new .po has to be gone over by hand, so we deposit it into
3990 # build/po with a different extension.
3991 # If build/po/gcc.pot exists, use it (it was just created),
3992 # else use the one in srcdir.
3995 $(MSGMERGE
) $< `if test -f po/gcc.pot; \
3996 then echo po/gcc.pot; \
3997 else echo $(srcdir)/po/gcc.pot; fi` -o
$@
3999 # This rule has to look for .gmo modules in both srcdir and
4000 # the cwd, and has to check that we actually have a catalog
4001 # for each language, in case they weren't built or included
4002 # with the distribution.
4004 $(mkinstalldirs
) $(DESTDIR
)$(datadir)
4005 cats
="$(CATALOGS)"; for cat in
$$cats; do \
4006 lang
=`basename $$cat | sed 's/\.gmo$$//'`; \
4007 if
[ -f
$$cat ]; then
:; \
4008 elif
[ -f
$(srcdir)/$$cat ]; then cat
=$(srcdir)/$$cat; \
4011 dir=$(localedir
)/$$lang/LC_MESSAGES
; \
4012 echo
$(mkinstalldirs
) $(DESTDIR
)$$dir; \
4013 $(mkinstalldirs
) $(DESTDIR
)$$dir || exit
1; \
4014 echo
$(INSTALL_DATA
) $$cat $(DESTDIR
)$$dir/gcc.mo
; \
4015 $(INSTALL_DATA
) $$cat $(DESTDIR
)$$dir/gcc.mo
; \
4018 # Rule for regenerating the message template (gcc.pot).
4019 # Instead of forcing everyone to edit POTFILES.in, which proved impractical,
4020 # this rule has no dependencies and always regenerates gcc.pot. This is
4021 # relatively harmless since the .po files do not directly depend on it.
4022 # Note that exgettext has an awk script embedded in it which requires a
4023 # fairly modern (POSIX-compliant) awk.
4024 # The .pot file is left in the build directory.
4029 AWK
=$(AWK
) $(SHELL
) $(srcdir)/po
/exgettext \
4030 $(XGETTEXT
) gcc
$(srcdir)
4034 # Dependency information.
4036 # In order for parallel make to really start compiling the expensive
4037 # objects from $(OBJS) as early as possible, build all their
4038 # prerequisites strictly before all objects.
4039 $(ALL_HOST_OBJS
) : |
$(generated_files
)
4041 # Include the auto-generated dependencies for all host objects.
4043 $(foreach obj
,$(ALL_HOST_OBJS
),\
4044 $(dir $(obj
))$(DEPDIR
)/$(patsubst %.o
,%.Po
,$(notdir $(obj
))))
4045 -include $(DEPFILES
)