From 3a32f86e6e7e22c014cb038bf8904c25757e2d60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Mon, 14 Nov 2022 19:25:47 -0800 Subject: [PATCH] Removed linux-mips-gcc. --- scripts/toolchain.lua | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index a0fa01142..44ead4c15 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -75,7 +75,6 @@ function toolchain(_buildDir, _libDir) { "linux-gcc-afl", "Linux (GCC + AFL fuzzer)" }, { "linux-clang", "Linux (Clang compiler)" }, { "linux-clang-afl", "Linux (Clang + AFL fuzzer)" }, - { "linux-mips-gcc", "Linux (MIPS, GCC compiler)" }, { "linux-arm-gcc", "Linux (ARM, GCC compiler)" }, { "linux-ppc64le-gcc", "Linux (PPC, GCC compiler)" }, { "ios-arm", "iOS - ARM" }, @@ -300,9 +299,6 @@ function toolchain(_buildDir, _libDir) premake.gcc.ar = "ar" location (path.join(_buildDir, "projects", _ACTION .. "-linux-clang")) - elseif "linux-mips-gcc" == _OPTIONS["gcc"] then - location (path.join(_buildDir, "projects", _ACTION .. "-linux-mips-gcc")) - elseif "linux-arm-gcc" == _OPTIONS["gcc"] then location (path.join(_buildDir, "projects", _ACTION .. "-linux-arm-gcc")) @@ -722,22 +718,6 @@ function toolchain(_buildDir, _libDir) "-m64", } - configuration { "linux-mips-gcc" } - targetdir (path.join(_buildDir, "linux32_mips_gcc/bin")) - objdir (path.join(_buildDir, "linux32_mips_gcc/obj")) - libdirs { path.join(_libDir, "lib/linux32_mips_gcc") } - buildoptions { - "-Wunused-value", - "-Wundef", - } - links { - "rt", - "dl", - } - linkoptions { - "-Wl,--gc-sections", - } - configuration { "linux-arm-gcc" } targetdir (path.join(_buildDir, "linux32_arm_gcc/bin")) objdir (path.join(_buildDir, "linux32_arm_gcc/obj"))