diff options
author | harold <harold@dev.site> | 2009-11-14 15:03:01 -0600 |
---|---|---|
committer | harold <harold@dev.site> | 2009-11-14 15:03:01 -0600 |
commit | 2cde67ddc4f34c499428911bdb9479b0c00c546a (patch) | |
tree | ccfe6c129d27c6365d1581743d826ac4456cda22 /config/arch | |
parent | 1ebe0b246a554f4029f5be336013cc8c9b7d427e (diff) | |
download | crosstool-ng-2cde67ddc4f34c499428911bdb9479b0c00c546a.tar.gz crosstool-ng-2cde67ddc4f34c499428911bdb9479b0c00c546a.tar.bz2 crosstool-ng-2cde67ddc4f34c499428911bdb9479b0c00c546a.zip |
arch: add s390 and s390x architectures and samples
Diffstat (limited to 'config/arch')
-rw-r--r-- | config/arch/s390.in | 12 | ||||
-rw-r--r-- | config/arch/s390x.in | 13 |
2 files changed, 25 insertions, 0 deletions
diff --git a/config/arch/s390.in b/config/arch/s390.in new file mode 100644 index 00000000..faf572e1 --- /dev/null +++ b/config/arch/s390.in @@ -0,0 +1,12 @@ +# s390 specific config options +# depends on EXPERIMENTAL + +config ARCH_s390 + select ARCH_USE_MMU + select ARCH_SUPPORT_FPU + select ARCH_DEFAULT_HAS_MMU + select ARCH_DEFAULT_BE + select CT_THREAD + help + The IBM ESA/390 architecture, as defined by: + http://publibfp.boulder.ibm.com/cgi-bin/bookmgr/BOOKS/dz9ar008/CCONTENTS diff --git a/config/arch/s390x.in b/config/arch/s390x.in new file mode 100644 index 00000000..3339274f --- /dev/null +++ b/config/arch/s390x.in @@ -0,0 +1,13 @@ +# s390x specific config options +# depends on EXPERIMENTAL + +config ARCH_s390x + select ARCH_64 + select ARCH_USE_MMU + select ARCH_SUPPORT_FPU + select ARCH_DEFAULT_HAS_MMU + select ARCH_DEFAULT_BE + select CT_THREAD + help + The IBM z/Architecture, as defined by: + http://publibfp.boulder.ibm.com/cgi-bin/bookmgr/BOOKS/dz9zr002/CCONTENTS |