diff options
| author | 2026-04-06 05:16:43 +1000 | |
|---|---|---|
| committer | 2026-04-06 05:16:43 +1000 | |
| commit | 7ff17615ba95d57befd8cf050b9a88bcb9aaf83c (patch) | |
| tree | 2fcdb28a05180d9c2cd2632caa403960852faef3 /scripts/src/tools.lua | |
| parent | d2e952322e057e42ab059035157c7136e0565727 (diff) | |
Cleaned up unsupportable legacy stuff:
cpu/drcbex86.cpp: Removed i686 recompiler back-end. Without a practical
way to make Windows i686 builds, it's just going to rot. Also, x86-64
is now older than Pac-Man was when MAME was initially created. It's
dead on the desktop
tools: Removed aueffectutil - it's no longer useful.
emu/video/rgbutil.cpp: Removed Altivec/VMX bilinear filtering
implementation. PowerPC on desktop is dead.
file/posixptty.cpp, sdl, sdl3, scripts: Removed support for SysV
operating systems. They’re dead on the desktop.
scripts: Removed outdated Lua compatibility macros. They weren't doing
anything sice we updated to Lua 5.4 (the compatibility options changed,
but we just left the old macros in place, which no longer had any
effect).
Diffstat (limited to 'scripts/src/tools.lua')
| -rw-r--r-- | scripts/src/tools.lua | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/scripts/src/tools.lua b/scripts/src/tools.lua index 1c79e7da848..33695f26de6 100644 --- a/scripts/src/tools.lua +++ b/scripts/src/tools.lua @@ -730,48 +730,6 @@ configuration { } strip() -------------------------------------------------- --- aueffectutil --------------------------------------------------- - -if _OPTIONS["targetos"] == "macosx" then - project("aueffectutil") - uuid ("3db8316d-fad7-4f5b-b46a-99373c91550e") - kind "ConsoleApp" - - flags { - "Symbols", -- always include minimum symbols for executables - } - - if _OPTIONS["SEPARATE_BIN"]~="1" then - targetdir(MAME_DIR) - end - - linkoptions { - "-sectcreate __TEXT __info_plist " .. _MAKE.esc(MAME_DIR) .. "src/tools/aueffectutil-Info.plist", - } - - dependency { - { "aueffectutil", MAME_DIR .. "src/tools/aueffectutil-Info.plist", true }, - } - - links { - "AudioUnit.framework", - "AudioToolbox.framework", - "CoreAudio.framework", - "CoreAudioKit.framework", - "CoreServices.framework", - } - - files { - MAME_DIR .. "src/tools/aueffectutil.mm", - } - - configuration { } - - strip() -end - --------------------------------------------------- -- testkeys -------------------------------------------------- |
