diff options
author | John David Anglin <dave.anglin@bell.net> | 2023-11-11 16:00:18 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-11-25 15:41:47 +1300 |
commit | 1ea6e309e514dc7af3b63bc54d844f8294d27efa (patch) | |
tree | 3b2d20877718b9918bc20eeefaf12239c88fe65f /scripts | |
parent | 5f3a1ef166b2d800f00f39bf1736fdbe54502b1f (diff) | |
download | crosstool-ng-1ea6e309e514dc7af3b63bc54d844f8294d27efa.tar.gz crosstool-ng-1ea6e309e514dc7af3b63bc54d844f8294d27efa.tar.bz2 crosstool-ng-1ea6e309e514dc7af3b63bc54d844f8294d27efa.zip |
Map parisc64 to hppa64 in config.sub.
Debian and Gentoo use hppa/hppa64 for the PA-RISC ports. These are the
proper CPU designations for configuring most packages.
Signed-off-by: John David Anglin <dave.anglin@bell.net>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/config.sub | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/config.sub b/scripts/config.sub index baf1512b..4ed12764 100755 --- a/scripts/config.sub +++ b/scripts/config.sub @@ -491,6 +491,10 @@ case $1 in basic_machine=hppa-unknown basic_os=linux ;; + parisc64) + basic_machine=hppa64-unknown + basic_os=linux + ;; psp) basic_machine=mipsallegrexel-sony basic_os=psp @@ -1072,6 +1076,10 @@ case $cpu-$vendor in cpu=hppa basic_os=linux ;; + parisc64-*) + cpu=hppa64 + basic_os=linux + ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) cpu=i586 ;; |