- hack to get things comipling... need to parse the output of sdl-config --libs
This commit is contained in:
parent
de01f68da5
commit
f1d0e6d241
|
@ -62,4 +62,4 @@ LINKFLAGS = sdl_libflags.read();
|
|||
LINKFLAGS = " -lz " + LINKFLAGS.rstrip(os.linesep);
|
||||
sdl_libflags.close();
|
||||
|
||||
env.Program('fceu', file_list, CCFLAGS=CCFLAGS, LIBPATH=LINKFLAGS)
|
||||
env.Program('fceu', file_list, CCFLAGS=CCFLAGS, LIBS = ['SDL', 'pthread', 'z'], LIBPATH = '/usr/lib')
|
||||
|
|
Loading…
Reference in New Issue