aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorThanasis Antoniou2019-10-21 21:05:52 +0300
committerThanasis Antoniou2019-10-21 21:05:52 +0300
commit6694bf58231d71e5bd385b2da7bfc277463ef41c (patch)
tree95f7cdb71ca1c6b1a16c197b3b9bf16c978eca86 /configure
parent0ed4c2fb968887ef0480fae5d4d655bd434d737f (diff)
downloadscummvm-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-xconfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index 37317a7622..41625d5c6c 100755
--- a/configure
+++ b/configure
@@ -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)