Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/gpl3/gcc (re-)run mknative-gcc for i386, amd64, spa...



details:   https://anonhg.NetBSD.org/src/rev/4ba33c44fa1a
branches:  trunk
changeset: 766726:4ba33c44fa1a
user:      mrg <mrg%NetBSD.org@localhost>
date:      Fri Jul 01 01:57:01 2011 +0000

description:
(re-)run mknative-gcc for i386, amd64, sparc, sparc64, powerpc and arm.

- both x86 seem to be working fine now
- sparc static binaries work, dynamic fails
- sparc64 fails at startup, accessing beyond the stack
- powerpc and arm still have libgcc issues

diffstat:

 external/gpl3/gcc/lib/crtstuff/arch/arm.mk                      |    10 +
 external/gpl3/gcc/lib/crtstuff/arch/powerpc.mk                  |    10 +
 external/gpl3/gcc/lib/crtstuff/arch/sparc.mk                    |    10 +
 external/gpl3/gcc/lib/libgcc/arch/arm.mk                        |    23 +
 external/gpl3/gcc/lib/libgcc/arch/powerpc.mk                    |    23 +
 external/gpl3/gcc/lib/libgcc/arch/sparc.mk                      |    23 +
 external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/defs.mk           |     5 +
 external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/gcov-iov.h        |     8 +
 external/gpl3/gcc/lib/libgcc/libgcov/arch/powerpc/defs.mk       |     5 +
 external/gpl3/gcc/lib/libgcc/libgcov/arch/powerpc/gcov-iov.h    |     8 +
 external/gpl3/gcc/lib/libgcc/libgcov/arch/sparc/defs.mk         |     5 +
 external/gpl3/gcc/lib/libgcc/libgcov/arch/sparc/gcov-iov.h      |     8 +
 external/gpl3/gcc/lib/libiberty/arch/arm/config.h               |   480 ++
 external/gpl3/gcc/lib/libiberty/arch/powerpc/config.h           |   480 ++
 external/gpl3/gcc/lib/libiberty/arch/sparc/config.h             |   480 ++
 external/gpl3/gcc/lib/libobjc/arch/arm/config.h                 |    73 +
 external/gpl3/gcc/lib/libobjc/arch/arm/defs.mk                  |    10 +
 external/gpl3/gcc/lib/libobjc/arch/powerpc/config.h             |    73 +
 external/gpl3/gcc/lib/libobjc/arch/powerpc/defs.mk              |    10 +
 external/gpl3/gcc/lib/libobjc/arch/sparc/config.h               |    73 +
 external/gpl3/gcc/lib/libobjc/arch/sparc/defs.mk                |    10 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/c++allocator.h      |    41 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/c++config.h         |  1507 +++++++
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/config.h            |  1127 +++++
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/cxxabi_tweaks.h     |    85 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/defs.mk             |    34 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/gstdint.h           |    51 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/gthr-default.h      |   872 ++++
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/gthr-posix.h        |   872 ++++
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/gthr-single.h       |   296 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/gthr-tpf.h          |   233 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/gthr.h              |   177 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/omp.h               |   109 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/i386/c++config.h        |     6 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/i386/config.h           |     6 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/i386/defs.mk            |     5 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/c++allocator.h  |    41 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/c++config.h     |  1507 +++++++
 external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/config.h        |  1127 +++++
 external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/cxxabi_tweaks.h |    62 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/defs.mk         |    34 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/gstdint.h       |    51 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/gthr-default.h  |   872 ++++
 external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/gthr-posix.h    |   872 ++++
 external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/gthr-single.h   |   296 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/gthr-tpf.h      |   233 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/gthr.h          |   177 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/powerpc/omp.h           |   109 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/c++allocator.h    |    41 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/c++config.h       |  1507 +++++++
 external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/config.h          |  1127 +++++
 external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/cxxabi_tweaks.h   |    62 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/defs.mk           |    34 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/gstdint.h         |    51 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/gthr-default.h    |   872 ++++
 external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/gthr-posix.h      |   872 ++++
 external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/gthr-single.h     |   296 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/gthr-tpf.h        |   233 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/gthr.h            |   177 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/sparc/omp.h             |   109 +
 external/gpl3/gcc/lib/libstdc++-v3/arch/sparc64/defs.mk         |     5 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/x86_64/c++config.h      |     4 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/x86_64/config.h         |     4 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/x86_64/defs.mk          |     5 +-
 external/gpl3/gcc/usr.bin/gcc/arch/arm/all-tree.def             |     5 +
 external/gpl3/gcc/usr.bin/gcc/arch/arm/auto-host.h              |  1915 ++++++++++
 external/gpl3/gcc/usr.bin/gcc/arch/arm/bconfig.h                |    11 +
 external/gpl3/gcc/usr.bin/gcc/arch/arm/bversion.h               |     8 +
 external/gpl3/gcc/usr.bin/gcc/arch/arm/config.h                 |    14 +
 external/gpl3/gcc/usr.bin/gcc/arch/arm/configargs.h             |    11 +
 external/gpl3/gcc/usr.bin/gcc/arch/arm/defs.mk                  |    52 +
 external/gpl3/gcc/usr.bin/gcc/arch/arm/gthr-default.h           |     5 +
 external/gpl3/gcc/usr.bin/gcc/arch/arm/gtyp-input.list          |   187 +
 external/gpl3/gcc/usr.bin/gcc/arch/arm/multilib.h               |    20 +
 external/gpl3/gcc/usr.bin/gcc/arch/arm/plugin-version.h         |    17 +
 external/gpl3/gcc/usr.bin/gcc/arch/arm/tm.h                     |    27 +
 external/gpl3/gcc/usr.bin/gcc/arch/i386/configargs.h            |     4 +-
 external/gpl3/gcc/usr.bin/gcc/arch/i386/gtyp-input.list         |   360 +-
 external/gpl3/gcc/usr.bin/gcc/arch/i386/i386-builtin-types.inc  |   662 +++
 external/gpl3/gcc/usr.bin/gcc/arch/powerpc/all-tree.def         |     5 +
 external/gpl3/gcc/usr.bin/gcc/arch/powerpc/auto-host.h          |  1915 ++++++++++
 external/gpl3/gcc/usr.bin/gcc/arch/powerpc/bconfig.h            |    11 +
 external/gpl3/gcc/usr.bin/gcc/arch/powerpc/bversion.h           |     8 +
 external/gpl3/gcc/usr.bin/gcc/arch/powerpc/config.h             |    14 +
 external/gpl3/gcc/usr.bin/gcc/arch/powerpc/configargs.h         |    11 +
 external/gpl3/gcc/usr.bin/gcc/arch/powerpc/defs.mk              |    52 +
 external/gpl3/gcc/usr.bin/gcc/arch/powerpc/gthr-default.h       |     5 +
 external/gpl3/gcc/usr.bin/gcc/arch/powerpc/gtyp-input.list      |   190 +
 external/gpl3/gcc/usr.bin/gcc/arch/powerpc/multilib.h           |    20 +
 external/gpl3/gcc/usr.bin/gcc/arch/powerpc/plugin-version.h     |    17 +
 external/gpl3/gcc/usr.bin/gcc/arch/powerpc/tm.h                 |    29 +
 external/gpl3/gcc/usr.bin/gcc/arch/sparc/all-tree.def           |     5 +
 external/gpl3/gcc/usr.bin/gcc/arch/sparc/auto-host.h            |  1915 ++++++++++
 external/gpl3/gcc/usr.bin/gcc/arch/sparc/bconfig.h              |    11 +
 external/gpl3/gcc/usr.bin/gcc/arch/sparc/bversion.h             |     8 +
 external/gpl3/gcc/usr.bin/gcc/arch/sparc/config.h               |    14 +
 external/gpl3/gcc/usr.bin/gcc/arch/sparc/configargs.h           |    11 +
 external/gpl3/gcc/usr.bin/gcc/arch/sparc/defs.mk                |    52 +
 external/gpl3/gcc/usr.bin/gcc/arch/sparc/gthr-default.h         |     5 +
 external/gpl3/gcc/usr.bin/gcc/arch/sparc/gtyp-input.list        |   187 +
 external/gpl3/gcc/usr.bin/gcc/arch/sparc/multilib.h             |    20 +
 external/gpl3/gcc/usr.bin/gcc/arch/sparc/plugin-version.h       |    17 +
 external/gpl3/gcc/usr.bin/gcc/arch/sparc/tm.h                   |    27 +
 external/gpl3/gcc/usr.bin/gcc/arch/sparc64/all-tree.def         |     4 -
 external/gpl3/gcc/usr.bin/gcc/arch/sparc64/configargs.h         |     4 +-
 external/gpl3/gcc/usr.bin/gcc/arch/sparc64/gtyp-input.list      |   188 +
 external/gpl3/gcc/usr.bin/gcc/arch/x86_64/configargs.h          |     4 +-
 external/gpl3/gcc/usr.bin/gcc/arch/x86_64/gtyp-input.list       |   364 +-
 external/gpl3/gcc/usr.bin/libcpp/arch/arm/config.h              |   290 +
 external/gpl3/gcc/usr.bin/libcpp/arch/powerpc/config.h          |   290 +
 external/gpl3/gcc/usr.bin/libcpp/arch/sparc/config.h            |   290 +
 external/gpl3/gcc/usr.bin/libdecnumber/arch/arm/config.h        |    99 +
 external/gpl3/gcc/usr.bin/libdecnumber/arch/powerpc/config.h    |    99 +
 external/gpl3/gcc/usr.bin/libdecnumber/arch/sparc/config.h      |    99 +
 114 files changed, 27221 insertions(+), 385 deletions(-)

diffs (truncated from 28193 to 300 lines):

diff -r 514116449378 -r 4ba33c44fa1a external/gpl3/gcc/lib/crtstuff/arch/arm.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/crtstuff/arch/arm.mk        Fri Jul 01 01:57:01 2011 +0000
@@ -0,0 +1,10 @@
+# This file is automatically generated.  DO NOT EDIT!
+# Generated from:      NetBSD: mknative-gcc,v 1.55 2011/06/30 07:16:59 mrg Exp 
+# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp 
+#
+G_INCLUDES=-I. -I. -I${GNUHOSTDIST}/gcc -I${GNUHOSTDIST}/gcc/. -I${GNUHOSTDIST}/gcc/../include -I./../intl -I${GNUHOSTDIST}/gcc/../libcpp/include -I/var/obj/shark/usr/src3/destdir.shark/usr/include 
-I/var/obj/shark/usr/src3/destdir.shark/usr/include -I/var/obj/shark/usr/src3/destdir.shark/usr/include  -I${GNUHOSTDIST}/gcc/../libdecnumber -I${GNUHOSTDIST}/gcc/../libdecnumber/dpd 
-I../libdecnumber   -I/usr/include/libelf
+G_CRTSTUFF_CFLAGS=-O2  -DIN_GCC   -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition  -isystem ./include  -I. -I. -I${GNUHOSTDIST}/gcc 
-I${GNUHOSTDIST}/gcc/. -I${GNUHOSTDIST}/gcc/../include -I./../intl -I${GNUHOSTDIST}/gcc/../libcpp/include -I/var/obj/shark/usr/src3/destdir.shark/usr/include 
-I/var/obj/shark/usr/src3/destdir.shark/usr/include -I/var/obj/shark/usr/src3/destdir.shark/usr/include  -I${GNUHOSTDIST}/gcc/../libdecnumber -I${GNUHOSTDIST}/gcc/../libdecnumber/dpd 
-I../libdecnumber   -I/usr/include/libelf  -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize 
+G_CRTSTUFF_T_CFLAGS=
+G_tm_defines=NETBSD_ENABLE_PTHREADS
+G_xm_file=
+G_xm_defines=
diff -r 514116449378 -r 4ba33c44fa1a external/gpl3/gcc/lib/crtstuff/arch/powerpc.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/crtstuff/arch/powerpc.mk    Fri Jul 01 01:57:01 2011 +0000
@@ -0,0 +1,10 @@
+# This file is automatically generated.  DO NOT EDIT!
+# Generated from:      NetBSD: mknative-gcc,v 1.55 2011/06/30 07:16:59 mrg Exp 
+# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp 
+#
+G_INCLUDES=-I. -I. -I${GNUHOSTDIST}/gcc -I${GNUHOSTDIST}/gcc/. -I${GNUHOSTDIST}/gcc/../include -I./../intl -I${GNUHOSTDIST}/gcc/../libcpp/include -I/var/obj/ofppc/usr/src3/destdir.ofppc/usr/include 
-I/var/obj/ofppc/usr/src3/destdir.ofppc/usr/include -I/var/obj/ofppc/usr/src3/destdir.ofppc/usr/include  -I${GNUHOSTDIST}/gcc/../libdecnumber -I${GNUHOSTDIST}/gcc/../libdecnumber/dpd 
-I../libdecnumber   -I/usr/include/libelf
+G_CRTSTUFF_CFLAGS=-O2  -DIN_GCC   -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition  -isystem ./include  -I. -I. -I${GNUHOSTDIST}/gcc 
-I${GNUHOSTDIST}/gcc/. -I${GNUHOSTDIST}/gcc/../include -I./../intl -I${GNUHOSTDIST}/gcc/../libcpp/include -I/var/obj/ofppc/usr/src3/destdir.ofppc/usr/include 
-I/var/obj/ofppc/usr/src3/destdir.ofppc/usr/include -I/var/obj/ofppc/usr/src3/destdir.ofppc/usr/include  -I${GNUHOSTDIST}/gcc/../libdecnumber -I${GNUHOSTDIST}/gcc/../libdecnumber/dpd 
-I../libdecnumber   -I/usr/include/libelf  -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize 
+G_CRTSTUFF_T_CFLAGS= -msdata=none
+G_tm_defines=NETBSD_ENABLE_PTHREADS
+G_xm_file=
+G_xm_defines=
diff -r 514116449378 -r 4ba33c44fa1a external/gpl3/gcc/lib/crtstuff/arch/sparc.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/crtstuff/arch/sparc.mk      Fri Jul 01 01:57:01 2011 +0000
@@ -0,0 +1,10 @@
+# This file is automatically generated.  DO NOT EDIT!
+# Generated from:      NetBSD: mknative-gcc,v 1.55 2011/06/30 07:16:59 mrg Exp 
+# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp 
+#
+G_INCLUDES=-I. -I. -I${GNUHOSTDIST}/gcc -I${GNUHOSTDIST}/gcc/. -I${GNUHOSTDIST}/gcc/../include -I./../intl -I${GNUHOSTDIST}/gcc/../libcpp/include -I/var/obj/sparc/usr/src3/destdir.sparc/usr/include 
-I/var/obj/sparc/usr/src3/destdir.sparc/usr/include -I/var/obj/sparc/usr/src3/destdir.sparc/usr/include  -I${GNUHOSTDIST}/gcc/../libdecnumber -I${GNUHOSTDIST}/gcc/../libdecnumber/dpd 
-I../libdecnumber   -I/usr/include/libelf
+G_CRTSTUFF_CFLAGS=-O2  -DIN_GCC   -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition  -isystem ./include  -I. -I. -I${GNUHOSTDIST}/gcc 
-I${GNUHOSTDIST}/gcc/. -I${GNUHOSTDIST}/gcc/../include -I./../intl -I${GNUHOSTDIST}/gcc/../libcpp/include -I/var/obj/sparc/usr/src3/destdir.sparc/usr/include 
-I/var/obj/sparc/usr/src3/destdir.sparc/usr/include -I/var/obj/sparc/usr/src3/destdir.sparc/usr/include  -I${GNUHOSTDIST}/gcc/../libdecnumber -I${GNUHOSTDIST}/gcc/../libdecnumber/dpd 
-I../libdecnumber   -I/usr/include/libelf  -g0 -finhibit-size-directive -fno-inline -fno-exceptions -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize 
+G_CRTSTUFF_T_CFLAGS=
+G_tm_defines=NETBSD_ENABLE_PTHREADS
+G_xm_file=
+G_xm_defines=
diff -r 514116449378 -r 4ba33c44fa1a external/gpl3/gcc/lib/libgcc/arch/arm.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libgcc/arch/arm.mk  Fri Jul 01 01:57:01 2011 +0000
@@ -0,0 +1,23 @@
+# This file is automatically generated.  DO NOT EDIT!
+# Generated from:      NetBSD: mknative-gcc,v 1.55 2011/06/30 07:16:59 mrg Exp 
+# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp 
+#
+G_INCLUDES=-I. -I. -I${GNUHOSTDIST}/gcc -I${GNUHOSTDIST}/gcc/. -I${GNUHOSTDIST}/gcc/../include -I./../intl -I${GNUHOSTDIST}/gcc/../libcpp/include -I/var/obj/shark/usr/src3/destdir.shark/usr/include 
-I/var/obj/shark/usr/src3/destdir.shark/usr/include -I/var/obj/shark/usr/src3/destdir.shark/usr/include  -I${GNUHOSTDIST}/gcc/../libdecnumber -I${GNUHOSTDIST}/gcc/../libdecnumber/dpd 
-I../libdecnumber   -I/usr/include/libelf
+G_LIB2ADD=${GNUHOSTDIST}/gcc/config/floatunsidf.c ${GNUHOSTDIST}/gcc/config/floatunsisf.c
+G_LIB2ADDEH=${GNUHOSTDIST}/gcc/unwind-dw2.c ${GNUHOSTDIST}/gcc/unwind-dw2-fde.c ${GNUHOSTDIST}/gcc/unwind-sjlj.c ${GNUHOSTDIST}/gcc/gthr-gnat.c ${GNUHOSTDIST}/gcc/unwind-c.c
+G_LIB1ASMFUNCS=_thumb1_case_sqi _thumb1_case_uqi _thumb1_case_shi _thumb1_case_uhi _thumb1_case_si
+G_LIB1ASMSRC=arm/lib1funcs.asm
+G_LIB2_DIVMOD_FUNCS=_divdi3 _moddi3 _udivdi3 _umoddi3 _udiv_w_sdiv _udivmoddi4
+G_LIB2FUNCS_ST=_eprintf __gcc_bcmp
+G_LIB2FUNCS_EXTRA=${GNUHOSTDIST}/gcc/config/floatunsidf.c ${GNUHOSTDIST}/gcc/config/floatunsisf.c
+G_LIBGCC2_CFLAGS=-O2   -DIN_GCC   -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition  -isystem ./include  -fomit-frame-pointer -fpic -g0 
-DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED 
+G_SHLIB_MKMAP=${GNUHOSTDIST}/gcc/mkmap-symver.awk
+G_SHLIB_MKMAP_OPTS=
+G_SHLIB_MAPFILES=${GNUHOSTDIST}/gcc/libgcc-std.ver
+G_SHLIB_NM_FLAGS=-pg
+G_EXTRA_HEADERS=${GNUHOSTDIST}/gcc/config/arm/mmintrin.h ${GNUHOSTDIST}/gcc/config/arm/arm_neon.h ${GNUHOSTDIST}/gcc/ginclude/tgmath.h
+G_xm_defines=
+G_tm_defines=NETBSD_ENABLE_PTHREADS
+G_COLLECT2=collect2
+G_UNWIND_H=${GNUHOSTDIST}/gcc/unwind-generic.h
+G_xm_include_list=auto-host.h ansidecl.h
diff -r 514116449378 -r 4ba33c44fa1a external/gpl3/gcc/lib/libgcc/arch/powerpc.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libgcc/arch/powerpc.mk      Fri Jul 01 01:57:01 2011 +0000
@@ -0,0 +1,23 @@
+# This file is automatically generated.  DO NOT EDIT!
+# Generated from:      NetBSD: mknative-gcc,v 1.55 2011/06/30 07:16:59 mrg Exp 
+# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp 
+#
+G_INCLUDES=-I. -I. -I${GNUHOSTDIST}/gcc -I${GNUHOSTDIST}/gcc/. -I${GNUHOSTDIST}/gcc/../include -I./../intl -I${GNUHOSTDIST}/gcc/../libcpp/include -I/var/obj/ofppc/usr/src3/destdir.ofppc/usr/include 
-I/var/obj/ofppc/usr/src3/destdir.ofppc/usr/include -I/var/obj/ofppc/usr/src3/destdir.ofppc/usr/include  -I${GNUHOSTDIST}/gcc/../libdecnumber -I${GNUHOSTDIST}/gcc/../libdecnumber/dpd 
-I../libdecnumber   -I/usr/include/libelf
+G_LIB2ADD=${GNUHOSTDIST}/gcc/config/rs6000/tramp.asm
+G_LIB2ADDEH=${GNUHOSTDIST}/gcc/unwind-dw2.c ${GNUHOSTDIST}/gcc/unwind-dw2-fde.c ${GNUHOSTDIST}/gcc/unwind-sjlj.c ${GNUHOSTDIST}/gcc/gthr-gnat.c ${GNUHOSTDIST}/gcc/unwind-c.c
+G_LIB1ASMFUNCS=
+G_LIB1ASMSRC=
+G_LIB2_DIVMOD_FUNCS=_divdi3 _moddi3 _udivdi3 _umoddi3 _udiv_w_sdiv _udivmoddi4
+G_LIB2FUNCS_ST=_eprintf __gcc_bcmp
+G_LIB2FUNCS_EXTRA=${GNUHOSTDIST}/gcc/config/rs6000/tramp.asm
+G_LIBGCC2_CFLAGS=-O2   -DIN_GCC   -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition  -isystem ./include  -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 
-D__GCC_FLOAT_NOT_NEEDED 
+G_SHLIB_MKMAP=${GNUHOSTDIST}/gcc/mkmap-symver.awk
+G_SHLIB_MKMAP_OPTS=
+G_SHLIB_MAPFILES=${GNUHOSTDIST}/gcc/libgcc-std.ver
+G_SHLIB_NM_FLAGS=-pg
+G_EXTRA_HEADERS=${GNUHOSTDIST}/gcc/config/rs6000/ppc-asm.h ${GNUHOSTDIST}/gcc/config/rs6000/altivec.h ${GNUHOSTDIST}/gcc/config/rs6000/spe.h ${GNUHOSTDIST}/gcc/config/rs6000/ppu_intrinsics.h 
${GNUHOSTDIST}/gcc/config/rs6000/paired.h ${GNUHOSTDIST}/gcc/config/rs6000/spu2vmx.h ${GNUHOSTDIST}/gcc/config/rs6000/vec_types.h ${GNUHOSTDIST}/gcc/config/rs6000/si2vmx.h 
${GNUHOSTDIST}/gcc/ginclude/tgmath.h
+G_xm_defines=
+G_tm_defines=NETBSD_ENABLE_PTHREADS
+G_COLLECT2=collect2
+G_UNWIND_H=${GNUHOSTDIST}/gcc/unwind-generic.h
+G_xm_include_list=auto-host.h ansidecl.h
diff -r 514116449378 -r 4ba33c44fa1a external/gpl3/gcc/lib/libgcc/arch/sparc.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libgcc/arch/sparc.mk        Fri Jul 01 01:57:01 2011 +0000
@@ -0,0 +1,23 @@
+# This file is automatically generated.  DO NOT EDIT!
+# Generated from:      NetBSD: mknative-gcc,v 1.55 2011/06/30 07:16:59 mrg Exp 
+# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp 
+#
+G_INCLUDES=-I. -I. -I${GNUHOSTDIST}/gcc -I${GNUHOSTDIST}/gcc/. -I${GNUHOSTDIST}/gcc/../include -I./../intl -I${GNUHOSTDIST}/gcc/../libcpp/include -I/var/obj/sparc/usr/src3/destdir.sparc/usr/include 
-I/var/obj/sparc/usr/src3/destdir.sparc/usr/include -I/var/obj/sparc/usr/src3/destdir.sparc/usr/include  -I${GNUHOSTDIST}/gcc/../libdecnumber -I${GNUHOSTDIST}/gcc/../libdecnumber/dpd 
-I../libdecnumber   -I/usr/include/libelf
+G_LIB2ADD=
+G_LIB2ADDEH=${GNUHOSTDIST}/gcc/unwind-dw2.c ${GNUHOSTDIST}/gcc/unwind-dw2-fde.c ${GNUHOSTDIST}/gcc/unwind-sjlj.c ${GNUHOSTDIST}/gcc/gthr-gnat.c ${GNUHOSTDIST}/gcc/unwind-c.c
+G_LIB1ASMFUNCS=
+G_LIB1ASMSRC=
+G_LIB2_DIVMOD_FUNCS=_divdi3 _moddi3 _udivdi3 _umoddi3 _udiv_w_sdiv _udivmoddi4
+G_LIB2FUNCS_ST=_eprintf __gcc_bcmp
+G_LIB2FUNCS_EXTRA=
+G_LIBGCC2_CFLAGS=-O2   -DIN_GCC   -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition  -isystem ./include  -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 
-D__GCC_FLOAT_NOT_NEEDED 
+G_SHLIB_MKMAP=${GNUHOSTDIST}/gcc/mkmap-symver.awk
+G_SHLIB_MKMAP_OPTS=
+G_SHLIB_MAPFILES=${GNUHOSTDIST}/gcc/libgcc-std.ver
+G_SHLIB_NM_FLAGS=-pg
+G_EXTRA_HEADERS=${GNUHOSTDIST}/gcc/ginclude/tgmath.h
+G_xm_defines=
+G_tm_defines=NETBSD_ENABLE_PTHREADS
+G_COLLECT2=collect2
+G_UNWIND_H=${GNUHOSTDIST}/gcc/unwind-generic.h
+G_xm_include_list=auto-host.h ansidecl.h
diff -r 514116449378 -r 4ba33c44fa1a external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/defs.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/defs.mk     Fri Jul 01 01:57:01 2011 +0000
@@ -0,0 +1,5 @@
+# This file is automatically generated.  DO NOT EDIT!
+# Generated from:      NetBSD: mknative-gcc,v 1.55 2011/06/30 07:16:59 mrg Exp 
+# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp 
+#
+G_LIBGCOV=_gcov _gcov_merge_add _gcov_merge_single _gcov_merge_delta _gcov_fork _gcov_execl _gcov_execlp _gcov_execle _gcov_execv _gcov_execvp _gcov_execve _gcov_interval_profiler 
_gcov_pow2_profiler _gcov_one_value_profiler _gcov_indirect_call_profiler _gcov_average_profiler _gcov_ior_profiler _gcov_merge_ior
diff -r 514116449378 -r 4ba33c44fa1a external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/gcov-iov.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/gcov-iov.h  Fri Jul 01 01:57:01 2011 +0000
@@ -0,0 +1,8 @@
+/* This file is automatically generated.  DO NOT EDIT! */
+/* Generated from:     NetBSD: mknative-gcc,v 1.55 2011/06/30 07:16:59 mrg Exp  */
+/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp  */
+
+/* Generated automatically by the program `build/gcov-iov'
+   from `4.5.3 (4 5) and  (*)'.  */
+
+#define GCOV_VERSION ((gcov_unsigned_t)0x3430352a)  /* 405* */
diff -r 514116449378 -r 4ba33c44fa1a external/gpl3/gcc/lib/libgcc/libgcov/arch/powerpc/defs.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libgcc/libgcov/arch/powerpc/defs.mk Fri Jul 01 01:57:01 2011 +0000
@@ -0,0 +1,5 @@
+# This file is automatically generated.  DO NOT EDIT!
+# Generated from:      NetBSD: mknative-gcc,v 1.55 2011/06/30 07:16:59 mrg Exp 
+# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp 
+#
+G_LIBGCOV=_gcov _gcov_merge_add _gcov_merge_single _gcov_merge_delta _gcov_fork _gcov_execl _gcov_execlp _gcov_execle _gcov_execv _gcov_execvp _gcov_execve _gcov_interval_profiler 
_gcov_pow2_profiler _gcov_one_value_profiler _gcov_indirect_call_profiler _gcov_average_profiler _gcov_ior_profiler _gcov_merge_ior
diff -r 514116449378 -r 4ba33c44fa1a external/gpl3/gcc/lib/libgcc/libgcov/arch/powerpc/gcov-iov.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libgcc/libgcov/arch/powerpc/gcov-iov.h      Fri Jul 01 01:57:01 2011 +0000
@@ -0,0 +1,8 @@
+/* This file is automatically generated.  DO NOT EDIT! */
+/* Generated from:     NetBSD: mknative-gcc,v 1.55 2011/06/30 07:16:59 mrg Exp  */
+/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp  */
+
+/* Generated automatically by the program `build/gcov-iov'
+   from `4.5.3 (4 5) and  (*)'.  */
+
+#define GCOV_VERSION ((gcov_unsigned_t)0x3430352a)  /* 405* */
diff -r 514116449378 -r 4ba33c44fa1a external/gpl3/gcc/lib/libgcc/libgcov/arch/sparc/defs.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libgcc/libgcov/arch/sparc/defs.mk   Fri Jul 01 01:57:01 2011 +0000
@@ -0,0 +1,5 @@
+# This file is automatically generated.  DO NOT EDIT!
+# Generated from:      NetBSD: mknative-gcc,v 1.55 2011/06/30 07:16:59 mrg Exp 
+# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp 
+#
+G_LIBGCOV=_gcov _gcov_merge_add _gcov_merge_single _gcov_merge_delta _gcov_fork _gcov_execl _gcov_execlp _gcov_execle _gcov_execv _gcov_execvp _gcov_execve _gcov_interval_profiler 
_gcov_pow2_profiler _gcov_one_value_profiler _gcov_indirect_call_profiler _gcov_average_profiler _gcov_ior_profiler _gcov_merge_ior
diff -r 514116449378 -r 4ba33c44fa1a external/gpl3/gcc/lib/libgcc/libgcov/arch/sparc/gcov-iov.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libgcc/libgcov/arch/sparc/gcov-iov.h        Fri Jul 01 01:57:01 2011 +0000
@@ -0,0 +1,8 @@
+/* This file is automatically generated.  DO NOT EDIT! */
+/* Generated from:     NetBSD: mknative-gcc,v 1.55 2011/06/30 07:16:59 mrg Exp  */
+/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp  */
+
+/* Generated automatically by the program `build/gcov-iov'
+   from `4.5.3 (4 5) and  (*)'.  */
+
+#define GCOV_VERSION ((gcov_unsigned_t)0x3430352a)  /* 405* */
diff -r 514116449378 -r 4ba33c44fa1a external/gpl3/gcc/lib/libiberty/arch/arm/config.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libiberty/arch/arm/config.h Fri Jul 01 01:57:01 2011 +0000
@@ -0,0 +1,480 @@
+/* This file is automatically generated.  DO NOT EDIT! */
+/* Generated from:     NetBSD: mknative-gcc,v 1.55 2011/06/30 07:16:59 mrg Exp  */
+/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp  */
+
+/* config.h.  Generated from config.in by configure.  */
+/* config.in.  Generated from configure.ac by autoheader.  */
+
+/* Define if building universal (internal helper macro) */
+/* #undef AC_APPLE_UNIVERSAL_BUILD */
+
+/* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
+   This function is required for alloca.c support on those systems. */
+/* #undef CRAY_STACKSEG_END */
+
+/* Define to 1 if you have the <alloca.h> header file. */
+/* #undef HAVE_ALLOCA_H */
+
+/* Define to 1 if you have the `asprintf' function. */
+#define HAVE_ASPRINTF 1
+
+/* Define to 1 if you have the `atexit' function. */
+#define HAVE_ATEXIT 1
+
+/* Define to 1 if you have the `basename' function. */
+#define HAVE_BASENAME 1
+
+/* Define to 1 if you have the `bcmp' function. */
+#define HAVE_BCMP 1
+
+/* Define to 1 if you have the `bcopy' function. */
+#define HAVE_BCOPY 1
+
+/* Define to 1 if you have the `bsearch' function. */
+#define HAVE_BSEARCH 1
+
+/* Define to 1 if you have the `bzero' function. */
+#define HAVE_BZERO 1
+
+/* Define to 1 if you have the `calloc' function. */
+#define HAVE_CALLOC 1
+
+/* Define to 1 if you have the `canonicalize_file_name' function. */
+/* #undef HAVE_CANONICALIZE_FILE_NAME */
+
+/* Define to 1 if you have the `clock' function. */
+#define HAVE_CLOCK 1
+
+/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
+   don't. */
+#define HAVE_DECL_ASPRINTF 1
+
+/* Define to 1 if you have the declaration of `basename', and to 0 if you
+   don't. */
+#define HAVE_DECL_BASENAME 0
+
+/* Define to 1 if you have the declaration of `calloc', and to 0 if you don't.
+   */
+#define HAVE_DECL_CALLOC 1
+
+/* Define to 1 if you have the declaration of `ffs', and to 0 if you don't. */
+#define HAVE_DECL_FFS 1
+
+/* Define to 1 if you have the declaration of `getenv', and to 0 if you don't.
+   */
+#define HAVE_DECL_GETENV 1
+
+/* Define to 1 if you have the declaration of `getopt', and to 0 if you don't.
+   */
+#define HAVE_DECL_GETOPT 1
+
+/* Define to 1 if you have the declaration of `malloc', and to 0 if you don't.
+   */
+#define HAVE_DECL_MALLOC 1
+
+/* Define to 1 if you have the declaration of `realloc', and to 0 if you
+   don't. */
+#define HAVE_DECL_REALLOC 1
+
+/* Define to 1 if you have the declaration of `sbrk', and to 0 if you don't.
+   */
+#define HAVE_DECL_SBRK 1
+
+/* Define to 1 if you have the declaration of `snprintf', and to 0 if you
+   don't. */
+#define HAVE_DECL_SNPRINTF 1
+
+/* Define to 1 if you have the declaration of `strverscmp', and to 0 if you
+   don't. */
+#define HAVE_DECL_STRVERSCMP 0
+
+/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
+   don't. */
+#define HAVE_DECL_VASPRINTF 1
+
+/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
+   don't. */
+#define HAVE_DECL_VSNPRINTF 1
+
+/* Define to 1 if you have the <fcntl.h> header file. */
+#define HAVE_FCNTL_H 1
+
+/* Define to 1 if you have the `ffs' function. */
+#define HAVE_FFS 1
+
+/* Define to 1 if you have the `fork' function. */
+#define HAVE_FORK 1
+
+/* Define to 1 if you have the `getcwd' function. */
+#define HAVE_GETCWD 1
+



Home | Main Index | Thread Index | Old Index