diff options
author | Thanasis Antoniou | 2019-10-21 21:05:52 +0300 |
---|---|---|
committer | Thanasis Antoniou | 2019-10-21 21:05:52 +0300 |
commit | 6694bf58231d71e5bd385b2da7bfc277463ef41c (patch) | |
tree | 95f7cdb71ca1c6b1a16c197b3b9bf16c978eca86 /configure | |
parent | 0ed4c2fb968887ef0480fae5d4d655bd434d737f (diff) | |
download | scummvm-rg350-6694bf58231d71e5bd385b2da7bfc277463ef41c.tar.gz scummvm-rg350-6694bf58231d71e5bd385b2da7bfc277463ef41c.tar.bz2 scummvm-rg350-6694bf58231d71e5bd385b2da7bfc277463ef41c.zip |
CONFIGURE: Added some CXXFLAGS for android x86_64
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2603,11 +2603,13 @@ case $_host_os in ;; android-x86) append_var CXXFLAGS "-march=i686" - append_var CXXFLAGS "-mtune=i686" + append_var CXXFLAGS "-mtune=intel" ABI="x86" # Platform version 9 is needed as earlier versions of platform do not support this arch. ;; android-x86_64) + append_var CXXFLAGS "-march=x86-64" + append_var CXXFLAGS "-mtune=intel" ABI="x86_64" ;; ouya) |