diff options
author | 2016-02-25 20:43:40 +0100 | |
---|---|---|
committer | 2016-02-25 20:44:35 +0100 | |
commit | add7a65f3f20c28b4c9fc24be5751b2cdd4093b5 (patch) | |
tree | d71777c6e5298a7eb8f911c713896a20646cd26c /scripts/genie.lua | |
parent | 08d84121d4c666e6db0e7f7791f80674626babc3 (diff) |
Make Android targets compile but not link, using clang compiler in NDK, since GCC will be removed in next one (nw)
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index a48c9ca24cd..5f226315e47 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -1025,10 +1025,15 @@ configuration { "asmjs" } configuration { "android*" } buildoptions { "-Wno-undef", + "-Wno-typedef-redefinition", + "-Wno-unknown-warning-option", } buildoptions_cpp { "-x c++", "-std=c++14", + "-Wno-extern-c-compat", + "-Wno-tautological-constant-out-of-range-compare", + "-Wno-tautological-pointer-compare", } archivesplit_size "20" |