-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild-m68k-toolchain.sh
executable file
·23 lines (20 loc) · 1.13 KB
/
build-m68k-toolchain.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#/usr/bin/sh
###############################################################################
## ##
## Script to build GCC toolchain for Motorola 68000-family (m68k) ##
## ##
##---------------------------------------------------------------------------##
## File: build-m68k-toolchain.sh ##
## Author: Ulrich Becker <u.becker@gsi.de> ##
## Company: GSI Helmholtz Centre for Heavy Ion Research GmbH ##
## Date: 27.11.2019 ##
## Revision: ##
###############################################################################
TARGET="m68k-elf"
ENABLE_CPP=true
make_third_stage()
{
[ $VERBOSE ] && echo "INFO: Nothing additional work for target Motorola M68000 in third stage."
}
source build-toolchain.sh
#=================================== EOF ======================================