diff options
author | John David Anglin <dave.anglin@bell.net> | 2023-11-11 15:56:27 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-11-25 15:41:47 +1300 |
commit | 5f3a1ef166b2d800f00f39bf1736fdbe54502b1f (patch) | |
tree | 3c3f7b4b04e37bc8506b390c5e9d11fdba393127 /scripts | |
parent | 032b3a003280f5ce3c5da2f100e91a0c184feabe (diff) | |
download | crosstool-ng-5f3a1ef166b2d800f00f39bf1736fdbe54502b1f.tar.gz crosstool-ng-5f3a1ef166b2d800f00f39bf1736fdbe54502b1f.tar.bz2 crosstool-ng-5f3a1ef166b2d800f00f39bf1736fdbe54502b1f.zip |
Add support for 32 and 64-bit PA-RISC linux build targets.
Note: The 64-bit target lacks a glibc port and doesn't build. Also,
there is no uclibc support.
Signed-off-by: John David Anglin <dave.anglin@bell.net>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/arch/parisc.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/build/arch/parisc.sh b/scripts/build/arch/parisc.sh new file mode 100644 index 00000000..fce59c31 --- /dev/null +++ b/scripts/build/arch/parisc.sh @@ -0,0 +1,14 @@ +# Compute parisc-specific values + +CT_DoArchTupleValues() +{ + # The architecture part of the tuple: + CT_TARGET_ARCH="${CT_ARCH}${CT_ARCH_SUFFIX}" +} + +CT_DoArchUClibcConfig() +{ + local cfg="${1}" + + CT_DoArchUClibcSelectArch "${cfg}" "parisc" +} |