mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 00:59:11 +01:00
4a18908c57
Have lint mean -Werror at least until the issue with -Warray-bounds and -Wunused-result can be resolved. Avoid producing empty object files: CoreRecording.cpp is not configured through the build system, so just give it a dummy symbol when it's not compiled in. ChunkFile.cpp and DSPBreakpoints.cpp are no longer used. ExtendedTrace.cpp is Windows-only. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5592 8ced0084-cf51-0410-be5f-012b33b47a6e
34 lines
698 B
Python
34 lines
698 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
files = [
|
|
"assemble.cpp",
|
|
"disassemble.cpp",
|
|
"DSPAccelerator.cpp",
|
|
"DSPIntCCUtil.cpp",
|
|
"DSPIntExtOps.cpp",
|
|
"DSPHWInterface.cpp",
|
|
"DSPMemoryMap.cpp",
|
|
"DSPStacks.cpp",
|
|
"DSPAnalyzer.cpp",
|
|
"DspIntArithmetic.cpp",
|
|
"DspIntBranch.cpp",
|
|
"DspIntLoadStore.cpp",
|
|
"DspIntMisc.cpp",
|
|
"DspIntMultiplier.cpp",
|
|
"DSPEmitter.cpp",
|
|
"DSPCodeUtil.cpp",
|
|
"LabelMap.cpp",
|
|
"DSPInterpreter.cpp",
|
|
"DSPCore.cpp",
|
|
"DSPTables.cpp",
|
|
"Jit/DSPJitExtOps.cpp",
|
|
"Jit/DSPJitUtil.cpp",
|
|
"Jit/DSPJitMisc.cpp",
|
|
]
|
|
|
|
acenv = env.Clone()
|
|
|
|
acenv.StaticLibrary(env['local_libs'] + 'dspcore', files, LIBS = [ 'common'] )
|