Source-Changes-HG archive

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

[src/trunk]: src/external/gpl3/gcc mknative-gcc for arm and armeb.



details:   https://anonhg.NetBSD.org/src/rev/a2c918095fd2
branches:  trunk
changeset: 448566:a2c918095fd2
user:      mrg <mrg%NetBSD.org@localhost>
date:      Tue Feb 05 09:21:03 2019 +0000

description:
mknative-gcc for arm and armeb.

diffstat:

 external/gpl3/gcc/lib/libbacktrace/arch/arm/backtrace-supported.h   |   12 +-
 external/gpl3/gcc/lib/libbacktrace/arch/armeb/backtrace-supported.h |   12 +-
 external/gpl3/gcc/lib/libgcc/arch/arm/auto-target.h                 |   11 +-
 external/gpl3/gcc/lib/libgcc/arch/arm/defs.mk                       |    7 +-
 external/gpl3/gcc/lib/libgcc/arch/arm/gthr-defs.mk                  |    9 +
 external/gpl3/gcc/lib/libgcc/arch/armeb/auto-target.h               |   11 +-
 external/gpl3/gcc/lib/libgcc/arch/armeb/defs.mk                     |    7 +-
 external/gpl3/gcc/lib/libgcc/arch/armeb/gthr-defs.mk                |    9 +
 external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/defs.mk               |    8 +-
 external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/gcov-iov.h            |    6 +-
 external/gpl3/gcc/lib/libgcc/libgcov/arch/armeb/defs.mk             |    8 +-
 external/gpl3/gcc/lib/libgcc/libgcov/arch/armeb/gcov-iov.h          |    6 +-
 external/gpl3/gcc/lib/libgomp/arch/arm/config.h                     |   35 ++-
 external/gpl3/gcc/lib/libgomp/arch/arm/libgomp_f.h                  |    6 +-
 external/gpl3/gcc/lib/libgomp/arch/arm/omp.h                        |    4 +-
 external/gpl3/gcc/lib/libgomp/arch/armeb/config.h                   |   35 ++-
 external/gpl3/gcc/lib/libgomp/arch/armeb/libgomp_f.h                |    6 +-
 external/gpl3/gcc/lib/libgomp/arch/armeb/omp.h                      |    4 +-
 external/gpl3/gcc/lib/libobjc/arch/arm/defs.mk                      |    7 +-
 external/gpl3/gcc/lib/libobjc/arch/armeb/defs.mk                    |    7 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/c++config.h             |  142 ++++++---
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/cxxabi_tweaks.h         |   12 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/defs.mk                 |   12 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/gstdint.h               |    4 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/gthr-posix.h            |    6 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/gthr-single.h           |    6 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/arm/gthr.h                  |    6 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/c++config.h           |  142 ++++++---
 external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/cxxabi_tweaks.h       |   12 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/defs.mk               |   12 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/gstdint.h             |    4 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/gthr-posix.h          |    6 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/gthr-single.h         |    6 +-
 external/gpl3/gcc/lib/libstdc++-v3/arch/armeb/gthr.h                |    6 +-
 external/gpl3/gcc/usr.bin/common-target/arch/arm.mk                 |    5 +
 external/gpl3/gcc/usr.bin/common-target/arch/armeb.mk               |    5 +
 external/gpl3/gcc/usr.bin/gcc/arch/arm/auto-host.h                  |   58 +++-
 external/gpl3/gcc/usr.bin/gcc/arch/arm/bversion.h                   |    6 +-
 external/gpl3/gcc/usr.bin/gcc/arch/arm/configargs.h                 |    4 +-
 external/gpl3/gcc/usr.bin/gcc/arch/arm/defs.mk                      |   34 +-
 external/gpl3/gcc/usr.bin/gcc/arch/arm/gtyp-input.list              |   17 +-
 external/gpl3/gcc/usr.bin/gcc/arch/arm/insn-modes.h                 |   82 +++--
 external/gpl3/gcc/usr.bin/gcc/arch/arm/plugin-version.h             |   10 +-
 external/gpl3/gcc/usr.bin/gcc/arch/arm/tm.h                         |    6 +-
 external/gpl3/gcc/usr.bin/gcc/arch/armeb/auto-host.h                |   58 +++-
 external/gpl3/gcc/usr.bin/gcc/arch/armeb/bversion.h                 |    6 +-
 external/gpl3/gcc/usr.bin/gcc/arch/armeb/configargs.h               |    4 +-
 external/gpl3/gcc/usr.bin/gcc/arch/armeb/defs.mk                    |   34 +-
 external/gpl3/gcc/usr.bin/gcc/arch/armeb/gtyp-input.list            |   17 +-
 external/gpl3/gcc/usr.bin/gcc/arch/armeb/insn-modes.h               |   82 +++--
 external/gpl3/gcc/usr.bin/gcc/arch/armeb/plugin-version.h           |   10 +-
 external/gpl3/gcc/usr.bin/gcc/arch/armeb/tm.h                       |    6 +-
 external/gpl3/gcc/usr.bin/include/arch/arm.mk                       |    6 +-
 external/gpl3/gcc/usr.bin/include/arch/armeb.mk                     |    6 +-
 external/gpl3/gcc/usr.bin/libcpp/arch/arm/config.h                  |   10 +-
 external/gpl3/gcc/usr.bin/libcpp/arch/armeb/config.h                |   10 +-
 56 files changed, 700 insertions(+), 362 deletions(-)

diffs (truncated from 2712 to 300 lines):

diff -r 9c9c04bf61f1 -r a2c918095fd2 external/gpl3/gcc/lib/libbacktrace/arch/arm/backtrace-supported.h
--- a/external/gpl3/gcc/lib/libbacktrace/arch/arm/backtrace-supported.h Tue Feb 05 08:53:50 2019 +0000
+++ b/external/gpl3/gcc/lib/libbacktrace/arch/arm/backtrace-supported.h Tue Feb 05 09:21:03 2019 +0000
@@ -1,9 +1,9 @@
 /* This file is automatically generated.  DO NOT EDIT! */
-/* Generated from: NetBSD: mknative-gcc,v 1.92 2018/02/06 07:04:01 mrg Exp  */
-/* Generated from: NetBSD: mknative.common,v 1.15 2017/11/29 03:32:28 christos Exp  */
+/* Generated from: NetBSD: mknative-gcc,v 1.99 2019/02/04 01:46:59 mrg Exp  */
+/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp  */
 
 /* backtrace-supported.h.in -- Whether stack backtrace is supported.
-   Copyright (C) 2012-2016 Free Software Foundation, Inc.
+   Copyright (C) 2012-2017 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Google.
 
 Redistribution and use in source and binary forms, with or without
@@ -11,13 +11,13 @@
 met:
 
     (1) Redistributions of source code must retain the above copyright
-    notice, this list of conditions and the following disclaimer. 
+    notice, this list of conditions and the following disclaimer.
 
     (2) Redistributions in binary form must reproduce the above copyright
     notice, this list of conditions and the following disclaimer in
     the documentation and/or other materials provided with the
-    distribution.  
-    
+    distribution.
+
     (3) The name of the author may not be used to
     endorse or promote products derived from this software without
     specific prior written permission.
diff -r 9c9c04bf61f1 -r a2c918095fd2 external/gpl3/gcc/lib/libbacktrace/arch/armeb/backtrace-supported.h
--- a/external/gpl3/gcc/lib/libbacktrace/arch/armeb/backtrace-supported.h       Tue Feb 05 08:53:50 2019 +0000
+++ b/external/gpl3/gcc/lib/libbacktrace/arch/armeb/backtrace-supported.h       Tue Feb 05 09:21:03 2019 +0000
@@ -1,9 +1,9 @@
 /* This file is automatically generated.  DO NOT EDIT! */
-/* Generated from: NetBSD: mknative-gcc,v 1.92 2018/02/06 07:04:01 mrg Exp  */
-/* Generated from: NetBSD: mknative.common,v 1.15 2017/11/29 03:32:28 christos Exp  */
+/* Generated from: NetBSD: mknative-gcc,v 1.99 2019/02/04 01:46:59 mrg Exp  */
+/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp  */
 
 /* backtrace-supported.h.in -- Whether stack backtrace is supported.
-   Copyright (C) 2012-2016 Free Software Foundation, Inc.
+   Copyright (C) 2012-2017 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Google.
 
 Redistribution and use in source and binary forms, with or without
@@ -11,13 +11,13 @@
 met:
 
     (1) Redistributions of source code must retain the above copyright
-    notice, this list of conditions and the following disclaimer. 
+    notice, this list of conditions and the following disclaimer.
 
     (2) Redistributions in binary form must reproduce the above copyright
     notice, this list of conditions and the following disclaimer in
     the documentation and/or other materials provided with the
-    distribution.  
-    
+    distribution.
+
     (3) The name of the author may not be used to
     endorse or promote products derived from this software without
     specific prior written permission.
diff -r 9c9c04bf61f1 -r a2c918095fd2 external/gpl3/gcc/lib/libgcc/arch/arm/auto-target.h
--- a/external/gpl3/gcc/lib/libgcc/arch/arm/auto-target.h       Tue Feb 05 08:53:50 2019 +0000
+++ b/external/gpl3/gcc/lib/libgcc/arch/arm/auto-target.h       Tue Feb 05 09:21:03 2019 +0000
@@ -1,5 +1,5 @@
 /* This file is automatically generated.  DO NOT EDIT! */
-/* Generated from: NetBSD: mknative-gcc,v 1.93 2018/09/04 06:40:37 mrg Exp  */
+/* Generated from: NetBSD: mknative-gcc,v 1.99 2019/02/04 01:46:59 mrg Exp  */
 /* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp  */
 
 /* auto-target.h.  Generated from config.in by configure.  */
@@ -26,9 +26,6 @@
 /* Define if the system-provided CRTs are present on Solaris. */
 /* #undef HAVE_SOLARIS_CRTS */
 
-/* Define if the system-provided CRTs are present on Solaris. */
-/* #undef HAVE_SOLARIS_CRTS */
-
 /* Define to 1 if you have the <stdint.h> header file. */
 #define HAVE_STDINT_H 1
 
@@ -79,3 +76,9 @@
 
 /* Define to 1 if the target use emutls for thread-local storage. */
 /* #undef USE_EMUTLS */
+
+/* Number of bits in a file offset, on hosts where this is settable. */
+/* #undef _FILE_OFFSET_BITS */
+
+/* Define for large files, on AIX-style hosts. */
+/* #undef _LARGE_FILES */
diff -r 9c9c04bf61f1 -r a2c918095fd2 external/gpl3/gcc/lib/libgcc/arch/arm/defs.mk
--- a/external/gpl3/gcc/lib/libgcc/arch/arm/defs.mk     Tue Feb 05 08:53:50 2019 +0000
+++ b/external/gpl3/gcc/lib/libgcc/arch/arm/defs.mk     Tue Feb 05 09:21:03 2019 +0000
@@ -1,5 +1,5 @@
 # This file is automatically generated.  DO NOT EDIT!
-# Generated from: NetBSD: mknative-gcc,v 1.94 2018/09/04 22:57:25 mrg Exp 
+# Generated from: NetBSD: mknative-gcc,v 1.99 2019/02/04 01:46:59 mrg Exp 
 # Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp 
 #
 G_INCLUDES=-I. -I. -I../.././gcc -I${GNUHOSTDIST}/libgcc -I${GNUHOSTDIST}/libgcc/. -I${GNUHOSTDIST}/libgcc/../gcc -I${GNUHOSTDIST}/libgcc/../include 
@@ -9,7 +9,7 @@
 G_LIB2ADD_ST=
 G_LIB1ASMFUNCS=_thumb1_case_sqi _thumb1_case_uqi _thumb1_case_shi _thumb1_case_uhi _thumb1_case_si _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_tls _bb_init_func _call_via_rX _interwork_call_via_rX 
_arm_fixunsdfsi _arm_fixunssfsi _arm_floatdidf _arm_floatdisf _arm_floatundidf _arm_floatundisf _lshrdi3 _ashrdi3 _ashldi3 _clzsi2 _clzdi2 _ctzsi2
 G_LIB1ASMSRC=arm/lib1funcs.S
-G_LIB2_DIVMOD_FUNCS=_divdi3 _moddi3 _udivdi3 _umoddi3 _udiv_w_sdiv _udivmoddi4
+G_LIB2_DIVMOD_FUNCS=_divdi3 _moddi3 _divmoddi4 _udivdi3 _umoddi3 _udivmoddi4 _udiv_w_sdiv
 G_LIB2FUNCS_ST=_eprintf __gcc_bcmp
 G_LIB2FUNCS_EXTRA=
 G_LIBGCC2_CFLAGS=-O2  -DIN_GCC    -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition  -isystem ./include   -fPIC -fomit-frame-pointer 
-fno-inline -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector 
@@ -18,5 +18,4 @@
 G_SHLIB_MAPFILES=libgcc-std.ver
 G_SHLIB_NM_FLAGS=-pg
 G_NOEXCEPTION_FLAGS=-fno-exceptions -fno-rtti -fasynchronous-unwind-tables
-G_EXTRA_HEADERS=${GNUHOSTDIST}/gcc/config/arm/mmintrin.h ${GNUHOSTDIST}/gcc/config/arm/arm_neon.h ${GNUHOSTDIST}/gcc/config/arm/arm_acle.h ${GNUHOSTDIST}/gcc/ginclude/tgmath.h
-G_CONFIG_LINKS=${GNUHOSTDIST}/libgcc/enable-execute-stack-mprotect.c  enable-execute-stack.c ${GNUHOSTDIST}/libgcc/unwind-generic.h  unwind.h ${GNUHOSTDIST}/libgcc/config/no-unwind.h  
md-unwind-support.h ${GNUHOSTDIST}/libgcc/config/arm/sfp-machine.h  sfp-machine.h ${GNUHOSTDIST}/libgcc/gthr-posix.h  gthr-default.h 
+G_EXTRA_HEADERS=${GNUHOSTDIST}/gcc/config/arm/mmintrin.h ${GNUHOSTDIST}/gcc/config/arm/arm_neon.h ${GNUHOSTDIST}/gcc/config/arm/arm_acle.h ${GNUHOSTDIST}/gcc/config/arm/arm_fp16.h 
${GNUHOSTDIST}/gcc/config/arm/arm_cmse.h ${GNUHOSTDIST}/gcc/ginclude/tgmath.h
diff -r 9c9c04bf61f1 -r a2c918095fd2 external/gpl3/gcc/lib/libgcc/arch/arm/gthr-defs.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libgcc/arch/arm/gthr-defs.mk        Tue Feb 05 09:21:03 2019 +0000
@@ -0,0 +1,9 @@
+# This file is automatically generated.  DO NOT EDIT!
+# Generated from: NetBSD: mknative-gcc,v 1.99 2019/02/04 01:46:59 mrg Exp 
+# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp 
+#
+G_enable_execute_stack=enable-execute-stack-mprotect.c
+G_unwind_header=unwind-generic.h
+G_md_unwind_header=no-unwind.h
+G_sfp_machine_header=arm/sfp-machine.h
+G_thread_header=gthr-posix.h
diff -r 9c9c04bf61f1 -r a2c918095fd2 external/gpl3/gcc/lib/libgcc/arch/armeb/auto-target.h
--- a/external/gpl3/gcc/lib/libgcc/arch/armeb/auto-target.h     Tue Feb 05 08:53:50 2019 +0000
+++ b/external/gpl3/gcc/lib/libgcc/arch/armeb/auto-target.h     Tue Feb 05 09:21:03 2019 +0000
@@ -1,5 +1,5 @@
 /* This file is automatically generated.  DO NOT EDIT! */
-/* Generated from: NetBSD: mknative-gcc,v 1.93 2018/09/04 06:40:37 mrg Exp  */
+/* Generated from: NetBSD: mknative-gcc,v 1.99 2019/02/04 01:46:59 mrg Exp  */
 /* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp  */
 
 /* auto-target.h.  Generated from config.in by configure.  */
@@ -26,9 +26,6 @@
 /* Define if the system-provided CRTs are present on Solaris. */
 /* #undef HAVE_SOLARIS_CRTS */
 
-/* Define if the system-provided CRTs are present on Solaris. */
-/* #undef HAVE_SOLARIS_CRTS */
-
 /* Define to 1 if you have the <stdint.h> header file. */
 #define HAVE_STDINT_H 1
 
@@ -79,3 +76,9 @@
 
 /* Define to 1 if the target use emutls for thread-local storage. */
 /* #undef USE_EMUTLS */
+
+/* Number of bits in a file offset, on hosts where this is settable. */
+/* #undef _FILE_OFFSET_BITS */
+
+/* Define for large files, on AIX-style hosts. */
+/* #undef _LARGE_FILES */
diff -r 9c9c04bf61f1 -r a2c918095fd2 external/gpl3/gcc/lib/libgcc/arch/armeb/defs.mk
--- a/external/gpl3/gcc/lib/libgcc/arch/armeb/defs.mk   Tue Feb 05 08:53:50 2019 +0000
+++ b/external/gpl3/gcc/lib/libgcc/arch/armeb/defs.mk   Tue Feb 05 09:21:03 2019 +0000
@@ -1,5 +1,5 @@
 # This file is automatically generated.  DO NOT EDIT!
-# Generated from: NetBSD: mknative-gcc,v 1.94 2018/09/04 22:57:25 mrg Exp 
+# Generated from: NetBSD: mknative-gcc,v 1.99 2019/02/04 01:46:59 mrg Exp 
 # Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp 
 #
 G_INCLUDES=-I. -I. -I../.././gcc -I${GNUHOSTDIST}/libgcc -I${GNUHOSTDIST}/libgcc/. -I${GNUHOSTDIST}/libgcc/../gcc -I${GNUHOSTDIST}/libgcc/../include 
@@ -9,7 +9,7 @@
 G_LIB2ADD_ST=
 G_LIB1ASMFUNCS=_thumb1_case_sqi _thumb1_case_uqi _thumb1_case_shi _thumb1_case_uhi _thumb1_case_si _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_tls _bb_init_func _call_via_rX _interwork_call_via_rX 
_arm_fixunsdfsi _arm_fixunssfsi _arm_floatdidf _arm_floatdisf _arm_floatundidf _arm_floatundisf _lshrdi3 _ashrdi3 _ashldi3 _clzsi2 _clzdi2 _ctzsi2
 G_LIB1ASMSRC=arm/lib1funcs.S
-G_LIB2_DIVMOD_FUNCS=_divdi3 _moddi3 _udivdi3 _umoddi3 _udiv_w_sdiv _udivmoddi4
+G_LIB2_DIVMOD_FUNCS=_divdi3 _moddi3 _divmoddi4 _udivdi3 _umoddi3 _udivmoddi4 _udiv_w_sdiv
 G_LIB2FUNCS_ST=_eprintf __gcc_bcmp
 G_LIB2FUNCS_EXTRA=
 G_LIBGCC2_CFLAGS=-O2  -DIN_GCC    -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition  -isystem ./include   -fPIC -fomit-frame-pointer 
-fno-inline -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector 
@@ -18,5 +18,4 @@
 G_SHLIB_MAPFILES=libgcc-std.ver
 G_SHLIB_NM_FLAGS=-pg
 G_NOEXCEPTION_FLAGS=-fno-exceptions -fno-rtti -fasynchronous-unwind-tables
-G_EXTRA_HEADERS=${GNUHOSTDIST}/gcc/config/arm/mmintrin.h ${GNUHOSTDIST}/gcc/config/arm/arm_neon.h ${GNUHOSTDIST}/gcc/config/arm/arm_acle.h ${GNUHOSTDIST}/gcc/ginclude/tgmath.h
-G_CONFIG_LINKS=${GNUHOSTDIST}/libgcc/enable-execute-stack-mprotect.c  enable-execute-stack.c ${GNUHOSTDIST}/libgcc/unwind-generic.h  unwind.h ${GNUHOSTDIST}/libgcc/config/no-unwind.h  
md-unwind-support.h ${GNUHOSTDIST}/libgcc/config/arm/sfp-machine.h  sfp-machine.h ${GNUHOSTDIST}/libgcc/gthr-posix.h  gthr-default.h 
+G_EXTRA_HEADERS=${GNUHOSTDIST}/gcc/config/arm/mmintrin.h ${GNUHOSTDIST}/gcc/config/arm/arm_neon.h ${GNUHOSTDIST}/gcc/config/arm/arm_acle.h ${GNUHOSTDIST}/gcc/config/arm/arm_fp16.h 
${GNUHOSTDIST}/gcc/config/arm/arm_cmse.h ${GNUHOSTDIST}/gcc/ginclude/tgmath.h
diff -r 9c9c04bf61f1 -r a2c918095fd2 external/gpl3/gcc/lib/libgcc/arch/armeb/gthr-defs.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libgcc/arch/armeb/gthr-defs.mk      Tue Feb 05 09:21:03 2019 +0000
@@ -0,0 +1,9 @@
+# This file is automatically generated.  DO NOT EDIT!
+# Generated from: NetBSD: mknative-gcc,v 1.99 2019/02/04 01:46:59 mrg Exp 
+# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp 
+#
+G_enable_execute_stack=enable-execute-stack-mprotect.c
+G_unwind_header=unwind-generic.h
+G_md_unwind_header=no-unwind.h
+G_sfp_machine_header=arm/sfp-machine.h
+G_thread_header=gthr-posix.h
diff -r 9c9c04bf61f1 -r a2c918095fd2 external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/defs.mk
--- a/external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/defs.mk     Tue Feb 05 08:53:50 2019 +0000
+++ b/external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/defs.mk     Tue Feb 05 09:21:03 2019 +0000
@@ -1,8 +1,8 @@
 # This file is automatically generated.  DO NOT EDIT!
-# Generated from: NetBSD: mknative-gcc,v 1.86 2016/03/16 11:16:05 mrg Exp 
-# Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp 
+# Generated from: NetBSD: mknative-gcc,v 1.99 2019/02/04 01:46:59 mrg Exp 
+# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp 
 #
-G_LIBGCOV_MERGE=_gcov_merge_add _gcov_merge_single _gcov_merge_delta _gcov_merge_ior _gcov_merge_time_profile _gcov_merge_icall_topn
-G_LIBGCOV_PROFILER=_gcov_interval_profiler _gcov_pow2_profiler _gcov_one_value_profiler _gcov_indirect_call_profiler _gcov_average_profiler _gcov_ior_profiler _gcov_indirect_call_profiler_v2 
_gcov_time_profiler _gcov_indirect_call_topn_profiler
+G_LIBGCOV_MERGE=_gcov_merge_add _gcov_merge_single _gcov_merge_ior _gcov_merge_time_profile _gcov_merge_icall_topn
+G_LIBGCOV_PROFILER=_gcov_interval_profiler _gcov_interval_profiler_atomic _gcov_pow2_profiler _gcov_pow2_profiler_atomic _gcov_one_value_profiler _gcov_one_value_profiler_atomic 
_gcov_average_profiler _gcov_average_profiler_atomic _gcov_ior_profiler _gcov_ior_profiler_atomic _gcov_indirect_call_profiler_v2 _gcov_time_profiler _gcov_indirect_call_topn_profiler
 G_LIBGCOV_INTERFACE=_gcov_dump _gcov_flush _gcov_fork _gcov_execl _gcov_execlp _gcov_execle _gcov_execv _gcov_execvp _gcov_execve _gcov_reset
 G_LIBGCOV_DRIVER=_gcov
diff -r 9c9c04bf61f1 -r a2c918095fd2 external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/gcov-iov.h
--- a/external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/gcov-iov.h  Tue Feb 05 08:53:50 2019 +0000
+++ b/external/gpl3/gcc/lib/libgcc/libgcov/arch/arm/gcov-iov.h  Tue Feb 05 09:21:03 2019 +0000
@@ -1,8 +1,8 @@
 /* This file is automatically generated.  DO NOT EDIT! */
-/* Generated from: NetBSD: mknative-gcc,v 1.94 2018/09/04 22:57:25 mrg Exp  */
+/* Generated from: NetBSD: mknative-gcc,v 1.99 2019/02/04 01:46:59 mrg Exp  */
 /* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp  */
 
 /* Generated automatically by the program `build/gcov-iov'
-   from `6.5.0 (6 5) and  (*)'.  */
+   from `7.4.0 (7 4) and  (*)'.  */
 
-#define GCOV_VERSION ((gcov_unsigned_t)0x3630352a)  /* 605* */
+#define GCOV_VERSION ((gcov_unsigned_t)0x4137342a)  /* A74* */
diff -r 9c9c04bf61f1 -r a2c918095fd2 external/gpl3/gcc/lib/libgcc/libgcov/arch/armeb/defs.mk
--- a/external/gpl3/gcc/lib/libgcc/libgcov/arch/armeb/defs.mk   Tue Feb 05 08:53:50 2019 +0000
+++ b/external/gpl3/gcc/lib/libgcc/libgcov/arch/armeb/defs.mk   Tue Feb 05 09:21:03 2019 +0000
@@ -1,8 +1,8 @@
 # This file is automatically generated.  DO NOT EDIT!
-# Generated from: NetBSD: mknative-gcc,v 1.86 2016/03/16 11:16:05 mrg Exp 
-# Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp 
+# Generated from: NetBSD: mknative-gcc,v 1.99 2019/02/04 01:46:59 mrg Exp 
+# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp 
 #
-G_LIBGCOV_MERGE=_gcov_merge_add _gcov_merge_single _gcov_merge_delta _gcov_merge_ior _gcov_merge_time_profile _gcov_merge_icall_topn
-G_LIBGCOV_PROFILER=_gcov_interval_profiler _gcov_pow2_profiler _gcov_one_value_profiler _gcov_indirect_call_profiler _gcov_average_profiler _gcov_ior_profiler _gcov_indirect_call_profiler_v2 
_gcov_time_profiler _gcov_indirect_call_topn_profiler
+G_LIBGCOV_MERGE=_gcov_merge_add _gcov_merge_single _gcov_merge_ior _gcov_merge_time_profile _gcov_merge_icall_topn
+G_LIBGCOV_PROFILER=_gcov_interval_profiler _gcov_interval_profiler_atomic _gcov_pow2_profiler _gcov_pow2_profiler_atomic _gcov_one_value_profiler _gcov_one_value_profiler_atomic 
_gcov_average_profiler _gcov_average_profiler_atomic _gcov_ior_profiler _gcov_ior_profiler_atomic _gcov_indirect_call_profiler_v2 _gcov_time_profiler _gcov_indirect_call_topn_profiler
 G_LIBGCOV_INTERFACE=_gcov_dump _gcov_flush _gcov_fork _gcov_execl _gcov_execlp _gcov_execle _gcov_execv _gcov_execvp _gcov_execve _gcov_reset
 G_LIBGCOV_DRIVER=_gcov
diff -r 9c9c04bf61f1 -r a2c918095fd2 external/gpl3/gcc/lib/libgcc/libgcov/arch/armeb/gcov-iov.h
--- a/external/gpl3/gcc/lib/libgcc/libgcov/arch/armeb/gcov-iov.h        Tue Feb 05 08:53:50 2019 +0000
+++ b/external/gpl3/gcc/lib/libgcc/libgcov/arch/armeb/gcov-iov.h        Tue Feb 05 09:21:03 2019 +0000
@@ -1,8 +1,8 @@
 /* This file is automatically generated.  DO NOT EDIT! */
-/* Generated from: NetBSD: mknative-gcc,v 1.94 2018/09/04 22:57:25 mrg Exp  */
+/* Generated from: NetBSD: mknative-gcc,v 1.99 2019/02/04 01:46:59 mrg Exp  */
 /* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp  */
 
 /* Generated automatically by the program `build/gcov-iov'
-   from `6.5.0 (6 5) and  (*)'.  */
+   from `7.4.0 (7 4) and  (*)'.  */
 
-#define GCOV_VERSION ((gcov_unsigned_t)0x3630352a)  /* 605* */
+#define GCOV_VERSION ((gcov_unsigned_t)0x4137342a)  /* A74* */
diff -r 9c9c04bf61f1 -r a2c918095fd2 external/gpl3/gcc/lib/libgomp/arch/arm/config.h
--- a/external/gpl3/gcc/lib/libgomp/arch/arm/config.h   Tue Feb 05 08:53:50 2019 +0000
+++ b/external/gpl3/gcc/lib/libgomp/arch/arm/config.h   Tue Feb 05 09:21:03 2019 +0000
@@ -1,6 +1,6 @@
 /* This file is automatically generated.  DO NOT EDIT! */
-/* Generated from: NetBSD: mknative-gcc,v 1.92 2018/02/06 07:04:01 mrg Exp  */
-/* Generated from: NetBSD: mknative.common,v 1.15 2017/11/29 03:32:28 christos Exp  */
+/* Generated from: NetBSD: mknative-gcc,v 1.99 2019/02/04 01:46:59 mrg Exp  */
+/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp  */
 
 /* config.h.  Generated from config.h.in by configure.  */
 /* config.h.in.  Generated from configure.ac by autoheader.  */
@@ -29,9 +29,21 @@
 /* Define to 1 if you have the <dlfcn.h> header file. */
 #define HAVE_DLFCN_H 1
 
+/* Define to 1 if you have the `getegid' function. */
+#define HAVE_GETEGID 1
+
+/* Define to 1 if you have the `geteuid' function. */
+#define HAVE_GETEUID 1
+
+/* Define to 1 if you have the `getgid' function. */
+#define HAVE_GETGID 1
+
 /* Define to 1 if you have the `getloadavg' function. */
 #define HAVE_GETLOADAVG 1
 
+/* Define to 1 if you have the `getuid' function. */
+#define HAVE_GETUID 1
+
 /* Define to 1 if you have the <inttypes.h> header file. */
 #define HAVE_INTTYPES_H 1
 



Home | Main Index | Thread Index | Old Index