[Midnightbsd-cvs] src [10922] tag
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Thu Jun 14 20:28:28 EDT 2018
Revision: 10922
http://svnweb.midnightbsd.org/src/?rev=10922
Author: laffer1
Date: 2018-06-14 20:28:28 -0400 (Thu, 14 Jun 2018)
Log Message:
-----------
tag
Modified Paths:
--------------
trunk/gnu/usr.bin/cc/cc_tools/Makefile
trunk/gnu/usr.bin/cc/cc_tools/Makefile.dep
trunk/gnu/usr.bin/cc/cc_tools/arm.md.diff
trunk/gnu/usr.bin/cc/cc_tools/auto-host.h
trunk/gnu/usr.bin/cc/cc_tools/elfos-undef.h
trunk/gnu/usr.bin/cc/cc_tools/freebsd-native.h
trunk/gnu/usr.bin/cc/cc_tools/freebsd.opt
trunk/gnu/usr.bin/cc/cc_tools/i386-freebsd.opt
trunk/gnu/usr.bin/cc/cc_tools/size-host.h
Property Changed:
----------------
trunk/gnu/usr.bin/cc/cc_tools/Makefile.dep
trunk/gnu/usr.bin/cc/cc_tools/arm.md.diff
trunk/gnu/usr.bin/cc/cc_tools/freebsd.opt
trunk/gnu/usr.bin/cc/cc_tools/i386-freebsd.opt
Modified: trunk/gnu/usr.bin/cc/cc_tools/Makefile
===================================================================
--- trunk/gnu/usr.bin/cc/cc_tools/Makefile 2018-06-15 00:26:30 UTC (rev 10921)
+++ trunk/gnu/usr.bin/cc/cc_tools/Makefile 2018-06-15 00:28:28 UTC (rev 10922)
@@ -1,5 +1,5 @@
-# $MidnightBSD: src/gnu/usr.bin/cc/cc_tools/Makefile,v 1.6 2010/02/06 05:12:46 laffer1 Exp $
-# $FreeBSD: src/gnu/usr.bin/cc/cc_tools/Makefile,v 1.88 2007/05/28 00:25:07 kan Exp $
+# $MidnightBSD$
+# $FreeBSD: stable/10/gnu/usr.bin/cc/cc_tools/Makefile 291815 2015-12-04 18:59:20Z bdrewery $
.include <bsd.own.mk>
@@ -52,7 +52,10 @@
.endif
.if ${TARGET_CPUARCH} == "arm"
TARGET_INC+= ${GCC_CPU}/aout.h
+.if ${MK_ARM_EABI} != "no"
+TARGET_INC+= ${GCC_CPU}/bpabi.h
.endif
+.endif
.if ${TARGET_ARCH} == "powerpc64"
TARGET_INC+= ${GCC_CPU}/biarch64.h
TARGET_INC+= ${GCC_CPU}/default64.h
@@ -131,10 +134,6 @@
GTFILES_LANG_DIR_NAMES+= cp
.endif
-.if ${MK_OBJC} != "no"
-GTFILES_LANG_DIR_NAMES+= objc
-.endif
-
# The list of language specific files for gengtype
.for L in ${GTFILES_LANG_DIR_NAMES} c
.if exists(${GCCDIR}/$L-config-lang.in)
@@ -159,10 +158,6 @@
TREE_DEF_FILES+= cp/cp-tree.def
.endif
-.if ${MK_OBJC} != "no"
-TREE_DEF_FILES+= objc/objc-tree.def
-.endif
-
#
# Option files.
#
@@ -176,7 +171,11 @@
OPT_FILES+= ${.CURDIR}/${GCC_CPU}-freebsd.opt
.endif
-.if ${TARGET_ARCH} == "sparc64"
+.if ${TARGET_CPUARCH} == "powerpc"
+OPT_FILES+= ${GCCDIR}/config/${GCC_CPU}/sysv4.opt
+.endif
+
+.if ${TARGET_CPUARCH} == "sparc64"
OPT_FILES+= ${GCCDIR}/config/${GCC_CPU}/long-double-switch.opt
.endif
@@ -219,6 +218,7 @@
GENSRCS+= tconfig.h
CLEANFILES+= cs-tconfig.h
+
# Options
optionlist: ${OPT_FILES}
LC_ALL=C awk -f ${GCCDIR}/opt-gather.awk ${.ALLSRC} > ${.TARGET}
@@ -354,7 +354,13 @@
GENSRCS+= gthr-default.h
+.if ${TARGET_CPUARCH} == "arm" && ${MK_ARM_EABI} != "no"
+unwind.h: ${GCCDIR}/config/arm/unwind-arm.h
+.else
unwind.h: ${GCCDIR}/unwind-generic.h
+.endif
+
+unwind.h:
ln -sf ${.ALLSRC} ${.TARGET}
GENSRCS+= unwind.h
@@ -517,7 +523,7 @@
${LIBIBERTY}: ${LIBIBERTY_OBJS}
@rm -f ${.TARGET}
- @${AR} cq ${.TARGET} `lorder ${LIBIBERTY_OBJS} | tsort -q`
+ @${AR} ${ARFLAGS} ${.TARGET} `lorder ${LIBIBERTY_OBJS} | tsort -q`
${RANLIB} ${.TARGET}
CLEANFILES+= ${LIBIBERTY} ${LIBIBERTY_OBJS}
Modified: trunk/gnu/usr.bin/cc/cc_tools/Makefile.dep
===================================================================
--- trunk/gnu/usr.bin/cc/cc_tools/Makefile.dep 2018-06-15 00:26:30 UTC (rev 10921)
+++ trunk/gnu/usr.bin/cc/cc_tools/Makefile.dep 2018-06-15 00:28:28 UTC (rev 10922)
@@ -1,4 +1,5 @@
-# $FreeBSD: src/gnu/usr.bin/cc/cc_tools/Makefile.dep,v 1.1 2007/05/19 04:25:58 kan Exp $
+# $MidnightBSD$
+# $FreeBSD: stable/10/gnu/usr.bin/cc/cc_tools/Makefile.dep 169718 2007-05-19 04:25:59Z kan $
errors.o: bconfig.h auto-host.h
Property changes on: trunk/gnu/usr.bin/cc/cc_tools/Makefile.dep
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/gnu/usr.bin/cc/cc_tools/arm.md.diff
===================================================================
--- trunk/gnu/usr.bin/cc/cc_tools/arm.md.diff 2018-06-15 00:26:30 UTC (rev 10921)
+++ trunk/gnu/usr.bin/cc/cc_tools/arm.md.diff 2018-06-15 00:28:28 UTC (rev 10922)
@@ -1,4 +1,4 @@
-$FreeBSD$
+$MidnightBSD$
Index: arm.md
===================================================================
RCS file: /cognet/ncvs/src/contrib/gcc/config/arm/arm.md,v
Property changes on: trunk/gnu/usr.bin/cc/cc_tools/arm.md.diff
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/gnu/usr.bin/cc/cc_tools/auto-host.h
===================================================================
--- trunk/gnu/usr.bin/cc/cc_tools/auto-host.h 2018-06-15 00:26:30 UTC (rev 10921)
+++ trunk/gnu/usr.bin/cc/cc_tools/auto-host.h 2018-06-15 00:28:28 UTC (rev 10922)
@@ -1,6 +1,7 @@
+/* $MidnightBSD$ */
/* auto-host.h. Generated by configure. */
/* config.in. Generated from configure.ac by autoheader. */
-/* $FreeBSD: src/gnu/usr.bin/cc/cc_tools/auto-host.h,v 1.21 2007/10/08 18:59:34 marius Exp $ */
+/* $FreeBSD: stable/10/gnu/usr.bin/cc/cc_tools/auto-host.h 238255 2012-07-08 17:02:14Z nwhitehorn $ */
/* Define as the number of bits in a byte, if \`limits.h' doesn't. */
#ifndef USED_FOR_TARGET
@@ -261,7 +262,7 @@
/* Define if your assembler supports R_PPC_REL16 relocs. */
#ifndef USED_FOR_TARGET
-/* #undef HAVE_AS_REL16 */
+#define HAVE_AS_REL16
#endif
@@ -326,6 +327,7 @@
#define HAVE_COMDAT_GROUP 1
#endif
+
/* Define to 1 if we found a declaration for 'abort', otherwise define to 0.
*/
#ifndef USED_FOR_TARGET
@@ -365,6 +367,7 @@
#define HAVE_DECL_CALLOC 1
#endif
+
/* Define to 1 if we found a declaration for 'clearerr_unlocked', otherwise
define to 0. */
#ifndef USED_FOR_TARGET
@@ -420,6 +423,7 @@
#define HAVE_DECL_FGETS_UNLOCKED 0
#endif
+
/* Define to 1 if we found a declaration for 'fileno_unlocked', otherwise
define to 0. */
#ifndef USED_FOR_TARGET
@@ -516,6 +520,7 @@
#define HAVE_DECL_GETRLIMIT 1
#endif
+
/* Define to 1 if we found a declaration for 'getrusage', otherwise define to
0. */
#ifndef USED_FOR_TARGET
Modified: trunk/gnu/usr.bin/cc/cc_tools/elfos-undef.h
===================================================================
--- trunk/gnu/usr.bin/cc/cc_tools/elfos-undef.h 2018-06-15 00:26:30 UTC (rev 10921)
+++ trunk/gnu/usr.bin/cc/cc_tools/elfos-undef.h 2018-06-15 00:28:28 UTC (rev 10922)
@@ -1,4 +1,5 @@
-/* $FreeBSD$ */
+/* $MidnightBSD$ */
+/* $FreeBSD: stable/10/gnu/usr.bin/cc/cc_tools/elfos-undef.h 182627 2008-09-01 18:46:03Z obrien $ */
/* This header exists to avoid editing contrib/gcc/config/elfos.h - which
isn't coded to be defensive as it should... */
Modified: trunk/gnu/usr.bin/cc/cc_tools/freebsd-native.h
===================================================================
--- trunk/gnu/usr.bin/cc/cc_tools/freebsd-native.h 2018-06-15 00:26:30 UTC (rev 10921)
+++ trunk/gnu/usr.bin/cc/cc_tools/freebsd-native.h 2018-06-15 00:28:28 UTC (rev 10922)
@@ -1,4 +1,5 @@
-/* $FreeBSD: src/gnu/usr.bin/cc/cc_tools/freebsd-native.h,v 1.28 2007/05/19 04:25:58 kan Exp $ */
+/* $MidnightBSD$ */
+/* $FreeBSD: stable/10/gnu/usr.bin/cc/cc_tools/freebsd-native.h 259563 2013-12-18 19:07:29Z pfg $ */
/* FREEBSD_NATIVE is defined when gcc is integrated into the FreeBSD
source tree so it can be configured appropriately without using
@@ -7,8 +8,8 @@
#define FREEBSD_NATIVE 1
/* Fake out gcc/config/freebsd<version>.h. */
-#define FBSD_MAJOR 9
-#define FBSD_CC_VER 900001 /* form like __FreeBSD_version */
+#define FBSD_MAJOR 10
+#define FBSD_CC_VER 1000001 /* form like __FreeBSD_version */
#undef SYSTEM_INCLUDE_DIR /* We don't need one for now. */
#undef TOOL_INCLUDE_DIR /* We don't need one for now. */
@@ -18,7 +19,7 @@
#define GPLUSPLUS_INCLUDE_DIR PREFIX"/include/c++/"GCCVER
#define GPLUSPLUS_BACKWARD_INCLUDE_DIR PREFIX"/include/c++/"GCCVER"/backward"
#define GCC_INCLUDE_DIR PREFIX"/include/gcc/"GCCVER
-#ifdef CROSS_COMPILE
+#ifdef CROSS_DIRECTORY_STRUCTURE
#define CROSS_INCLUDE_DIR PREFIX"/include"
#else
#define STANDARD_INCLUDE_DIR PREFIX"/include"
Modified: trunk/gnu/usr.bin/cc/cc_tools/freebsd.opt
===================================================================
--- trunk/gnu/usr.bin/cc/cc_tools/freebsd.opt 2018-06-15 00:26:30 UTC (rev 10921)
+++ trunk/gnu/usr.bin/cc/cc_tools/freebsd.opt 2018-06-15 00:28:28 UTC (rev 10922)
@@ -1,4 +1,5 @@
-; $FreeBSD: src/gnu/usr.bin/cc/cc_tools/freebsd.opt,v 1.1 2007/05/19 04:25:58 kan Exp $
+; $MidnightBSD$
+; $FreeBSD: stable/10/gnu/usr.bin/cc/cc_tools/freebsd.opt 169718 2007-05-19 04:25:59Z kan $
fformat-extensions
Common Report Var(flag_format_extensions) Init(0)
Property changes on: trunk/gnu/usr.bin/cc/cc_tools/freebsd.opt
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/gnu/usr.bin/cc/cc_tools/i386-freebsd.opt
===================================================================
--- trunk/gnu/usr.bin/cc/cc_tools/i386-freebsd.opt 2018-06-15 00:26:30 UTC (rev 10921)
+++ trunk/gnu/usr.bin/cc/cc_tools/i386-freebsd.opt 2018-06-15 00:28:28 UTC (rev 10922)
@@ -1,4 +1,4 @@
-; $FreeBSD: src/gnu/usr.bin/cc/cc_tools/i386-freebsd.opt,v 1.1 2007/05/19 04:25:58 kan Exp $
+; $MidnightBSD$
mno-align-long-strings
Target RejectNegative Report Mask(NO_ALIGN_LONG_STRINGS)
Property changes on: trunk/gnu/usr.bin/cc/cc_tools/i386-freebsd.opt
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/gnu/usr.bin/cc/cc_tools/size-host.h
===================================================================
--- trunk/gnu/usr.bin/cc/cc_tools/size-host.h 2018-06-15 00:26:30 UTC (rev 10921)
+++ trunk/gnu/usr.bin/cc/cc_tools/size-host.h 2018-06-15 00:28:28 UTC (rev 10922)
@@ -1,4 +1,5 @@
-/* $FreeBSD: src/gnu/usr.bin/cc/cc_tools/size-host.h,v 1.1 2007/05/19 04:25:58 kan Exp $ */
+/* $MidnightBSD$ */
+/* $FreeBSD: stable/10/gnu/usr.bin/cc/cc_tools/size-host.h 169718 2007-05-19 04:25:59Z kan $ */
#ifdef SIZEOF_INT
# undef SIZEOF_INT
More information about the Midnightbsd-cvs
mailing list