mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 16:49:58 -06:00
Core and DSPCore now have mutual dependencies, which breaks the
assumption on the part of many linkers that static libraries make up a DAG, so merge libdspcore into libcore. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6967 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -6,8 +6,6 @@ import sys
|
||||
files = [
|
||||
"ActionReplay.cpp",
|
||||
"ARDecrypt.cpp",
|
||||
"GeckoCode.cpp",
|
||||
"GeckoCodeConfig.cpp",
|
||||
"ConfigManager.cpp",
|
||||
"Console.cpp",
|
||||
"Core.cpp",
|
||||
@ -32,6 +30,37 @@ files = [
|
||||
"Debugger/Debugger_SymbolMap.cpp",
|
||||
"Debugger/Dump.cpp",
|
||||
"Debugger/PPCDebugInterface.cpp",
|
||||
"DSP/assemble.cpp",
|
||||
"DSP/disassemble.cpp",
|
||||
"DSP/DSPAccelerator.cpp",
|
||||
"DSP/DSPIntCCUtil.cpp",
|
||||
"DSP/DSPIntExtOps.cpp",
|
||||
"DSP/DSPHWInterface.cpp",
|
||||
"DSP/DSPMemoryMap.cpp",
|
||||
"DSP/DSPStacks.cpp",
|
||||
"DSP/DSPAnalyzer.cpp",
|
||||
"DSP/DspIntArithmetic.cpp",
|
||||
"DSP/DspIntBranch.cpp",
|
||||
"DSP/DspIntLoadStore.cpp",
|
||||
"DSP/DspIntMisc.cpp",
|
||||
"DSP/DspIntMultiplier.cpp",
|
||||
"DSP/DSPEmitter.cpp",
|
||||
"DSP/DSPCodeUtil.cpp",
|
||||
"DSP/LabelMap.cpp",
|
||||
"DSP/DSPInterpreter.cpp",
|
||||
"DSP/DSPCore.cpp",
|
||||
"DSP/DSPTables.cpp",
|
||||
"DSP/Jit/DSPJitExtOps.cpp",
|
||||
"DSP/Jit/DSPJitBranch.cpp",
|
||||
"DSP/Jit/DSPJitUtil.cpp",
|
||||
"DSP/Jit/DSPJitCCUtil.cpp",
|
||||
"DSP/Jit/DSPJitArithmetic.cpp",
|
||||
"DSP/Jit/DSPJitLoadStore.cpp",
|
||||
"DSP/Jit/DSPJitMultiplier.cpp",
|
||||
"DSP/Jit/DSPJitMisc.cpp",
|
||||
"DSP/Jit/DSPJitRegCache.cpp",
|
||||
"GeckoCode.cpp",
|
||||
"GeckoCodeConfig.cpp",
|
||||
"HLE/HLE.cpp",
|
||||
"HLE/HLE_Misc.cpp",
|
||||
"HLE/HLE_OS.cpp",
|
||||
@ -165,7 +194,7 @@ if sys.platform == 'win32':
|
||||
elif sys.platform == 'darwin':
|
||||
files += [ "HW/BBA-TAP/TAP_Apple.cpp", "HW/WiimoteReal/IOdarwin.mm" ]
|
||||
elif sys.platform == 'linux2' and env['HAVE_BLUEZ']:
|
||||
files += [ "HW/BBA-TAP/TAP_Unix.cpp", "HW/WiimoteReal/IONix.cpp" ]
|
||||
files += [ "HW/BBA-TAP/TAP_Unix.cpp", "HW/WiimoteReal/IODummy.cpp" ]
|
||||
else:
|
||||
files += [ "HW/BBA-TAP/TAP_Unix.cpp", "HW/WiimoteReal/IODummy.cpp" ]
|
||||
|
||||
|
Reference in New Issue
Block a user