diff options
| author | 2026-04-06 05:16:43 +1000 | |
|---|---|---|
| committer | 2026-04-06 05:16:43 +1000 | |
| commit | 7ff17615ba95d57befd8cf050b9a88bcb9aaf83c (patch) | |
| tree | 2fcdb28a05180d9c2cd2632caa403960852faef3 /scripts/toolchain.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/toolchain.lua')
| -rw-r--r-- | scripts/toolchain.lua | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index 6e8c96605b3..d00f426ba9a 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -33,7 +33,6 @@ newoption { { "openbsd-clang", "OpenBSD (clang compiler)"}, { "osx", "OSX (GCC compiler)" }, { "osx-clang", "OSX (Clang compiler)" }, - { "solaris", "Solaris" }, }, } @@ -145,10 +144,6 @@ function toolchain(_buildDir, _subDir) location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-linux") end - if "solaris" == _OPTIONS["gcc"] then - location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-solaris") - end - if "linux-clang" == _OPTIONS["gcc"] then premake.gcc.cc = "clang" @@ -376,35 +371,6 @@ function toolchain(_buildDir, _subDir) configuration { "linux-clang", "x64", "Debug" } targetdir (_buildDir .. "linux_clang" .. "/bin/x64/Debug") - configuration { "solaris", "x32" } - objdir (_buildDir .. "solaris" .. "/obj") - buildoptions { - "-m32", - } - - configuration { "solaris", "x32", "Release" } - targetdir (_buildDir .. "solaris" .. "/bin/x32/Release") - - configuration { "solaris", "x32", "Debug" } - targetdir (_buildDir .. "solaris" .. "/bin/x32/Debug") - - configuration { "solaris", "x64" } - objdir (_buildDir .. "solaris" .. "/obj") - buildoptions { - "-m64", - } - - configuration { "solaris", "x64", "Release" } - targetdir (_buildDir .. "solaris" .. "/bin/x64/Release") - - configuration { "solaris", "x64", "Debug" } - targetdir (_buildDir .. "solaris" .. "/bin/x64/Debug") - - configuration { "freebsd", "x32" } - objdir (_buildDir .. "freebsd" .. "/obj") - buildoptions { - "-m32", - } configuration { "freebsd", "x32", "Release" } targetdir (_buildDir .. "freebsd" .. "/bin/x32/Release") |
