1 """ 2 tdc_config_local.py - tdc plugin-writer-specified values 3 4 Copyright (C) 2017 bjb@mojatatu.com 5 """ 6 7 import os 8 9 ENVIR = os.environ.copy() 10 11 ENV_LD_LIBRARY_PATH = os.getenv('LD_LIBRARY_PATH', '') 12 ENV_OTHER_LIB = os.getenv('OTHER_LIB', '') 13 14 15 # example adding value to NAMES, without editing tdc_config.py 16 EXTRA_NAMES = dict() 17 EXTRA_NAMES['SOME_BIN'] = os.path.join(os.getenv('OTHER_BIN', ''), 'some_bin') 18 19 20 # example adding values to ENVIR, without editing tdc_config.py 21 ENVIR['VALGRIND_LIB'] = '/usr/lib/valgrind' 22 ENVIR['VALGRIND_BIN'] = '/usr/bin/valgrind' 23 ENVIR['VGDB_BIN'] = '/usr/bin/vgdb'
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.