Source-Changes-HG archive

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

[src/trunk]: src/gnu/dist Add mipseb support to egcs distfiles.



details:   https://anonhg.NetBSD.org/src/rev/d9f54eabc288
branches:  trunk
changeset: 482597:d9f54eabc288
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Wed Feb 16 11:28:45 2000 +0000

description:
Add mipseb support to egcs distfiles.

diffstat:

 gnu/dist/config.sub               |   4 ++--
 gnu/dist/gcc/config.sub           |   4 ++--
 gnu/dist/gcc/config/mips/t-mipseb |   1 +
 gnu/dist/gcc/config/mips/t-mipsel |   1 +
 gnu/dist/gcc/configure            |  12 +++++++++++-
 gnu/dist/gcc/configure.in         |  12 +++++++++++-
 6 files changed, 28 insertions(+), 6 deletions(-)

diffs (110 lines):

diff -r 8d33e582db01 -r d9f54eabc288 gnu/dist/config.sub
--- a/gnu/dist/config.sub       Wed Feb 16 11:23:48 2000 +0000
+++ b/gnu/dist/config.sub       Wed Feb 16 11:28:45 2000 +0000
@@ -166,7 +166,7 @@
                | arme[lb] | pyramid | mn10300 \
                | tron | a29k | 580 | i960 | h8300 | hppa | hppa1.0 | hppa1.1 \
                | alpha | we32k | ns16k | clipper | i370 | sh \
-               | powerpc | powerpcle | 1750a | dsp16xx | mips64 | mipsel \
+               | powerpc | powerpcle | 1750a | dsp16xx | mips64 | mipsel | mipseb \
                | pdp11 | mips64el | mips64orion | mips64orionel \
                | sparc | sparclet | sparclite | sparc64)
                basic_machine=$basic_machine-unknown
@@ -215,7 +215,7 @@
              | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \
              | hppa-* | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \
              | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \
-             | pdp11-* | sh-* | powerpc-* | powerpcle-* | sparc64-* | mips64-* | mipsel-* \
+             | pdp11-* | sh-* | powerpc-* | powerpcle-* | sparc64-* | mips64-* | mipsel-* | mipseb-* \
              | mips64el-* | mips64orion-* | mips64orionel-* | f301-*)
                ;;
        m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | h8500-* | d10v-*) # CYGNUS LOCAL
diff -r 8d33e582db01 -r d9f54eabc288 gnu/dist/gcc/config.sub
--- a/gnu/dist/gcc/config.sub   Wed Feb 16 11:23:48 2000 +0000
+++ b/gnu/dist/gcc/config.sub   Wed Feb 16 11:28:45 2000 +0000
@@ -154,7 +154,7 @@
                | tron | a29k | 580 | i960 | h8300 | hppa | hppa1.0 | hppa1.1 \
                | alpha | alphaev5 | alphaev56 | we32k | ns16k | clipper \
                | i370 | sh | powerpc | powerpcle | 1750a | dsp16xx | pdp11 \
-               | mips64 | mipsel | mips64el | mips64orion | mips64orionel \
+               | mips64 | mipsel | mipseb | mips64el | mips64orion | mips64orionel \
                | mipstx39 | mipstx39el \
                | sparc | sparclet | sparclite | sparc64 | v850)
                basic_machine=$basic_machine-unknown
@@ -182,7 +182,7 @@
              | alpha-* | alphaev5-* | alphaev56-* | we32k-* | cydra-* \
              | ns16k-* | pn-* | np1-* | xps100-* | clipper-* | orion-* \
              | sparclite-* | pdp11-* | sh-* | powerpc-* | powerpcle-* \
-             | sparc64-* | mips64-* | mipsel-* \
+             | sparc64-* | mips64-* | mipsel-* | mipseb-* \
              | mips64el-* | mips64orion-* | mips64orionel-*  \
              | mipstx39-* | mipstx39el-* \
              | f301-*)
diff -r 8d33e582db01 -r d9f54eabc288 gnu/dist/gcc/config/mips/t-mipseb
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/gnu/dist/gcc/config/mips/t-mipseb Wed Feb 16 11:28:45 2000 +0000
@@ -0,0 +1,1 @@
+T_CFLAGS +=-DTARGET_ENDIAN_DEFAULT=MASK_BIG_ENDIAN
diff -r 8d33e582db01 -r d9f54eabc288 gnu/dist/gcc/config/mips/t-mipsel
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/gnu/dist/gcc/config/mips/t-mipsel Wed Feb 16 11:28:45 2000 +0000
@@ -0,0 +1,1 @@
+T_CFLAGS +=-DTARGET_ENDIAN_DEFAULT=0
diff -r 8d33e582db01 -r d9f54eabc288 gnu/dist/gcc/configure
--- a/gnu/dist/gcc/configure    Wed Feb 16 11:23:48 2000 +0000
+++ b/gnu/dist/gcc/configure    Wed Feb 16 11:28:45 2000 +0000
@@ -3991,7 +3991,16 @@
                xm_file=mips/xm-netbsd.h
                # On NetBSD, the headers are already okay, except for math.h.
                fixincludes=fixinc.wrap
-               tmake_file=t-netbsd
+               tmake_file="t-netbsd mips/t-mipsel"
+               xmake_file=none
+               ;;
+       mipseb-*-netbsd*)
+               tm_file=mips/netbsd.h
+               xm_file=mips/xm-netbsd.h
+               # On NetBSD, the headers are already okay, except for math.h.
+               fixincludes=fixinc.wrap
+               tmake_file="t-netbsd mips/t-mipseb"
+               xmake_file=none
                ;;
        mips*el-*-openbsd*)     # mips little endian
                target_cpu_default="MASK_GAS|MASK_ABICALLS"
@@ -4387,6 +4396,7 @@
                # On NetBSD, the headers are already okay, except for math.h.
                fixincludes=fixinc.wrap
                tmake_file=t-netbsd
+               xmake_file=none
                ;;
        powerpc-*-eabiaix*)
                tm_file=rs6000/eabiaix.h
diff -r 8d33e582db01 -r d9f54eabc288 gnu/dist/gcc/configure.in
--- a/gnu/dist/gcc/configure.in Wed Feb 16 11:23:48 2000 +0000
+++ b/gnu/dist/gcc/configure.in Wed Feb 16 11:28:45 2000 +0000
@@ -2012,7 +2012,16 @@
                xm_file=mips/xm-netbsd.h
                # On NetBSD, the headers are already okay, except for math.h.
                fixincludes=fixinc.wrap
-               tmake_file=t-netbsd
+               tmake_file="t-netbsd mips/t-mipsel"
+               xmake_file=none
+               ;;
+       mipseb-*-netbsd*)
+               tm_file=mips/netbsd.h
+               xm_file=mips/xm-netbsd.h
+               # On NetBSD, the headers are already okay, except for math.h.
+               fixincludes=fixinc.wrap
+               tmake_file="t-netbsd mips/t-mipseb"
+               xmake_file=none
                ;;
        mips*el-*-openbsd*)     # mips little endian
                target_cpu_default="MASK_GAS|MASK_ABICALLS"
@@ -2408,6 +2417,7 @@
                # On NetBSD, the headers are already okay, except for math.h.
                fixincludes=fixinc.wrap
                tmake_file=t-netbsd
+               xmake_file=none
                ;;
        powerpc-*-eabiaix*)
                tm_file=rs6000/eabiaix.h



Home | Main Index | Thread Index | Old Index