From 0725045fc2d6f974f50d59755f9bbecd0c33ee23 Mon Sep 17 00:00:00 2001 From: Selene ToyKeeper Date: Fri, 15 Dec 2023 04:55:40 -0700 Subject: build.sh: don't require DFPs, newer avr-libc doesn't need them --- bin/build.sh | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/bin/build.sh b/bin/build.sh index d044ca5..ed0a837 100755 --- a/bin/build.sh +++ b/bin/build.sh @@ -37,12 +37,14 @@ else echo "Unrecognized MCU type: '$MCUNAME'" exit 1 fi -# ensure the DFP files exist -if [ ! -d "$DFPPATH" ]; then - echo "Atmel DFP files not found: '$DFPPATH'" - echo "Install DFP files with './make dfp'" - exit 1 -fi +# skip verification because newer avr-libc doesn't need DFPs, +# so the DFP shouldn't be mandatory +## ensure the DFP files exist +#if [ ! -d "$DFPPATH" ]; then +# echo "Atmel DFP files not found: '$DFPPATH'" +# echo "Install DFP files with './make dfp'" +# exit 1 +#fi export CC=avr-gcc export CPP=avr-cpp -- cgit v1.2.3