Hi! I need to use formants in realtime and I found : sms_peak based on flext.
I doesnt found a binary for osx, or ubuntu so I start compiling.
My first error for flext is :
~/pd-flext/flext$ sudo ./build.sh pd gcc build
[sudo] password for marco:
make -f ./buildsys/gnumake-sub.mak PLATFORM=lnx RTSYS=pd COMPILER=gcc
BUILDPATH=./buildsys/ PKGINFO=package.txt BUILDCLASS=flext
USRCONFIG=config.txt USRMAKE=build/gnumake-lnx-gcc.inc TARGETMODE=release
TARGETTYPE=single _build_
make[1]: Entering directory /home/marco/pd-flext/flext' mkdir -p pd-linux/release-single/ g++ -c -msse -mfpmath=sse -ffast-math -O3 -pthread -fPIC -fvisibility-inlines-hidden -DFLEXT_USE_SIMD -DNDEBUG -DFLEXT_EXPORTS -DFLEXT_SYS=2 -DPD -I/usr/local/src/pd/src -I/usr/include/stk -I/usr/include/sndobj source/flbase.cpp -o pd-linux/release-single/flbase.opp source/flbase.cpp:32:22: error: g_canvas.h: No such file or directory source/flbase.cpp: In static member function ‘static bool flext_obj_single::GetParamSym(t_atom&, const t_symbol*, _glist*)’: source/flbase.cpp:134: error: ‘canvas_realizedollar’ was not declared in this scope source/flbase.cpp:137: error: ‘canvas_realizedollar’ was not declared in this scope make[1]: *** [pd-linux/release-single/flbase.opp] Error 1 make[1]: Leaving directory
/home/marco/pd-flext/flext'
make: *** [build-release-single] Error 2
Thanks for suggestions and help!
flext needs to be configured for your system first. you should find a config file at buildsys/config-lnx-pd-gcc.txt make sure you direct it to the location of your pd source code. there are other config options that should be set in that file, just check they relate to your setup.
dmotd
linediconsine@gmail.com wrote:
Hi! I need to use formants in realtime and I found : sms_peak based on flext.
I doesnt found a binary for osx, or ubuntu so I start compiling.
My first error for flext is :
~/pd-flext/flext$ sudo ./build.sh pd gcc build [sudo] password for marco: make -f ./buildsys/gnumake-sub.mak PLATFORM=lnx RTSYS=pd COMPILER=gcc BUILDPATH=./buildsys/ PKGINFO=package.txt BUILDCLASS=flext USRCONFIG=config.txt USRMAKE=build/gnumake-lnx-gcc.inc TARGETMODE=release TARGETTYPE=single _build_ make[1]: Entering directory
/home/marco/pd-flext/flext' mkdir -p pd-linux/release-single/ g++ -c -msse -mfpmath=sse -ffast-math -O3 -pthread -fPIC -fvisibility-inlines-hidden -DFLEXT_USE_SIMD -DNDEBUG -DFLEXT_EXPORTS -DFLEXT_SYS=2 -DPD -I/usr/local/src/pd/src -I/usr/include/stk -I/usr/include/ sndobj source/flbase.cpp -o pd-linux/release-single/flbase.opp source/flbase.cpp:32:22: error: g_canvas.h: No such file or directory source/flbase.cpp: In static member function static bool flext_obj_single::GetParamSym(t_atom&, const t_symbol*, _glist*) : source/flbase.cpp:134: error: canvas_realizedollar was not declared in this scope source/flbase.cpp:137: error: canvas_realizedollar was not declared in this scope make[1]: *** [pd-linux/release-single/flbase.opp] Error 1 make[1]: Leaving directory
/home/marco/pd-flext/flext' make: *** [build-release-single] Error 2Thanks for suggestions and help!
-- Marco Amato
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
linediconsine@gmail.com wrote:
Hi! I need to use formants in realtime and I found : sms_peak based on flext.
I doesnt found a binary for osx, or ubuntu so I start compiling.
My first error for flext is :
~/pd-flext/flext$ sudo ./build.sh pd gcc build [sudo] password for marco: make -f ./buildsys/gnumake-sub.mak PLATFORM=lnx RTSYS=pd COMPILER=gcc BUILDPATH=./buildsys/ PKGINFO=package.txt BUILDCLASS=flext USRCONFIG=config.txt USRMAKE=build/gnumake-lnx-gcc.inc TARGETMODE=release TARGETTYPE=single _build_ make[1]: Entering directory `/home/marco/pd-flext/flext' mkdir -p pd-linux/release-single/ g++ -c -msse -mfpmath=sse -ffast-math -O3 -pthread -fPIC -fvisibility-inlines-hidden -DFLEXT_USE_SIMD -DNDEBUG -DFLEXT_EXPORTS -DFLEXT_SYS=2 -DPD -I/usr/local/src/pd/src -I/usr/include/stk -I/usr/include/sndobj source/flbase.cpp -o pd-linux/release-single/flbase.opp source/flbase.cpp:32:22: error: g_canvas.h: No such file or directory
g_canvas.h is part of the Pd source, so your path to it is not specified correctly.
Martin