summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-09-26 17:19:07 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-10-09 11:39:25 -0400
commit4231c2c83f2b5331e3e38b10a308ee3752315f9c (patch)
tree1e14867e9c9f0d7b778e7c4c18103a7cbd491794 /tools
parent278522f8118bd2cfce065ec95f0a93ca53e3ca44 (diff)
downloadrockbox-4231c2c83f2b5331e3e38b10a308ee3752315f9c.tar.gz
rockbox-4231c2c83f2b5331e3e38b10a308ee3752315f9c.zip
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
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure
index 2b29a3d784..9e29d84ed8 100755
--- a/tools/configure
+++ b/tools/configure
@@ -556,7 +556,7 @@ arm926ejscc () {
556 556
557arm1136jfscc () { 557arm1136jfscc () {
558 findarmgcc 558 findarmgcc
559 GCCOPTS="$CCOPTS -mcpu=arm1136jf-s" 559 GCCOPTS="$CCOPTS -mcpu=arm1136jf-s -mfloat-abi=softfp"
560 GCCOPTIMIZE="-fomit-frame-pointer" 560 GCCOPTIMIZE="-fomit-frame-pointer"
561 endian="little" 561 endian="little"
562} 562}
@@ -890,7 +890,7 @@ androidndkcc()
890 890
891mipsellinuxcc () { 891mipsellinuxcc () {
892 GCCOPTS=`echo $CCOPTS | sed -e s/-ffreestanding// -e s/-nostdlib//` 892 GCCOPTS=`echo $CCOPTS | sed -e s/-ffreestanding// -e s/-nostdlib//`
893 GCCOPTS="$GCCOPTS -march=mips32r2 -mno-mips16 -mno-long-calls -Umips -fPIC" 893 GCCOPTS="$GCCOPTS -march=mips32r2 -mhard-float -mno-mips16 -mno-long-calls -Umips -fPIC"
894 GCCOPTIMIZE='' 894 GCCOPTIMIZE=''
895 LDOPTS="-lasound -lpthread -lm -ldl -lrt $LDOPTS" 895 LDOPTS="-lasound -lpthread -lm -ldl -lrt $LDOPTS"
896 GLOBAL_LDOPTS="$GLOBAL_LDOPTS -Wl,-z,defs" 896 GLOBAL_LDOPTS="$GLOBAL_LDOPTS -Wl,-z,defs"