Lines Matching refs:build_info
287 # (ext_name, build_info)
288 # where build_info is a dictionary containing everything that
346 where the tuples are (ext_name, build_info), which are converted to
366 ext_name, build_info = ext
368 log.warn("old-style (ext_name, build_info) tuple found in "
378 if not isinstance(build_info, dict):
383 # OK, the (ext_name, build_info) dict is type-safe: convert it
385 ext = Extension(ext_name, build_info['sources'])
392 val = build_info.get(key)
397 ext.runtime_library_dirs = build_info.get('rpath')
398 if 'def_file' in build_info:
404 macros = build_info.get('macros')