message from Rob Clark <[email protected]> to festival-talk = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = I've seen this before with Debian and gcc-4.3.2 (and managed to reproduce it at the time) The compiler was failing to find a match for the EST_String split function in 2 places. I really couldn't see why it couldn't find a suitable match though and assumed it was something to do with gcc-4.3.2 or the Debian install of it. (We tested the last Festival release with gcc-4.3.4 on other platforms without issue.)
The only fix I could suggest was to use gcc-4.2 on debian This is installed with: apt-get install libncurses5-dev gcc-4.2 g++-4.2 You could see if gcc-4.2 is already installed on your hosting machine, and if it is, add the following to the bottom of speech_tools/config/config CXX = g++-4.2 CC = gcc-4.2 Compiling a statically linked Festival binary (the default) on a alternate Debian install and then running on the remote host may work. Regards, Rob Clark On Thu, Jun 16, 2011 at 10:44 AM, Jon Spriggs <[email protected]> wrote: > message from Jon Spriggs <[email protected]> to festival-talk > = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = > On 15 June 2011 22:25, Alan W Black <[email protected]> wrote: >> Jon Spriggs wrote: >>> >>> message from Jon Spriggs <[email protected]> to festival-talk >>> = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = >>> I'm using Festival (text2wave) to create audio bumpers for a podcast >>> I'm creating dynamically in code each day. Because of some issues I >>> hit with building it very early on, I decided to SSH out from my web >>> host to my home computer each day to build the bumpers, until I had a >>> chance to look into why I've had problems. Today is that day! >>> >>> I'm building it on shared hosting (dreamhost, if you're interested), >>> so there's no chance to sudo make install or anything like that, nor >>> can I use pre-packaged packages. >> >> Can you tell me what version of gcc you have >> >> gcc -v >> >> Its failing to compile the speech tools (so nothing will work after that). >> >> This might be because your host has a newer version of gcc (or an older >> one). >> >> Alan >> > > $ gcc -v > > Using built-in specs. > Target: x86_64-linux-gnu > Configured with: ../src/configure -v --with-pkgversion='Debian > 4.3.2-1.1' --with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs > --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr > --enable-shared --with-system-zlib --libexecdir=/usr/lib > --without-included-gettext --enable-threads=posix --enable-nls > --with-gxx-include-dir=/usr/include/c++/4.3 --program-suffix=-4.3 > --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc > --enable-mpfr --enable-cld --enable-checking=release > --build=x86_64-linux-gnu --host=x86_64-linux-gnu > --target=x86_64-linux-gnu > Thread model: posix > gcc version 4.3.2 (Debian 4.3.2-1.1) > > $ > -- > Jon "The Nice Guy" Spriggs > = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = > = University of Edinburgh's Festival Speech Synthesis System = > = http://festvox.org/festival Sent Via [email protected] = > = To unsubscribe mail [email protected] = > = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = > > > -- Rob Clark = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = University of Edinburgh's Festival Speech Synthesis System = = http://festvox.org/festival Sent Via [email protected] = = To unsubscribe mail [email protected] = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = _______________________________________________ Festlang-talk mailing list [email protected] https://lists.berlios.de/mailman/listinfo/festlang-talk
