Skip to content

Commit

Permalink
Removed linux-mips-gcc.
Browse files Browse the repository at this point in the history
  • Loading branch information
bkaradzic committed Nov 15, 2022
1 parent f4e08ff commit 3a32f86
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions scripts/toolchain.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down Expand Up @@ -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"))

Expand Down Expand Up @@ -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"))
Expand Down

0 comments on commit 3a32f86

Please sign in to comment.