Преглед на файлове

Merge pull request #8273 from RandomShaper/fix-android-x86-2.1

Fix crash on Android-x86 (2.1)
Rémi Verschelde преди 8 години
родител
ревизия
f71da5c8c5
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  1. 2 0
      platform/android/detect.py

+ 2 - 0
platform/android/detect.py

@@ -175,6 +175,8 @@ def configure(env):
     if env['android_arch'] == 'x86':
         can_vectorize = True
         target_opts = ['-target', 'i686-none-linux-android']
+        # The NDK adds this if targeting API < 21, so we can drop it when Godot targets it at least
+        env.Append(CPPFLAGS=['-mstackrealign'])
     elif env["android_arch"] == "armv6":
         can_vectorize = False
         target_opts = ['-target', 'armv6-none-linux-androideabi']