Previous 199869 Revisions Next

r36693 Thursday 26th March, 2015 at 21:40:35 UTC by Couriersud
Merge branch 'master' of https://github.com/mamedev/mame.git
[scripts]genie.lua
[scripts/src]cpu.lua

trunk/scripts/genie.lua
r245204r245205
154154   description = "Generate a link map.",
155155}
156156
157newoption {
158   trigger = "FORCE_DRC_C_BACKEND",
159   description = "Force DRC C backend.",
160}
161
162
157163local os_version = str_to_version(_OPTIONS["os_version"])
158164USE_BGFX = 1
159165if (_OPTIONS["targetos"]=="macosx" and  os_version < 100700) then
r245204r245205
337343      "FLAC__NO_DLL",
338344   }
339345
346   -- fixme -- need to make this work for other target architectures (PPC)
347   if _OPTIONS["FORCE_DRC_C_BACKEND"]==nil then
348      configuration { "x64" }
349         defines {
350            "NATIVE_DRC=drcbe_x64",
351         }
352      configuration { "x32" }
353         defines {
354            "NATIVE_DRC=drcbe_x86",
355         }
356      configuration {  }
357   end
358   
340359-- define USE_SYSTEM_JPEGLIB if library shipped with MAME is not used
341360--ifneq ($(BUILD_JPEGLIB),1)
342361--DEFS += -DUSE_SYSTEM_JPEGLIB
trunk/scripts/src/cpu.lua
r245204r245205
3636   }
3737end
3838
39-- fixme -- need to make this work for other target architectures (PPC)
40
41--ifndef FORCE_DRC_C_BACKEND
42configuration { "x64" }
43   defines { "NATIVE_DRC=drcbe_x64" }
44   
45configuration { "x32" }
46   defines { "NATIVE_DRC=drcbe_x86" }
47--endif
48configuration { }
49
50
5139--------------------------------------------------
5240-- Signetics 8X300 / Scientific Micro Systems SMS300
5341--@src/emu/cpu/8x300/8x300.h,CPUS += 8X300


Previous 199869 Revisions Next


© 1997-2024 The MAME Team