hey crew,
trying to get bufferoverride~ external to work after many attempts. does anyone recognise this error. when trying to create the object i get .....
load_object: Symbol "bufferoverride_tilde_setup" not found bufferoverride~ ... couldn't create
i have used this external in two other systems before without a hitch, i am using a precompiled binary of the external because i can't find the instructions to compile it myself.
also, i'm having trouble compiling flext. after following the install and build directions from both the official and CVS version i get this error...
tom@localhost ~/programsSRC/flext $ bash build.sh pd gcc
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/tom/programsSRC/flext' g++ -c -msse -mfpmath=sse -ffast-math -DNDEBUG -O2 -march=pentium-m -pthread -fPIC -DFLEXT_EXPORTS -DFLEXT_SYS=2 -I/home/tom/programsSRC/pd-0.39-2/src/src source/flbase.cpp -o pd-linux/release-single/flbase.opp source/flbase.cpp:28:22: 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:117: error: canvas_realizedollar' undeclared (first use this function) source/flbase.cpp:117: error: (Each undeclared identifier is reported only once for each function it appears in.) make[1]: *** [pd-linux/release-single/flbase.opp] Error 1 make[1]: Leaving directory
/home/tom/programsSRC/flext'
make: *** [build-release-single] Error 2
cheers tom
Hi,
we are a écrit :
also, i'm having trouble compiling flext. after following the install and build directions from both the official and CVS version i get this error...
tom@localhost ~/programsSRC/flext $ bash build.sh pd gcc 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/tom/programsSRC/flext' g++ -c -msse -mfpmath=sse -ffast-math -DNDEBUG -O2 -march=pentium-m -pthread -fPIC -DFLEXT_EXPORTS -DFLEXT_SYS=2 -I/home/tom/programsSRC/pd-0.39-2/src/src source/flbase.cpp -o pd-linux/release-single/flbase.opp source/flbase.cpp:28:22: g_canvas.h: No such file or directory
It seems that your pd source folder is not well declared : -I/home/tom/programsSRC/pd-0.39-2/src/src The PDPATH definition in flextdir/buildsys/config-lnx-pd-gcc.txt must point on the pd folder instead of the pd/src one.
Best regards,
Nicolas