Move libgcc_tm_file to toplevel libgcc
gcc: * configure.ac (libgcc_tm_file_list, libgcc_tm_include_list): Remove. * configure: Regenerate. * Makefile.in (libgcc_tm_file_list, libgcc_tm_include_list): Remove. (TM_H): Remove libgcc_tm.h, $(libgcc_tm_file_list). (libgcc_tm.h, cs-libgcc_tm.h): Remove. (clean): Remove libgcc_tm.h * mkconfig.sh: Don't include libgcc_tm.h in tm.h. * config.gcc (libgcc_tm_file): Remove. (arm*-*-linux*): Remove libgcc_tm_file for arm*-*-linux-*eabi. (arm*-*-uclinux*): Remove libgcc_tm_file for arm*-*-uclinux*eabi. (arm*-*-eabi*, arm*-*-symbianelf*): Remove libgcc_tm_file. (avr-*-rtems*): Likewise. (avr-*-*): Likewise. (frv-*-elf): Likewise. (frv-*-*linux*): Likewise. (h8300-*-rtems*): Likewise. (h8300-*-elf*): Likewise. (i[34567]86-*-darwin*): Likewise. (x86_64-*-darwin*): Likewise. (rx-*-elf*): Likewise. (tic6x-*-elf): Likewise. (tic6x-*-uclinux): Likewise. (i[34567]86-*-linux*, x86_64-*-linux*): Likewise. libgcc: * configure.ac (tm_file_): New variable. Determine from tm_file. (tm_file, tm_defines): Substitute. * configure: Regenerate. * mkheader.sh: New file. * Makefile.in (clean): Remove libgcc_tm.h. ($(objects)): Depend on libgcc_tm.h. (libgcc_tm_defines, libgcc_tm_file): New variables. (libgcc_tm.h, libgcc_tm.stamp): New targets. ($(libgcc-objects), $(libgcc-s-objects), $(libgcc-eh-objects)) ($(libgcov-objects), $(libunwind-objects), $(libunwind-s-objects)) ($(extra-parts)): Depend on libgcc_tm.h. * config.host (tm_defines, tm_file): New variable. (arm*-*-linux*): Set tm_file for arm*-*-linux-*eabi. (arm*-*-uclinux*): Set tm_file for arm*-*-uclinux*eabi. (arm*-*-eabi*, arm*-*-symbianelf*): Set tm_file. (avr-*-rtems*): Likewise. (avr-*-*): Likewise. (frv-*-elf): Likewise. (frv-*-*linux*): Likewise. (h8300-*-rtems*): Likewise. (h8300-*-elf*): Likewise. (i[34567]86-*-darwin*): Likewise. (x86_64-*-darwin*): Likewise. (rx-*-elf): Likewise. (tic6x-*-uclinux): Likewise. (tic6x-*-elf): Likewise. (i[34567]86-*-linux*, x86_64-*-linux*): Likewise. * config/alpha/gthr-posix.c: Include libgcc_tm.h. * config/i386/cygming-crtbegin.c: Likewise. * config/i386/cygming-crtend.c: Likewise. * config/ia64/fde-vms.c: Likewise. * config/ia64/unwind-ia64.c: Likewise. * config/libbid/bid_gcc_intrinsics.h: Likewise. * config/rs6000/darwin-fallback.c: Likewise. * config/stormy16/lib2funcs.c: Likewise. * config/xtensa/unwind-dw2-xtensa.c: Likewise. * crtstuff.c: Likewise. * dfp-bit.h: Likewise. * emutls.c: Likewise. * fixed-bit.c: Likewise. * fp-bit.c: Likewise. * generic-morestack-thread.c: Likewise. * generic-morestack.c: Likewise. * libgcc2.c: Likewise. * libgcov.c: Likewise. * unwind-dw2-fde-dip.c: Likewise. * unwind-dw2-fde.c: Likewise. * unwind-dw2.c: Likewise. * unwind-sjlj.c: Likewise. Co-Authored-By: Paolo Bonzini <bonzini@gnu.org> From-SVN: r180775
This commit is contained in:
parent
f9989b51a9
commit
852b75ed97
34 changed files with 223 additions and 75 deletions
|
@ -1,3 +1,56 @@
|
|||
2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* configure.ac (tm_file_): New variable.
|
||||
Determine from tm_file.
|
||||
(tm_file, tm_defines): Substitute.
|
||||
* configure: Regenerate.
|
||||
* mkheader.sh: New file.
|
||||
* Makefile.in (clean): Remove libgcc_tm.h.
|
||||
($(objects)): Depend on libgcc_tm.h.
|
||||
(libgcc_tm_defines, libgcc_tm_file): New variables.
|
||||
(libgcc_tm.h, libgcc_tm.stamp): New targets.
|
||||
($(libgcc-objects), $(libgcc-s-objects), $(libgcc-eh-objects))
|
||||
($(libgcov-objects), $(libunwind-objects), $(libunwind-s-objects))
|
||||
($(extra-parts)): Depend on libgcc_tm.h.
|
||||
* config.host (tm_defines, tm_file): New variable.
|
||||
(arm*-*-linux*): Set tm_file for arm*-*-linux-*eabi.
|
||||
(arm*-*-uclinux*): Set tm_file for arm*-*-uclinux*eabi.
|
||||
(arm*-*-eabi*, arm*-*-symbianelf*): Set tm_file.
|
||||
(avr-*-rtems*): Likewise.
|
||||
(avr-*-*): Likewise.
|
||||
(frv-*-elf): Likewise.
|
||||
(frv-*-*linux*): Likewise.
|
||||
(h8300-*-rtems*): Likewise.
|
||||
(h8300-*-elf*): Likewise.
|
||||
(i[34567]86-*-darwin*): Likewise.
|
||||
(x86_64-*-darwin*): Likewise.
|
||||
(rx-*-elf): Likewise.
|
||||
(tic6x-*-uclinux): Likewise.
|
||||
(tic6x-*-elf): Likewise.
|
||||
(i[34567]86-*-linux*, x86_64-*-linux*): Likewise.
|
||||
* config/alpha/gthr-posix.c: Include libgcc_tm.h.
|
||||
* config/i386/cygming-crtbegin.c: Likewise.
|
||||
* config/i386/cygming-crtend.c: Likewise.
|
||||
* config/ia64/fde-vms.c: Likewise.
|
||||
* config/ia64/unwind-ia64.c: Likewise.
|
||||
* config/libbid/bid_gcc_intrinsics.h: Likewise.
|
||||
* config/rs6000/darwin-fallback.c: Likewise.
|
||||
* config/stormy16/lib2funcs.c: Likewise.
|
||||
* config/xtensa/unwind-dw2-xtensa.c: Likewise.
|
||||
* crtstuff.c: Likewise.
|
||||
* dfp-bit.h: Likewise.
|
||||
* emutls.c: Likewise.
|
||||
* fixed-bit.c: Likewise.
|
||||
* fp-bit.c: Likewise.
|
||||
* generic-morestack-thread.c: Likewise.
|
||||
* generic-morestack.c: Likewise.
|
||||
* libgcc2.c: Likewise.
|
||||
* libgcov.c: Likewise.
|
||||
* unwind-dw2-fde-dip.c: Likewise.
|
||||
* unwind-dw2-fde.c: Likewise.
|
||||
* unwind-dw2.c: Likewise.
|
||||
* unwind-sjlj.c: Likewise.
|
||||
|
||||
2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* configure.ac: Include ../config/picflag.m4.
|
||||
|
|
|
@ -121,7 +121,7 @@ installcheck:
|
|||
.PHONY: all clean
|
||||
|
||||
clean:
|
||||
-rm -f config.h stamp-h stmp-ldirs libgcc.map
|
||||
-rm -f config.h libgcc_tm.h stamp-h stmp-ldirs libgcc.map
|
||||
-rm -f *$(objext)
|
||||
-rm -f *.dep
|
||||
-rm -f *.a
|
||||
|
@ -338,6 +338,16 @@ SHLIBUNWIND_INSTALL =
|
|||
tmake_file = @tmake_file@
|
||||
include $(srcdir)/empty.mk $(tmake_file)
|
||||
|
||||
# Collect target defines and headers from config.host.
|
||||
libgcc_tm_defines = @tm_defines@
|
||||
libgcc_tm_file = @tm_file@
|
||||
libgcc_tm.h: libgcc_tm.stamp; @true
|
||||
libgcc_tm.stamp:
|
||||
DEFINES='$(libgcc_tm_defines)' HEADERS='$(libgcc_tm_file)' \
|
||||
$(srcdir)/mkheader.sh > tmp-libgcc_tm.h
|
||||
$(SHELL) $(srcdir)/../move-if-change tmp-libgcc_tm.h libgcc_tm.h
|
||||
echo timestamp > $@
|
||||
|
||||
# Only handle shared libraries if both:
|
||||
# - the user requested them
|
||||
# - we know how to build them
|
||||
|
@ -984,6 +994,11 @@ libgcc-extra-parts: $(EXTRA_PARTS)
|
|||
|
||||
all: $(extra-parts)
|
||||
|
||||
$(libgcc-objects) $(libgcc-s-objects) $(libgcc-eh-objects) \
|
||||
$(libgcov-objects) \
|
||||
$(libunwind-objects) $(libunwind-s-objects) \
|
||||
$(extra-parts): libgcc_tm.h
|
||||
|
||||
install-unwind_h:
|
||||
dest=$(gcc_objdir)/include/tmp$$$$-unwind.h; \
|
||||
cp unwind.h $$dest; \
|
||||
|
|
|
@ -60,6 +60,11 @@
|
|||
# tmake_file A list of machine-description-specific
|
||||
# makefile-fragments, if different from
|
||||
# "$cpu_type/t-$cpu_type".
|
||||
# tm_defines List of target macros to define for all compilations.
|
||||
# tm_file A list of target macro files used only for code
|
||||
# built for the target, not the host. These files
|
||||
# are relative to $srcdir/config and must not have
|
||||
# the same names as files in $srcdir/../gcc/config.
|
||||
# unwind_header The name of the header file declaring the unwind
|
||||
# runtime interface routines.
|
||||
|
||||
|
@ -67,6 +72,8 @@ asm_hidden_op=.hidden
|
|||
enable_execute_stack=
|
||||
extra_parts=
|
||||
tmake_file=
|
||||
tm_file=
|
||||
tm_define=
|
||||
md_unwind_header=no-unwind.h
|
||||
unwind_header=unwind-generic.h
|
||||
|
||||
|
@ -329,6 +336,7 @@ arm*-*-linux*) # ARM GNU/Linux with ELF
|
|||
case ${host} in
|
||||
arm*-*-linux-*eabi)
|
||||
tmake_file="${tmake_file} arm/t-elf arm/t-bpabi arm/t-linux-eabi t-slibgcc-libgcc"
|
||||
tm_file="$tm_file arm/bpabi-lib.h"
|
||||
unwind_header=config/arm/unwind-arm.h
|
||||
;;
|
||||
*)
|
||||
|
@ -342,6 +350,7 @@ arm*-*-uclinux*) # ARM ucLinux
|
|||
case ${host} in
|
||||
arm*-*-uclinux*eabi)
|
||||
tmake_file="${tmake_file} arm/t-bpabi"
|
||||
tm_file="$tm_file arm/bpabi-lib.h"
|
||||
unwind_header=config/arm/unwind-arm.h
|
||||
;;
|
||||
esac
|
||||
|
@ -354,6 +363,7 @@ arm*-*-ecos-elf)
|
|||
;;
|
||||
arm*-*-eabi* | arm*-*-symbianelf* )
|
||||
tmake_file="${tmake_file} arm/t-arm arm/t-elf t-fixedpoint-gnu-prefix"
|
||||
tm_file="$tm_file arm/bpabi-lib.h"
|
||||
case ${host} in
|
||||
arm*-*-eabi*)
|
||||
tmake_file="${tmake_file} arm/t-bpabi"
|
||||
|
@ -361,6 +371,7 @@ arm*-*-eabi* | arm*-*-symbianelf* )
|
|||
;;
|
||||
arm*-*-symbianelf*)
|
||||
tmake_file="${tmake_file} arm/t-symbian t-slibgcc-nolc-override"
|
||||
tm_file="$tm_file arm/symbian-lib.h"
|
||||
# Symbian OS provides its own startup code.
|
||||
;;
|
||||
esac
|
||||
|
@ -380,12 +391,14 @@ arm*-wince-pe*)
|
|||
;;
|
||||
avr-*-rtems*)
|
||||
tmake_file="$tmake_file avr/t-avr t-fpbit"
|
||||
tm_file="$tm_file avr/avr-lib.h"
|
||||
# Don't use default.
|
||||
extra_parts=
|
||||
;;
|
||||
avr-*-*)
|
||||
# Make HImode functions for AVR
|
||||
tmake_file="${cpu_type}/t-avr t-fpbit"
|
||||
tm_file="$tm_file avr/avr-lib.h"
|
||||
;;
|
||||
bfin*-elf*)
|
||||
tmake_file="bfin/t-bfin bfin/t-elf bfin/t-crtlibid bfin/t-crtstuff t-fdpbit"
|
||||
|
@ -434,18 +447,22 @@ fr30-*-elf)
|
|||
;;
|
||||
frv-*-elf)
|
||||
tmake_file="$tmake_file frv/t-frv t-fdpbit"
|
||||
tm_file="$tm_file frv/frv-abi.h"
|
||||
# Don't use crtbegin.o, crtend.o.
|
||||
extra_parts="frvbegin.o frvend.o"
|
||||
;;
|
||||
frv-*-*linux*)
|
||||
tmake_file="$tmake_file frv/t-frv frv/t-linux t-fdpbit"
|
||||
tm_file="$tm_file frv/frv-abi.h"
|
||||
;;
|
||||
h8300-*-rtems*)
|
||||
tmake_file="$tmake_file h8300/t-h8300 t-fpbit"
|
||||
tm_file="$tm_file h8300/h8300-lib.h"
|
||||
extra_parts="$extra_parts crti.o crtn.o"
|
||||
;;
|
||||
h8300-*-elf*)
|
||||
tmake_file="$tmake_file h8300/t-h8300 t-fpbit"
|
||||
tm_file="$tm_file h8300/h8300-lib.h"
|
||||
extra_parts="$extra_parts crti.o crtn.o"
|
||||
;;
|
||||
hppa*64*-*-linux*)
|
||||
|
@ -499,10 +516,12 @@ hppa[12]*-*-hpux11*)
|
|||
;;
|
||||
i[34567]86-*-darwin*)
|
||||
tmake_file="$tmake_file i386/t-crtpc i386/t-crtfm"
|
||||
tm_file="$tm_file i386/darwin-lib.h"
|
||||
extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
|
||||
;;
|
||||
x86_64-*-darwin*)
|
||||
tmake_file="$tmake_file i386/t-crtpc i386/t-crtfm"
|
||||
tm_file="$tm_file i386/darwin-lib.h"
|
||||
extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
|
||||
;;
|
||||
i[34567]86-*-elf*)
|
||||
|
@ -907,6 +926,7 @@ rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
|
|||
;;
|
||||
rx-*-elf)
|
||||
tmake_file="rx/t-rx t-fdpbit"
|
||||
tm_file="$tm_file rx/rx-abi.h rx/rx-lib.h"
|
||||
;;
|
||||
s390-*-linux*)
|
||||
tmake_file="${tmake_file} s390/t-crtstuff s390/t-linux s390/32/t-floattodi"
|
||||
|
@ -1046,11 +1066,13 @@ spu-*-elf*)
|
|||
;;
|
||||
tic6x-*-uclinux)
|
||||
tmake_file="${tmake_file} t-softfp-sfdf t-softfp-excl t-softfp c6x/t-elf c6x/t-uclinux t-crtstuff-pic t-libgcc-pic t-slibgcc t-slibgcc-gld t-slibgcc-elf-ver t-gnu-prefix"
|
||||
tm_file="$tm_file c6x/c6x-abi.h"
|
||||
extra_parts="crtbeginS.o crtendS.o crti.o crtn.o"
|
||||
unwind_header=config/c6x/unwind-c6x.h
|
||||
;;
|
||||
tic6x-*-elf)
|
||||
tmake_file="${tmake_file} t-softfp-sfdf t-softfp-excl t-softfp t-gnu-prefix c6x/t-elf"
|
||||
tm_file="$tm_file c6x/c6x-abi.h"
|
||||
extra_parts="$extra_parts crtbeginS.o crtendS.o crti.o crtn.o"
|
||||
unwind_header=config/c6x/unwind-c6x.h
|
||||
;;
|
||||
|
@ -1127,5 +1149,6 @@ i[34567]86-*-linux* | x86_64-*-linux*)
|
|||
if test "${host_address}" = 64; then
|
||||
tmake_file="${tmake_file} i386/${host_address}/t-softfp-compat"
|
||||
fi
|
||||
tm_file="${tm_file} i386/value-unwind.h"
|
||||
;;
|
||||
esac
|
||||
|
|
|
@ -26,6 +26,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
|
||||
#include "tconfig.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
# define __gthrw_pragma(pragma) _Pragma (#pragma)
|
||||
/* Define so we provide weak definitions of functions used by libobjc only. */
|
||||
#define _LIBOBJC_WEAK
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* crtbegin object for windows32 targets.
|
||||
Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc.
|
||||
Copyright (C) 2007, 2009, 2010, 2011 Free Software Foundation, Inc.
|
||||
|
||||
Contributed by Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
|
@ -32,6 +32,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
#include "unwind-dw2-fde.h"
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* crtend object for windows32 targets.
|
||||
Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
||||
Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
||||
|
||||
Contributed by Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
|
@ -34,6 +34,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
#include "unwind-dw2-fde.h"
|
||||
|
||||
#if defined(HAVE_LD_RO_RW_SECTION_MIXING)
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
#include "unwind.h"
|
||||
#include "unwind-ia64.h"
|
||||
#include "unwind-compat.h"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 2007, 2009, 2010, 2011 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GCC.
|
||||
|
||||
|
@ -29,6 +29,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "tconfig.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
|
||||
#ifndef LIBGCC2_LONG_DOUBLE_TYPE_SIZE
|
||||
#define LIBGCC2_LONG_DOUBLE_TYPE_SIZE LONG_DOUBLE_TYPE_SIZE
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Fallback frame-state unwinder for Darwin.
|
||||
Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
|
||||
Copyright (C) 2004, 2005, 2007, 2009, 2011 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GCC.
|
||||
|
||||
|
@ -28,6 +28,7 @@
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
#include "dwarf2.h"
|
||||
#include "unwind.h"
|
||||
#include "unwind-dw2.h"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
files. On this glorious day maybe this code can be integrated into
|
||||
it too. */
|
||||
|
||||
/* Copyright (C) 2005, 2008, 2009, 2010 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 2005, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GCC.
|
||||
|
||||
|
@ -31,6 +31,7 @@
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
|
||||
#ifdef HAVE_GAS_HIDDEN
|
||||
#define ATTRIBUTE_HIDDEN __attribute__ ((__visibility__ ("hidden")))
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
#include "dwarf2.h"
|
||||
#include "unwind.h"
|
||||
#ifdef __USING_SJLJ_EXCEPTIONS__
|
||||
|
|
12
libgcc/configure
vendored
12
libgcc/configure
vendored
|
@ -593,6 +593,8 @@ LIBOBJS
|
|||
asm_hidden_op
|
||||
extra_parts
|
||||
cpu_type
|
||||
tm_defines
|
||||
tm_file
|
||||
tmake_file
|
||||
sfp_machine_header
|
||||
set_use_emutls
|
||||
|
@ -4785,6 +4787,16 @@ done
|
|||
tmake_file="${tmake_file_}"
|
||||
|
||||
|
||||
# Likewise export definitions for libgcc_tm.h
|
||||
tm_file_=
|
||||
for f in ${tm_file}
|
||||
do
|
||||
tm_file_="${tm_file_} \$(srcdir)/config/$f"
|
||||
done
|
||||
tm_file="${tm_file_}"
|
||||
|
||||
|
||||
|
||||
# Substitute configuration variables
|
||||
|
||||
|
||||
|
|
|
@ -354,6 +354,16 @@ done
|
|||
tmake_file="${tmake_file_}"
|
||||
AC_SUBST(tmake_file)
|
||||
|
||||
# Likewise export definitions for libgcc_tm.h
|
||||
tm_file_=
|
||||
for f in ${tm_file}
|
||||
do
|
||||
tm_file_="${tm_file_} \$(srcdir)/config/$f"
|
||||
done
|
||||
tm_file="${tm_file_}"
|
||||
AC_SUBST(tm_file)
|
||||
AC_SUBST(tm_defines)
|
||||
|
||||
# Substitute configuration variables
|
||||
AC_SUBST(cpu_type)
|
||||
AC_SUBST(extra_parts)
|
||||
|
|
|
@ -62,6 +62,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
#include "unwind-dw2-fde.h"
|
||||
|
||||
#ifndef FORCE_CODE_SECTION_ALIGN
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Header file for dfp-bit.c.
|
||||
Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010
|
||||
Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GCC.
|
||||
|
@ -33,6 +33,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "tconfig.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
|
||||
#ifndef LIBGCC2_LONG_DOUBLE_TYPE_SIZE
|
||||
#define LIBGCC2_LONG_DOUBLE_TYPE_SIZE LONG_DOUBLE_TYPE_SIZE
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* TLS emulation.
|
||||
Copyright (C) 2006, 2008, 2009 Free Software Foundation, Inc.
|
||||
Copyright (C) 2006, 2008, 2009, 2011 Free Software Foundation, Inc.
|
||||
Contributed by Jakub Jelinek <jakub@redhat.com>.
|
||||
|
||||
This file is part of GCC.
|
||||
|
@ -27,6 +27,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
#include "gthr.h"
|
||||
|
||||
typedef unsigned int word __attribute__((mode(word)));
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* This is a software fixed-point library.
|
||||
Copyright (C) 2007, 2009 Free Software Foundation, Inc.
|
||||
Copyright (C) 2007, 2009, 2011 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GCC.
|
||||
|
||||
|
@ -46,6 +46,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
|
||||
#ifndef MIN_UNITS_PER_WORD
|
||||
#define MIN_UNITS_PER_WORD UNITS_PER_WORD
|
||||
|
|
|
@ -37,6 +37,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "tconfig.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
#include "fp-bit.h"
|
||||
|
||||
/* The following macros can be defined to change the behavior of this file:
|
||||
|
|
|
@ -27,6 +27,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
|
||||
/* If inhibit_libc is defined, we can not compile this file. The
|
||||
effect is that people will not be able to use -fsplit-stack. That
|
||||
|
|
|
@ -27,6 +27,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
|
||||
/* If inhibit_libc is defined, we can not compile this file. The
|
||||
effect is that people will not be able to use -fsplit-stack. That
|
||||
|
|
|
@ -29,6 +29,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
|
||||
#ifdef HAVE_GAS_HIDDEN
|
||||
#define ATTRIBUTE_HIDDEN __attribute__ ((__visibility__ ("hidden")))
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* Routines required for instrumenting a program. */
|
||||
/* Compile this one with gcc. */
|
||||
/* Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
||||
2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009, 2010
|
||||
2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009, 2010, 2011
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GCC.
|
||||
|
@ -29,6 +29,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
|
||||
#if defined(inhibit_libc)
|
||||
#define IN_LIBGCOV (-1)
|
||||
|
|
41
libgcc/mkheader.sh
Executable file
41
libgcc/mkheader.sh
Executable file
|
@ -0,0 +1,41 @@
|
|||
#! /bin/sh
|
||||
|
||||
# Copyright (C) 2001, 2002, 2006, 2007, 2010, 2011 Free Software Foundation, Inc.
|
||||
# This file is part of GCC.
|
||||
|
||||
# GCC is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 3, or (at your option)
|
||||
# any later version.
|
||||
|
||||
# GCC is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with GCC; see the file COPYING3. If not see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
# Print libgcc_tm.h to the standard output.
|
||||
# DEFINES and HEADERS are expected to be set in the environment.
|
||||
|
||||
# Add multiple inclusion protection guard, part one.
|
||||
echo "#ifndef LIBGCC_TM_H"
|
||||
echo "#define LIBGCC_TM_H"
|
||||
|
||||
# Generate the body of the file
|
||||
echo "/* Automatically generated by mkheader.sh. */"
|
||||
for def in $DEFINES; do
|
||||
echo "#ifndef $def" | sed 's/=.*//'
|
||||
echo "# define $def" | sed 's/=/ /'
|
||||
echo "#endif"
|
||||
done
|
||||
|
||||
for file in $HEADERS; do
|
||||
echo "#include \"$file\""
|
||||
done
|
||||
|
||||
# Add multiple inclusion protection guard, part two.
|
||||
echo "#endif /* LIBGCC_TM_H */"
|
|
@ -1,4 +1,4 @@
|
|||
/* Copyright (C) 2001, 2002, 2003, 2004, 2005, 2009, 2010
|
||||
/* Copyright (C) 2001, 2002, 2003, 2004, 2005, 2009, 2010, 2011
|
||||
Free Software Foundation, Inc.
|
||||
Contributed by Jakub Jelinek <jakub@redhat.com>.
|
||||
|
||||
|
@ -38,6 +38,7 @@
|
|||
#endif
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
#include "dwarf2.h"
|
||||
#include "unwind.h"
|
||||
#define NO_BASE_OF_ENCODED_VALUE
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* Subroutines needed for unwinding stack frames for exception handling. */
|
||||
/* Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008,
|
||||
2009, 2010 Free Software Foundation, Inc.
|
||||
2009, 2010, 2011 Free Software Foundation, Inc.
|
||||
Contributed by Jason Merrill <jason@cygnus.com>.
|
||||
|
||||
This file is part of GCC.
|
||||
|
@ -29,6 +29,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
#include "dwarf2.h"
|
||||
#include "unwind.h"
|
||||
#define NO_BASE_OF_ENCODED_VALUE
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
#include "dwarf2.h"
|
||||
#include "unwind.h"
|
||||
#ifdef __USING_SJLJ_EXCEPTIONS__
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* SJLJ exception handling and frame unwind runtime interface routines.
|
||||
Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006,
|
||||
2009 Free Software Foundation, Inc.
|
||||
2009, 2011 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GCC.
|
||||
|
||||
|
@ -27,6 +27,7 @@
|
|||
#include "tsystem.h"
|
||||
#include "coretypes.h"
|
||||
#include "tm.h"
|
||||
#include "libgcc_tm.h"
|
||||
#include "unwind.h"
|
||||
#include "gthr.h"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue