renesas-ra: Disable debugging option for RA4 to reduce code size.
Signed-off-by: Takeo Takahashi <takeo.takahashi.xv@renesas.com>
This commit is contained in:
parent
45a85f5a35
commit
376f15395c
|
@ -2,8 +2,8 @@
|
||||||
set -eu -o pipefail
|
set -eu -o pipefail
|
||||||
export BOARD="RA4M1_CLICKER"
|
export BOARD="RA4M1_CLICKER"
|
||||||
DT=`date +%Y%m%d%H%M`
|
DT=`date +%Y%m%d%H%M`
|
||||||
make DEBUG=1 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
make DEBUG=0 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
||||||
make DEBUG=1 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
make DEBUG=0 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
||||||
#
|
#
|
||||||
export BOARD="RA6M2_EK"
|
export BOARD="RA6M2_EK"
|
||||||
DT=`date +%Y%m%d%H%M`
|
DT=`date +%Y%m%d%H%M`
|
||||||
|
@ -12,13 +12,13 @@ make DEBUG=1 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
||||||
#
|
#
|
||||||
export BOARD="RA4M1_EK"
|
export BOARD="RA4M1_EK"
|
||||||
DT=`date +%Y%m%d%H%M`
|
DT=`date +%Y%m%d%H%M`
|
||||||
make DEBUG=1 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
make DEBUG=0 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
||||||
make DEBUG=1 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
make DEBUG=0 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
||||||
#
|
#
|
||||||
export BOARD="RA4W1_EK"
|
export BOARD="RA4W1_EK"
|
||||||
DT=`date +%Y%m%d%H%M`
|
DT=`date +%Y%m%d%H%M`
|
||||||
make DEBUG=1 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
make DEBUG=0 BOARD=${BOARD} clean 2>&1 | tee ${BOARD}_build_${DT}.log
|
||||||
make DEBUG=1 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
make DEBUG=0 BOARD=${BOARD} 2>&1 | tee -a ${BOARD}_build_${DT}.log
|
||||||
#
|
#
|
||||||
export BOARD="RA6M1_EK"
|
export BOARD="RA6M1_EK"
|
||||||
DT=`date +%Y%m%d%H%M`
|
DT=`date +%Y%m%d%H%M`
|
||||||
|
|
Loading…
Reference in New Issue