Add build support for Linux/m68k (#11366)

* compiler: Add m68k as target architecture on Linux

* build.sh: Enable CPU detection for m68k
This commit is contained in:
John Paul Adrian Glaubitz
2019-06-02 00:20:28 +02:00
committed by Andreas Rumpf
parent af0ae5830f
commit ec038998f0
2 changed files with 3 additions and 1 deletions

View File

@@ -158,6 +158,8 @@ case $ucpu in
mycpu="powerpc64" ;;
*power*|*ppc* )
mycpu="powerpc" ;;
*m68k*)
mycpu="m68k" ;;
*mips* )
mycpu="$("$CC" -dumpmachine | sed 's/-.*//')"
case $mycpu in