Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/gnu mknative-gcc run to pick up gthr-posix.h change
details: https://anonhg.NetBSD.org/src/rev/69fa0669ba28
branches: trunk
changeset: 754620:69fa0669ba28
user: drochner <drochner%NetBSD.org@localhost>
date: Thu May 06 10:08:11 2010 +0000
description:
mknative-gcc run to pick up gthr-posix.h change
(also picks up stpcpy() and stpncpy(), and gas weakref support)
diffstat:
gnu/lib/libgcc4/arch/i386.mk | 3 ++-
gnu/lib/libstdc++-v3_4/arch/i386/gthr-default.h | 8 +++++++-
gnu/lib/libstdc++-v3_4/arch/i386/gthr-posix.h | 8 +++++++-
gnu/usr.bin/gcc4/arch/i386/auto-host.h | 4 ++--
gnu/usr.bin/gcc4/arch/i386/configargs.h | 4 ++--
gnu/usr.bin/gcc4/libiberty/arch/i386/config.h | 8 ++++----
gnu/usr.bin/gcc4/libiberty/defs.mk | 2 +-
7 files changed, 25 insertions(+), 12 deletions(-)
diffs (139 lines):
diff -r dd7ac8b352d5 -r 69fa0669ba28 gnu/lib/libgcc4/arch/i386.mk
--- a/gnu/lib/libgcc4/arch/i386.mk Thu May 06 10:01:20 2010 +0000
+++ b/gnu/lib/libgcc4/arch/i386.mk Thu May 06 10:08:11 2010 +0000
@@ -1,5 +1,5 @@
# This file is automatically generated. DO NOT EDIT!
-# Generated from: NetBSD: mknative-gcc,v 1.22 2006/06/25 03:06:15 mrg Exp
+# Generated from: NetBSD: mknative-gcc,v 1.45 2009/12/17 15:48:13 uebayasi 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${GNUHOSTDIST}/gcc/../libcpp/include
@@ -9,6 +9,7 @@
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 -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=
diff -r dd7ac8b352d5 -r 69fa0669ba28 gnu/lib/libstdc++-v3_4/arch/i386/gthr-default.h
--- a/gnu/lib/libstdc++-v3_4/arch/i386/gthr-default.h Thu May 06 10:01:20 2010 +0000
+++ b/gnu/lib/libstdc++-v3_4/arch/i386/gthr-default.h Thu May 06 10:08:11 2010 +0000
@@ -1,5 +1,5 @@
/* This file is automatically generated. DO NOT EDIT! */
-/* Generated from: NetBSD: mknative-gcc,v 1.22 2006/06/25 03:06:15 mrg Exp */
+/* Generated from: NetBSD: mknative-gcc,v 1.45 2009/12/17 15:48:13 uebayasi Exp */
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
/* Threads compatibility routines for libgcc2 and libobjc. */
@@ -66,9 +66,15 @@
# ifndef __gthrw_pragma
# define __gthrw_pragma(pragma)
# endif
+# ifdef __clang__
+# define __gthrw2(name,name2,type) \
+ static __typeof(type) name __attribute__ ((__weakref__(#name2))); \
+ __gthrw_pragma(weak type)
+# else
# define __gthrw2(name,name2,type) \
extern __typeof(type) name __attribute__ ((__weakref__(#name2))); \
__gthrw_pragma(weak type)
+# endif
# define __gthrw_(name) __gthrw_ ## name
#else
# define __gthrw2(name,name2,type)
diff -r dd7ac8b352d5 -r 69fa0669ba28 gnu/lib/libstdc++-v3_4/arch/i386/gthr-posix.h
--- a/gnu/lib/libstdc++-v3_4/arch/i386/gthr-posix.h Thu May 06 10:01:20 2010 +0000
+++ b/gnu/lib/libstdc++-v3_4/arch/i386/gthr-posix.h Thu May 06 10:08:11 2010 +0000
@@ -1,5 +1,5 @@
/* This file is automatically generated. DO NOT EDIT! */
-/* Generated from: NetBSD: mknative-gcc,v 1.22 2006/06/25 03:06:15 mrg Exp */
+/* Generated from: NetBSD: mknative-gcc,v 1.45 2009/12/17 15:48:13 uebayasi Exp */
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
/* Threads compatibility routines for libgcc2 and libobjc. */
@@ -66,9 +66,15 @@
# ifndef __gthrw_pragma
# define __gthrw_pragma(pragma)
# endif
+# ifdef __clang__
+# define __gthrw2(name,name2,type) \
+ static __typeof(type) name __attribute__ ((__weakref__(#name2))); \
+ __gthrw_pragma(weak type)
+# else
# define __gthrw2(name,name2,type) \
extern __typeof(type) name __attribute__ ((__weakref__(#name2))); \
__gthrw_pragma(weak type)
+# endif
# define __gthrw_(name) __gthrw_ ## name
#else
# define __gthrw2(name,name2,type)
diff -r dd7ac8b352d5 -r 69fa0669ba28 gnu/usr.bin/gcc4/arch/i386/auto-host.h
--- a/gnu/usr.bin/gcc4/arch/i386/auto-host.h Thu May 06 10:01:20 2010 +0000
+++ b/gnu/usr.bin/gcc4/arch/i386/auto-host.h Thu May 06 10:08:11 2010 +0000
@@ -1,5 +1,5 @@
/* This file is automatically generated. DO NOT EDIT! */
-/* Generated from: NetBSD: mknative-gcc,v 1.22 2006/06/25 03:06:15 mrg Exp */
+/* Generated from: NetBSD: mknative-gcc,v 1.45 2009/12/17 15:48:13 uebayasi Exp */
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
/* auto-host.h. Generated from config.in by configure. */
@@ -757,7 +757,7 @@
/* Define if your assembler supports .weakref. */
#ifndef USED_FOR_TARGET
-/* #undef HAVE_GAS_WEAKREF */
+#define HAVE_GAS_WEAKREF 1
#endif
diff -r dd7ac8b352d5 -r 69fa0669ba28 gnu/usr.bin/gcc4/arch/i386/configargs.h
--- a/gnu/usr.bin/gcc4/arch/i386/configargs.h Thu May 06 10:01:20 2010 +0000
+++ b/gnu/usr.bin/gcc4/arch/i386/configargs.h Thu May 06 10:08:11 2010 +0000
@@ -1,9 +1,9 @@
/* This file is automatically generated. DO NOT EDIT! */
-/* Generated from: NetBSD: mknative-gcc,v 1.25 2008/10/11 05:03:44 mrg Exp */
+/* Generated from: NetBSD: mknative-gcc,v 1.45 2009/12/17 15:48:13 uebayasi Exp */
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
/* Generated automatically. */
-static const char configuration_arguments[] = "/home/drochner/netbsd/work.src.usbdev/tools/gcc/../../gnu/dist/gcc4/configure --target=i486--netbsdelf --enable-long-long --enable-threads
--enable-__cxa_atexit --with-arch=i486 --with-tune=nocona --disable-multilib --disable-symvers --build=i386-unknown-netbsdelf5.99.8 --host=i486--netbsdelf";
+static const char configuration_arguments[] = "/home/drochner/netbsd/work.src.usbdev/tools/gcc/../../gnu/dist/gcc4/configure --target=i486--netbsdelf --enable-long-long --enable-threads
--enable-__cxa_atexit --with-arch=i486 --with-tune=nocona --disable-multilib --disable-symvers --build=i386-unknown-netbsdelf5.99.29 --host=i486--netbsdelf";
static const char thread_model[] = "posix";
static const struct {
diff -r dd7ac8b352d5 -r 69fa0669ba28 gnu/usr.bin/gcc4/libiberty/arch/i386/config.h
--- a/gnu/usr.bin/gcc4/libiberty/arch/i386/config.h Thu May 06 10:01:20 2010 +0000
+++ b/gnu/usr.bin/gcc4/libiberty/arch/i386/config.h Thu May 06 10:08:11 2010 +0000
@@ -1,6 +1,6 @@
/* This file is automatically generated. DO NOT EDIT! */
-/* Generated from: NetBSD: mknative-gcc,v 1.22 2006/06/25 03:06:15 mrg Exp */
-/* Generated from: NetBSD: mknative.common,v 1.8 2006/05/26 19:17:21 mrg Exp */
+/* Generated from: NetBSD: mknative-gcc,v 1.45 2009/12/17 15:48:13 uebayasi Exp */
+/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
/* config.h. Generated by configure. */
/* config.in. Generated from configure.ac by autoheader. */
@@ -211,10 +211,10 @@
#define HAVE_STDLIB_H 1
/* Define to 1 if you have the `stpcpy' function. */
-/* #undef HAVE_STPCPY */
+#define HAVE_STPCPY 1
/* Define to 1 if you have the `stpncpy' function. */
-/* #undef HAVE_STPNCPY */
+#define HAVE_STPNCPY 1
/* Define to 1 if you have the `strcasecmp' function. */
#define HAVE_STRCASECMP 1
diff -r dd7ac8b352d5 -r 69fa0669ba28 gnu/usr.bin/gcc4/libiberty/defs.mk
--- a/gnu/usr.bin/gcc4/libiberty/defs.mk Thu May 06 10:01:20 2010 +0000
+++ b/gnu/usr.bin/gcc4/libiberty/defs.mk Thu May 06 10:08:11 2010 +0000
@@ -4,5 +4,5 @@
#
G_ALLOCA=
G_EXTRA_OFILES=
-G_LIBOBJS=mempcpy.o mkstemps.o strverscmp.o vfork.o strncmp.o
+G_LIBOBJS=mempcpy.o mkstemps.o strverscmp.o strncmp.o
G_REQUIRED_OFILES=regex.o cplus-dem.o cp-demangle.o md5.o alloca.o argv.o choose-temp.o concat.o cp-demint.o dyn-string.o fdmatch.o fibheap.o floatformat.o fnmatch.o fopen_unlocked.o getopt.o
getopt1.o getpwd.o getruntime.o hashtab.o hex.o lbasename.o lrealpath.o make-relative-prefix.o make-temp-file.o objalloc.o obstack.o partition.o pexecute.o physmem.o pex-common.o pex-one.o pex-unix.o
safe-ctype.o sort.o spaces.o splay-tree.o strerror.o strsignal.o ternary.o unlink-if-ordinary.o xatexit.o xexit.o xmalloc.o xmemdup.o xstrdup.o xstrerror.o xstrndup.o
Home |
Main Index |
Thread Index |
Old Index