1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Add loongarch64 support

This commit is contained in:
Student Main
2024-10-05 02:24:15 +08:00
parent 47bc374edf
commit e0693f8ad8
8 changed files with 16 additions and 4 deletions

View File

@@ -518,6 +518,10 @@ bool OS::has_feature(const String &p_feature) {
if (p_feature == "wasm") {
return true;
}
#elif defined(__loongarch64)
if (p_feature == "loongarch64") {
return true;
}
#endif
#if defined(IOS_SIMULATOR)