-
This seems to be just a compiler warning. All demos seem to work fine on my arch linux x86_64 system.
To compile it I needed to add -fPIC to your makefiles CFLAGS.
The warning still exists in 0.0.4.
2009-09-11 15:24:06 UTC in CRT X-Y Library (libcrtxy)
-
I've got some warnings during build (on x86_64 - archlinux, gcc 4.3.2)
src/crtxy.c: In function 'XY_end_frame':
src/crtxy.c:1376: warning: cast from pointer to integer of different size
src/crtxy.c:1376: warning: cast to pointer from integer of different size
Don't know if this may be a problem.
2008-11-23 12:34:53 UTC in CRT X-Y Library (libcrtxy)
-
Hello,
with the version 0.9.8.10 everything runs fine,
but I am using archlinux 64bit now and no longer sourcemage.
Thank you for this great program. It is easy to understand/use and quite fast and
fun to work with. I really love it.
2008-04-24 17:06:22 UTC in LiVES
-
I am using gcc (GCC) 4.1.2.
Maybe this flags are only optimizations and are not really needed ?
Let me know if you need additional informations.
2007-06-27 15:26:08 UTC in LiVES
-
Here it is:
Program received signal SIGSEGV, Segmentation fault.
0x00002b8ed6bf8269 in weed_plugin_info_init () from /usr/share/lives/plugins/effects/realtime/weed/alien_overlay.wo
(gdb) bt
#0 0x00002b8ed6bf8269 in weed_plugin_info_init () from /usr/share/lives/plugins/effects/realtime/weed/alien_overlay.wo
#1 0x00002b8ed6bf9807 in weed_setup () from...
2007-06-26 23:39:06 UTC in LiVES
-
the strace log
File Added: lives-0.9.8.5-strace.log.bz2.
2007-06-26 16:13:48 UTC in LiVES
-
Hello,
I had this issue with lives 0.9.8.2 and with current 0.9.8.5 (haven't teste the ones in between).
lives crashes on startup when 1 ore more realtime plugins are located in the path /usr/share/lives/plugins/effects/realtime/weed
I'll attach a compile log and an strace log.
I'm running Sourcemage linux 64bit with an amd64 bit cpu.
2007-06-26 16:10:32 UTC in LiVES
-
Logged In: YES
user_id=709713
Also I would like to mention that for
#includes
searches first in the systems $PATH and "" first in the
projekts src paths.
So for speex it should be
#include instead of #include "speex.h".
Isn't the correct include path for speex.h
this one speex/speex.h ?
I am not sure about that.
Regards,
Ingo.
2006-10-07 11:55:45 UTC in TeamBlibbityBlabbity
-
The check for speex in TeamBlibbityBlabbity in
configure.in could/should be replaced with this:
XIPH_PATH_SPEEX(,
:,
AC_MSG_ERROR([*** speex not found!]))
CXXFLAGS="$CXXFLAGS $SPEEX_CFLAGS"
CFLAGS="$CFLAGS $SPEEX_CFLAGS"
LIBS="$LIBS $SPEEX_LIBS"
#--------------------
your old one is this:
AC_CHECK_LIB(speex, speex_decoder_init, ,[AC_MSG_ERROR([
cannont find...
2006-10-07 11:50:59 UTC in TeamBlibbityBlabbity