-
Notifications
You must be signed in to change notification settings - Fork 11
/
build-lm32-toolchain.sh
executable file
·23 lines (20 loc) · 1.12 KB
/
build-lm32-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 LatticeMicro32 (LM32) ##
## ##
##---------------------------------------------------------------------------##
## File: build-lm32-toolchain.sh ##
## Author: Ulrich Becker <[email protected]> ##
## Company: GSI Helmholtz Centre for Heavy Ion Research GmbH ##
## Date: 23.10.2018 ##
## Revision: ##
###############################################################################
TARGET="lm32-elf"
ENABLE_CPP=true
make_third_stage()
{
[ $VERBOSE ] && echo "INFO: Nothing additional work for target LM32 in third stage."
}
source build-toolchain.sh
#=================================== EOF ======================================