-
Notifications
You must be signed in to change notification settings - Fork 11
/
build-renesas-rx-toolchain.sh
executable file
·23 lines (20 loc) · 1.13 KB
/
build-renesas-rx-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 Renesas RX processor ##
## ##
##---------------------------------------------------------------------------##
## File: build-renesas-toolchain.sh ##
## Author: Ulrich Becker <u.becker@gsi.de> ##
## Company: GSI Helmholtz Centre for Heavy Ion Research GmbH ##
## Date: 13.08.2019 ##
## Revision: ##
###############################################################################
TARGET="rx-elf"
ENABLE_CPP=true
make_third_stage()
{
[ $VERBOSE ] && echo "INFO: Nothing additional work for target RENESAS RX in third stage."
}
source build-toolchain.sh
#=================================== EOF ======================================