Lines Matching refs:config
24 config.name = 'host_bcc_debugger_integration'
25 config.suffixes = ['.cpp', '.c']
26 config.target_triple = 'host-bcc'
30 build_top = getattr(config, 'build_top', None)
32 lit.load_config(config, os.path.join(os.getenv('ANDROID_BUILD_TOP',
35 build_top = config.build_top
38 config.test_exec_root = os.path.join(config.build_top, 'out', 'host',
46 config.environment['LD_LIBRARY_PATH'] = \
47 os.path.join(config.base_build_path, 'lib') + ":" + \
48 config.environment['LD_LIBRARY_PATH']
51 config.environment['DEBUGGER'] = config.gdb
52 config.environment['DEBUGGER_ARGS'] = '-q -batch -n --args ' \
53 + config.bcc_driver + ' -R '
56 lit.note('using clang: %r' % config.clang)
57 lit.note('using bcc driver: %r' % config.bcc_driver)
58 lit.note('LD_LIBRARY_PATH is %r' % config.environment['LD_LIBRARY_PATH'])
61 config.substitutions.append( ('%clangxx', ' ' + config.clang + \
64 config.substitutions.append( ('%extra-clang-opts', ' -emit-llvm -c ') )
66 config.substitutions.append( ('%clang', ' ' + config.clang + ' ') )