Skip to content

Commit fc5cec2

Browse files
committed
Allow Linux x86 compilation
1 parent 8c7fe03 commit fc5cec2

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

build.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@
8383
"system_name_unsafe": "System name includes unsafe characters.",
8484
"quick": "Quick",
8585
"windows_arm64_unsupported": "Windows ARM64 compilation target is unsupported, compile for x64 and use emulation",
86-
"linux_x86_unsupported": "Linux x86 compilation target is unsupported",
8786
"macos_x86_unsupported": "MacOS x86 compilation target is unsupported"
8887
},
8988
"ru": {
@@ -130,7 +129,6 @@
130129
"system_name_unsafe": "Название системы содержит небезопасные символы.",
131130
"quick": "Быстро",
132131
"windows_arm64_unsupported": "Цель компиляции Windows ARM64 не поддерживается, скомпилируйте для x64 и используйте эмуляцию",
133-
"linux_x86_unsupported": "Цель компиляции Linux x86 не поддерживается",
134132
"macos_x86_unsupported": "Цель компиляции MacOS x86 не поддерживается"
135133
},
136134
"pl": {
@@ -380,13 +378,6 @@
380378
document.querySelector("#compile").classList.remove("disabled");
381379
return;
382380
}
383-
if (config.target == "linux-app" && config.arch == "x86") {
384-
document.querySelector("#status").innerText = text("linux_x86_unsupported");
385-
document.querySelector("#status").style.color = "red";
386-
compiling = false;
387-
document.querySelector("#compile").classList.remove("disabled");
388-
return;
389-
}
390381
if (config.target == "macos-app" && config.arch == "x86") {
391382
document.querySelector("#status").innerText = text("macos_x86_unsupported");
392383
document.querySelector("#status").style.color = "red";

0 commit comments

Comments
 (0)