diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/config.guess | 2 | ||||
-rwxr-xr-x | scripts/config.sub | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/scripts/config.guess b/scripts/config.guess index 5432d58986..178fe6f996 100755 --- a/scripts/config.guess +++ b/scripts/config.guess @@ -894,6 +894,8 @@ EOF rm -f $dummy.c $dummy elif test "${UNAME_MACHINE}" = "s390"; then echo s390-ibm-linux && exit 0 + elif test "${UNAME_MACHINE}" = "s390x"; then + echo s390x-ibm-linux && exit 0 elif test "${UNAME_MACHINE}" = "x86_64"; then echo x86_64-unknown-linux-gnu && exit 0 elif test "${UNAME_MACHINE}" = "parisc" -o "${UNAME_MACHINE}" = "hppa"; then diff --git a/scripts/config.sub b/scripts/config.sub index 3cccc5acd7..ccc8da1836 100755 --- a/scripts/config.sub +++ b/scripts/config.sub @@ -259,7 +259,7 @@ case $basic_machine in | mips64el-* | mips64orion-* | mips64orionel-* \ | mips64vr4100-* | mips64vr4100el-* | mips64vr4300-* | mips64vr4300el-* \ | mipstx39-* | mipstx39el-* | mcore-* \ - | f301-* | armv*-* | s390-* | sv1-* | t3e-* \ + | f301-* | armv*-* | s390-* | s390x-* | sv1-* | t3e-* \ | m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | d10v-* \ | thumb-* | v850-* | d30v-* | tic30-* | c30-* | fr30-* \ | bs2000-* | tic54x-* | c54x-* | x86_64-*) |