1
0
Fork 0
forked from len0rd/rockbox

Fix typo in the previous commit

Change-Id: I9e8de11ba86e147abc9bb5b3dfcc550655fe360d
This commit is contained in:
Solomon Peachy 2024-06-19 09:19:46 -04:00
parent 9beca004b9
commit 2ef10ec734

2
tools/configure vendored
View file

@ -263,7 +263,7 @@ simcc () {
GCCOPTS=`echo $CCOPTS | sed -e s/\ -ffreestanding// -e s/\ -nostdlib// -e s/\ -Wundef//` GCCOPTS=`echo $CCOPTS | sed -e s/\ -ffreestanding// -e s/\ -nostdlib// -e s/\ -Wundef//`
if [ "yes" = "$use_debug" ]; then if [ "yes" = "$use_debug" ]; then
GCCOPTS=`echo $GCCOPTS | sed -e s/\ -Os/-Og/` GCCOPTS=`echo $GCCOPTS | sed -e s/\ -Os/\ -Og/`
fi fi
GCCOPTS="$GCCOPTS -fno-builtin -g" GCCOPTS="$GCCOPTS -fno-builtin -g"