mirror of
https://github.com/holub/mame
synced 2025-04-20 15:32:45 +03:00
mips platform is not supported for Android for some time
This commit is contained in:
parent
1a79bb82b1
commit
9dce821cbb
@ -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
|
||||
|
@ -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
|
||||
|
@ -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",
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user