What's new

Rice Daedalus 5.31 (linux) compilation problems

Hell255

New member
did anyone succeed to compile this plugin ?
http://emulacao.net/forum/index.php?showtopic=26
could you send it to me? i'm desperate =( i've tried for 2h compiling this one... i failed on this part:
------------------------------------------------------------------------------------------
g++ -DUSE_GTK `sdl-config --cflags` `gtk-config --cflags` -O3 -mcpu=i486 -ffast-math -funroll-loops -fomit-frame-pointer -msse -mmmx -c -o OGLExtCombiner.o OGLExtCombiner.cpp
OGLExtCombiner.cpp:610: error: brace-enclosed initializer used to initialize ` GLint'
OGLExtCombiner.cpp:610: error: brace-enclosed initializer used to initialize ` GLint'
------------------------------------------------------------------------------------------
any clues? or send it to me =)

thanks
 
Last edited:

Villela

New member
Delete the braces

GLint COGLColorCombiner4::RGBArgsMap4[] =
{
{GL_PRIMARY_COLOR_ARB, },
{........... etc

Will be like
GLint COGLColorCombiner4::RGBArgsMap4[] =
{
GL_PRIMARY_COLOR_ARB,
........... etc


But there are some other problems, don' t know if will compile or work only solving this problem, here i have one problem with asm that i don' t know a solution
 

Top