summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2021-10-26 10:52:26 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2021-10-26 10:52:26 +0200
commit9dce821cbb1a7016d418f6b650152fab4f32a418 (patch)
treee11aeff9c80403e253fb1b6b8fbe3484668b9ff4
parent1a79bb82b120f1710ef326546b1046edd5a44c6a (diff)
mips platform is not supported for Android for some time
-rw-r--r--scripts/src/3rdparty.lua6
-rw-r--r--scripts/src/main.lua6
-rw-r--r--scripts/toolchain.lua4
3 files changed, 0 insertions, 16 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua
index 73d7f4d4332..b8555883e54 100644
--- a/scripts/src/3rdparty.lua
+++ b/scripts/src/3rdparty.lua
@@ -1664,12 +1664,6 @@ if _OPTIONS["targetos"]=="android" then
if _OPTIONS["PLATFORM"]=="arm64" then
targetdir(MAME_DIR .. "android-project/app/src/main/libs/arm64-v8a")
end
- if _OPTIONS["PLATFORM"]=="mips" then
- targetdir(MAME_DIR .. "android-project/app/src/main/libs/mips")
- end
- if _OPTIONS["PLATFORM"]=="mips64" then
- targetdir(MAME_DIR .. "android-project/app/src/main/libs/mips64")
- end
if _OPTIONS["PLATFORM"]=="x86" then
targetdir(MAME_DIR .. "android-project/app/src/main/libs/x86")
end
diff --git a/scripts/src/main.lua b/scripts/src/main.lua
index e09282d28c0..bbd352b2ab4 100644
--- a/scripts/src/main.lua
+++ b/scripts/src/main.lua
@@ -180,12 +180,6 @@ end
if _OPTIONS["PLATFORM"]=="arm64" then
targetdir(MAME_DIR .. "android-project/app/src/main/libs/arm64-v8a")
end
- if _OPTIONS["PLATFORM"]=="mips" then
- targetdir(MAME_DIR .. "android-project/app/src/main/libs/mips")
- end
- if _OPTIONS["PLATFORM"]=="mips64" then
- targetdir(MAME_DIR .. "android-project/app/src/main/libs/mips64")
- end
if _OPTIONS["PLATFORM"]=="x86" then
targetdir(MAME_DIR .. "android-project/app/src/main/libs/x86")
end
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua
index 54703ccfc3a..758862c96f0 100644
--- a/scripts/toolchain.lua
+++ b/scripts/toolchain.lua
@@ -17,8 +17,6 @@ newoption {
allowed = {
{ "android-arm", "Android - ARM" },
{ "android-arm64", "Android - ARM64" },
- { "android-mips", "Android - MIPS" },
- { "android-mips64","Android - MIPS64" },
{ "android-x86", "Android - x86" },
{ "android-x64", "Android - x64" },
{ "asmjs", "Emscripten/asm.js" },
@@ -134,8 +132,6 @@ function toolchain(_buildDir, _subDir)
local platformToolchainMap = {
['arm'] = "arm-linux-androideabi",
['arm64'] = "aarch64-linux-android",
- ['mips64'] = "mips64el-linux-android",
- ['mips'] = "mipsel-linux-android",
['x86'] = "i686-linux-android",
['x64'] = "x86_64-linux-android",
}