diff options
author | 2016-02-26 15:59:38 +0100 | |
---|---|---|
committer | 2016-02-26 16:00:29 +0100 | |
commit | 5a567f354191eea5d4ff774ba0cf2ecc21687bfd (patch) | |
tree | 4d2436f7b1df1fbb168f5782bf2e9b75e8233ef3 /scripts/genie.lua | |
parent | 76a82398b6c82d737ea08818bf6570a8821aad69 (diff) |
Added support for x64 Androids (nw)
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 329efb08a0a..d17607bbdce 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -542,7 +542,7 @@ end if (_ACTION == nil) then return false end -- define PTR64 if we are a 64-bit target -configuration { "x64" } +configuration { "x64 or android-*64"} defines { "PTR64=1" } -- define MAME_DEBUG if we are a debugging build @@ -1043,6 +1043,11 @@ configuration { "android*" } } archivesplit_size "20" +configuration { "android-arm64" } + buildoptions { + "-Wno-asm-operand-widths", + } + configuration { "pnacl" } buildoptions { "-std=gnu89", |