mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-23 04:49:45 +00:00
3705eaedac
* m2ctx.py * check warnings * vimode includes * bgcheck includes * padmgr includes * sprintf * z_std_dma * sys_ucode * z64voice * z64lib * z64effect_ss * segment_symbols.h * padutils * main * stdarg.h * fault * bzero * undefined_syms * z64rumble
127 lines
2.7 KiB
Bash
Executable File
127 lines
2.7 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# This script can be used when you want to test locally the amount of warnings produced by your changes before doing a PR.
|
|
|
|
# Terminal colour codes
|
|
# when $TERM is empty (non-interactive shell), then expand tput with '-T xterm-256color'
|
|
[[ ${TERM}=="" ]] && TPUTTERM='-T dumb' \
|
|
|| TPUTTERM=''
|
|
|
|
declare -r BOLD=`tput ${TPUTTERM} bold`
|
|
declare -r RED=`tput ${TPUTTERM} setaf 1`
|
|
declare -r PURPLE=`tput ${TPUTTERM} setaf 5`
|
|
declare -r WHITE=`tput ${TPUTTERM} setaf 7`
|
|
declare -r BLINK=`tput ${TPUTTERM} blink`
|
|
declare -r RST=`tput ${TPUTTERM} sgr0`
|
|
|
|
|
|
DIR="$(dirname "$(readlink -f "$0")")"
|
|
cd "$DIR/../.."
|
|
|
|
COMPARE_WARNINGS="$DIR/compare_warnings.sh"
|
|
|
|
usage () {
|
|
echo "Usage: $0 [-h] [-j jobs]"
|
|
}
|
|
|
|
show_help () {
|
|
usage
|
|
echo "
|
|
Check for new warnings created.
|
|
|
|
Optional arguments:
|
|
-h Display this message and exit.
|
|
-f Run full build process
|
|
-j N use N jobs (does not support plain -j because you shouldn't use it anyway)
|
|
"
|
|
}
|
|
|
|
jobs=1
|
|
full=
|
|
run="make clean
|
|
make rom"
|
|
|
|
|
|
|
|
while getopts "hfj:" opt
|
|
do
|
|
case $opt in
|
|
h) show_help
|
|
exit 0
|
|
;;
|
|
f) full="true"
|
|
run="make distclean
|
|
make setup
|
|
make assets
|
|
make disasm
|
|
make rom
|
|
make compress"
|
|
;;
|
|
j) j_option_arg="$OPTARG"
|
|
if [[ ! "${j_option_arg}" =~ ^[0-9]*$ ]]
|
|
then
|
|
echo "Error: Option '-j' expects numeric argument, you gave: ${j_option_arg}"
|
|
exit 1
|
|
fi
|
|
jobs="$j_option_arg"
|
|
;;
|
|
?) usage
|
|
exit 2
|
|
;;
|
|
esac
|
|
done
|
|
shift $(($OPTIND - 1))
|
|
|
|
# Confirm run with -j jobs
|
|
echo "This will run
|
|
$run
|
|
using $jobs threads. This may take some time."
|
|
read -r -p "Is this okay? [Y/n]" response
|
|
response=${response,,} # tolower
|
|
if !([[ $response =~ ^(yes|y| ) ]] || [[ -z $response ]]); then
|
|
exit 0
|
|
fi
|
|
|
|
|
|
|
|
|
|
remove_ansi_codes () {
|
|
perl -pe '
|
|
s/\e\[[\x30-\x3f]*[\x20-\x2f]*[\x40-\x7e]//g;
|
|
s/\e[PX^_].*?\e\\//g;
|
|
s/\e\][^\a]*(?:\a|\e\\)//g;
|
|
s/\e[\[\]A-Z\\^_@]//g;' $1
|
|
}
|
|
|
|
|
|
make_warnings () {
|
|
make $1 -j$jobs 2> >(tee tools/warnings_count/warnings_temp.txt) \
|
|
&& remove_ansi_codes tools/warnings_count/warnings_temp.txt > tools/warnings_count/warnings_$2_new.txt \
|
|
&& rm tools/warnings_count/warnings_temp.txt
|
|
}
|
|
|
|
if [[ $full ]]; then
|
|
make distclean
|
|
make_warnings setup setup
|
|
make_warnings assets assets
|
|
make_warnings disasm disasm
|
|
make_warnings rom build
|
|
make_warnings compress compress
|
|
else
|
|
make clean
|
|
make_warnings rom build
|
|
fi
|
|
|
|
|
|
if [[ $full ]]; then
|
|
$COMPARE_WARNINGS setup
|
|
$COMPARE_WARNINGS assets
|
|
$COMPARE_WARNINGS disasm
|
|
$COMPARE_WARNINGS build
|
|
$COMPARE_WARNINGS compress
|
|
else
|
|
$COMPARE_WARNINGS build
|
|
fi
|
|
|