Source-Changes-HG archive

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

[src/trunk]: src/external/gpl3/gcc/lib/libstdc++-v3/include/bits/arch add pow...



details:   https://anonhg.NetBSD.org/src/rev/8bea8e093774
branches:  trunk
changeset: 331741:8bea8e093774
user:      matt <matt%NetBSD.org@localhost>
date:      Fri Aug 22 15:27:50 2014 +0000

description:
add powerpc64 support

diffstat:

 external/gpl3/gcc/lib/libstdc++-v3/include/bits/arch/Makefile           |  7 ++++++-
 external/gpl3/gcc/lib/libstdc++-v3/include/bits/arch/powerpc/Makefile   |  4 ++++
 external/gpl3/gcc/lib/libstdc++-v3/include/bits/arch/powerpc64/Makefile |  4 ++++
 3 files changed, 14 insertions(+), 1 deletions(-)

diffs (37 lines):

diff -r 3ff7ba33a10e -r 8bea8e093774 external/gpl3/gcc/lib/libstdc++-v3/include/bits/arch/Makefile
--- a/external/gpl3/gcc/lib/libstdc++-v3/include/bits/arch/Makefile     Fri Aug 22 15:26:28 2014 +0000
+++ b/external/gpl3/gcc/lib/libstdc++-v3/include/bits/arch/Makefile     Fri Aug 22 15:27:50 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.1 2014/03/01 10:00:47 mrg Exp $
+#      $NetBSD: Makefile,v 1.2 2014/08/22 15:27:50 matt Exp $
 
 # install multilib c++config.h files
 
@@ -17,6 +17,11 @@
 CXXCONFIGARGS= mips64 _ABI64 mipso32 _ABIO32 mips32
 .endif
 
+.if ${MACHINE_ARCH} == "powerpc64"
+SUBDIR=                powerpc powerpc64
+CXXCONFIGARGS= powerpc64 _LP64 powerpc
+.endif
+
 # XXX arm variants are missing, but hopefully won't need them
 # until aarch64 anyway.
 
diff -r 3ff7ba33a10e -r 8bea8e093774 external/gpl3/gcc/lib/libstdc++-v3/include/bits/arch/powerpc/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libstdc++-v3/include/bits/arch/powerpc/Makefile     Fri Aug 22 15:27:50 2014 +0000
@@ -0,0 +1,4 @@
+#      $NetBSD: Makefile,v 1.1 2014/08/22 15:27:51 matt Exp $
+
+GCC_MACHINE_ARCH=powerpc
+.include "../Makefile.arch_bits"
diff -r 3ff7ba33a10e -r 8bea8e093774 external/gpl3/gcc/lib/libstdc++-v3/include/bits/arch/powerpc64/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/gpl3/gcc/lib/libstdc++-v3/include/bits/arch/powerpc64/Makefile   Fri Aug 22 15:27:50 2014 +0000
@@ -0,0 +1,4 @@
+#      $NetBSD: Makefile,v 1.1 2014/08/22 15:27:51 matt Exp $
+
+GCC_MACHINE_ARCH=powerpc64
+.include "../Makefile.arch_bits"



Home | Main Index | Thread Index | Old Index