summaryrefslogtreecommitdiff
path: root/platform/android/detect.py
diff options
context:
space:
mode:
authorAndreaCatania <info@andreacatania.com>2017-11-08 12:51:35 +0100
committerAndreaCatania <info@andreacatania.com>2017-11-08 12:51:35 +0100
commite44408f6531cfd986577c28552a56692da9e1659 (patch)
treeceb1ab46ff0bbb22cf12a893b68ecb0afea18cc6 /platform/android/detect.py
parent7b26b3b67f7a8bc072e1f8deaccec8e678811d02 (diff)
Compile Android with STL enabled by default
Diffstat (limited to 'platform/android/detect.py')
-rw-r--r--platform/android/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py
index 4d5e586faf..2666034ef7 100644
--- a/platform/android/detect.py
+++ b/platform/android/detect.py
@@ -25,7 +25,7 @@ def get_opts():
('ndk_platform', 'Target platform (android-<api>, e.g. "android-18")', "android-18"),
EnumVariable('android_arch', 'Target architecture', "armv7", ('armv7', 'armv6', 'arm64v8', 'x86')),
BoolVariable('android_neon', 'Enable NEON support (armv7 only)', True),
- BoolVariable('android_stl', 'Enable Android STL support (for modules)', False),
+ BoolVariable('android_stl', 'Enable Android STL support (for modules)', True),
BoolVariable('ndk_unified_headers', 'Enable NDK unified headers', True)
]