commit: 97efbe3a9a544e4e295285cf17928ffd62031dfc Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> AuthorDate: Tue Nov 21 22:59:39 2017 +0000 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> CommitDate: Tue Nov 21 22:59:39 2017 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=97efbe3a
Add 'mmix' target, bug #609602 Add basic support for MMIX by Matthias Maier. Usage example: $ crossdev -t mmix Closes: https://bugs.gentoo.org/609602 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org> crossdev | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/crossdev b/crossdev index 7eca6fc..2d937d1 100755 --- a/crossdev +++ b/crossdev @@ -139,6 +139,7 @@ parse_target() { - h8300 http://h8300-hms.sourceforge.net/ - mingw32 http://www.mingw.org/ - mingw64 http://mingw-w64.sourceforge.net/ + - mmix http://www-cs-faculty.stanford.edu/~knuth/mmix.html - msp430 http://www.ti.com/msp430 - nds32 http://github.com/nds32 - nios2 http://www.altera.com/products/ip/processors/nios2/ni2-index.html @@ -241,6 +242,13 @@ parse_target() { STAGE_DEFAULT=${STAGE_C_ONLY} WITH_DEF_HEADERS="no";; + # added in bug #609602 + mmix*) + KPKG="[none]" + LPKG="newlib" + STAGE_DEFAULT=${STAGE_LIBC} + WITH_DEF_HEADERS="no";; + # due to upstream lameness, build C/C++ at first glance *-cygwin) GUSE_DISABLE_STAGE_1+=" -nocxx cxx";;
