From 4231c2c83f2b5331e3e38b10a308ee3752315f9c Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Sat, 26 Sep 2020 17:19:07 -0400 Subject: codecs: Add support for the 'VTX' ZX Spectrum chiptunes format. This codec requires floating point. Original author: Peter Sovietov Ported to Rockbox: Roman Skylarov Further integration and bugfixes: Solomon Peachy Change-Id: I781ecd3592dfcdbbc694063334350342534f1d6c --- tools/configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/configure b/tools/configure index 2b29a3d784..9e29d84ed8 100755 --- a/tools/configure +++ b/tools/configure @@ -556,7 +556,7 @@ arm926ejscc () { arm1136jfscc () { findarmgcc - GCCOPTS="$CCOPTS -mcpu=arm1136jf-s" + GCCOPTS="$CCOPTS -mcpu=arm1136jf-s -mfloat-abi=softfp" GCCOPTIMIZE="-fomit-frame-pointer" endian="little" } @@ -890,7 +890,7 @@ androidndkcc() mipsellinuxcc () { GCCOPTS=`echo $CCOPTS | sed -e s/-ffreestanding// -e s/-nostdlib//` - GCCOPTS="$GCCOPTS -march=mips32r2 -mno-mips16 -mno-long-calls -Umips -fPIC" + GCCOPTS="$GCCOPTS -march=mips32r2 -mhard-float -mno-mips16 -mno-long-calls -Umips -fPIC" GCCOPTIMIZE='' LDOPTS="-lasound -lpthread -lm -ldl -lrt $LDOPTS" GLOBAL_LDOPTS="$GLOBAL_LDOPTS -Wl,-z,defs" -- cgit