diff options
| author | Michael Meissner | 1995-05-09 20:22:38 +0000 |
|---|---|---|
| committer | Michael Meissner | 1995-05-09 20:22:38 +0000 |
| commit | 3cbdcdc70f7694e5a884460b3984d63c79beb467 (patch) | |
| tree | 6f4931d948b2c56ecf6d363024af4a513317a74f | |
| parent | e468fb381be474b8994998424b42804557457c43 (diff) | |
| download | emacs-3cbdcdc70f7694e5a884460b3984d63c79beb467.tar.gz emacs-3cbdcdc70f7694e5a884460b3984d63c79beb467.zip | |
Add powerpc little endian support; Add powerpc variants; Add pentium variants
| -rwxr-xr-x | config.sub | 37 |
1 files changed, 30 insertions, 7 deletions
diff --git a/config.sub b/config.sub index 70f3ba29320..0309e4e5fb9 100755 --- a/config.sub +++ b/config.sub | |||
| @@ -131,7 +131,7 @@ case $basic_machine in | |||
| 131 | tahoe | i[345]86 | i860 | m68k | m68000 | m88k | ns32k | arm | pyramid \ | 131 | tahoe | i[345]86 | i860 | m68k | m68000 | m88k | ns32k | arm | pyramid \ |
| 132 | | tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \ | 132 | | tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \ |
| 133 | | alpha | we32k | ns16k | clipper | sparclite | i370 | sh \ | 133 | | alpha | we32k | ns16k | clipper | sparclite | i370 | sh \ |
| 134 | | powerpc | sparc64 | 1750a | dsp16xx | mips64 | mipsel \ | 134 | | powerpc | powerpcle | sparc64 | 1750a | dsp16xx | mips64 | mipsel \ |
| 135 | | pdp11 | mips64el | mips64orion | mips64orionel \ | 135 | | pdp11 | mips64el | mips64orion | mips64orionel \ |
| 136 | | sparc) | 136 | | sparc) |
| 137 | basic_machine=$basic_machine-unknown | 137 | basic_machine=$basic_machine-unknown |
| @@ -144,11 +144,11 @@ case $basic_machine in | |||
| 144 | # Recognize the basic CPU types with company name. | 144 | # Recognize the basic CPU types with company name. |
| 145 | vax-* | tahoe-* | i[345]86-* | i860-* | m68k-* | m68000-* | m88k-* \ | 145 | vax-* | tahoe-* | i[345]86-* | i860-* | m68k-* | m68000-* | m88k-* \ |
| 146 | | sparc-* | ns32k-* | fx80-* | arm-* | c[123]* \ | 146 | | sparc-* | ns32k-* | fx80-* | arm-* | c[123]* \ |
| 147 | | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \ | 147 | | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* | power-* \ |
| 148 | | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \ | 148 | | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \ |
| 149 | | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \ | 149 | | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \ |
| 150 | | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \ | 150 | | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \ |
| 151 | | pdp11-* | sh-* | powerpc-* | sparc64-* | mips64-* | mipsel-* \ | 151 | | pdp11-* | sh-* | powerpc-* | powerpcle-* | sparc64-* | mips64-* | mipsel-* \ |
| 152 | | mips64el-* | mips64orion-* | mips64orionel-*) | 152 | | mips64el-* | mips64orion-* | mips64orionel-*) |
| 153 | ;; | 153 | ;; |
| 154 | # Recognize the various machine names and aliases which stand | 154 | # Recognize the various machine names and aliases which stand |
| @@ -417,14 +417,37 @@ case $basic_machine in | |||
| 417 | pc532 | pc532-*) | 417 | pc532 | pc532-*) |
| 418 | basic_machine=ns32k-pc532 | 418 | basic_machine=ns32k-pc532 |
| 419 | ;; | 419 | ;; |
| 420 | pentium-*) | 420 | pentium | p5 | p6) |
| 421 | # We will change tis to say i586 once there has been | 421 | # We don't have specific support for the Intel Pentium (p6) followon yet, so just call it a Pentium |
| 422 | # time for various packages to start to recognize that. | 422 | basic_machine=i586-intel |
| 423 | basic_machine=i486-`echo $basic_machine | sed 's/^[^-]*-//'` | 423 | ;; |
| 424 | pentium-* | p5-* | p6-*) | ||
| 425 | # We don't have specific support for the Intel Pentium (p6) followon yet, so just call it a Pentium | ||
| 426 | basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` | ||
| 427 | ;; | ||
| 428 | k5) | ||
| 429 | # We don't have specific support for AMD's K5 yet, so just call it a Pentium | ||
| 430 | basic_machine=i586-amd | ||
| 431 | ;; | ||
| 432 | nexen) | ||
| 433 | # We don't have specific support for Nexgen yet, so just call it a Pentium | ||
| 434 | basic_machine=i586-nexgen | ||
| 424 | ;; | 435 | ;; |
| 425 | pn) | 436 | pn) |
| 426 | basic_machine=pn-gould | 437 | basic_machine=pn-gould |
| 427 | ;; | 438 | ;; |
| 439 | power) basic_machine=rs6000-ibm | ||
| 440 | ;; | ||
| 441 | ppc) basic_machine=powerpc-unknown | ||
| 442 | ;; | ||
| 443 | ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` | ||
| 444 | ;; | ||
| 445 | ppcle | powerpclittle | ppc-le | powerpc-little) | ||
| 446 | basic_machine=powerpcle-unknown | ||
| 447 | ;; | ||
| 448 | ppcle-* | powerpclittle-*) | ||
| 449 | basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` | ||
| 450 | ;; | ||
| 428 | ps2) | 451 | ps2) |
| 429 | basic_machine=i386-ibm | 452 | basic_machine=i386-ibm |
| 430 | ;; | 453 | ;; |