-
Notifications
You must be signed in to change notification settings - Fork 0
/
lit.site.cfg
42 lines (36 loc) · 1.42 KB
/
lit.site.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import os
import sys
# Tell pylint that we know config and lit_config exist somewhere.
if 'PYLINT_IMPORT' in os.environ:
config = object()
lit_config = object()
ndk = os.getenv('NDK')
if ndk is None:
sys.exit('The environment variable NDK must point to an NDK toolchain.')
top = os.getenv('ANDROID_BUILD_TOP')
out_dir = os.getenv('ANDROID_PRODUCT_OUT')
if top is None or out_dir is None:
sys.exit('ANDROID_BUILD_TOP or ANDROID_PRODUCT_OUT is not set. Have you '
'run lunch?')
config.cxx_under_test = os.path.join(
top, "prebuilts/clang/linux-x86/host/3.6/bin/clang++")
config.std = "c++11"
config.libcxx_src_root = os.path.join(top, "external/libcxx")
config.libcxx_obj_root = os.path.join(top, "external/libcxx")
config.cxx_library_root = os.path.join(out_dir, 'system/lib')
config.enable_exceptions = "True"
config.enable_rtti = "True"
config.enable_shared = "False"
config.enable_32bit = "False"
config.enable_threads = "True"
config.enable_monotonic_clock = "True"
config.cxx_abi = "libcxxabi"
config.use_sanitizer = ""
config.configuration_variant = "libcxx.ndk"
config.target_triple = "armv7a-linux-androideabi"
config.sysroot = os.path.join(ndk, "platforms/android-21/arch-arm/")
config.gcc_toolchain = os.path.join(
top, "prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9")
# Let the main config do the real work.
lit_config.load_config(
config, os.path.join(top, "external/libcxx/test/lit.cfg"))