From 1380497eae29820dec9ab03b40a932be35fc39f4 Mon Sep 17 00:00:00 2001 From: nakeee Date: Mon, 13 Apr 2009 09:14:24 +0000 Subject: [PATCH] unresolved symbol in linux git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2962 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_DSP_LLE/Src/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Plugins/Plugin_DSP_LLE/Src/SConscript b/Source/Plugins/Plugin_DSP_LLE/Src/SConscript index c39985064d..0691bf89fc 100644 --- a/Source/Plugins/Plugin_DSP_LLE/Src/SConscript +++ b/Source/Plugins/Plugin_DSP_LLE/Src/SConscript @@ -27,7 +27,7 @@ files = [ lleenv = env.Clone() lleenv.Append( CXXFLAGS = [ '-fPIC' ], - LIBS = [ 'common', 'audiocommon', 'dspcore' ], + LIBS = [ 'dspcore', 'audiocommon', 'common', ], ) lleenv.SharedLibrary(env['plugin_dir']+name, files)