Lines Matching refs:conf
465 conf = self.get_config_arch(arch)
466 archname = conf.PETSC_ARCH or conf['PETSC_ARCH']
467 scalar_type = conf['PETSC_SCALAR']
468 precision = conf['PETSC_PRECISION']
469 language = conf['PETSC_LANGUAGE']
470 compiler = conf['PCC']
471 linker = conf['PCC_LINKER']
520 conf = makefile(open(petscvariables, 'rt'))
521 petsc_arch = conf.get('PETSC_ARCH', '')
866 def append_dict(conf, dct): argument
868 if key in conf:
870 if value not in conf[key]:
871 conf[key].append(value)
883 conf = {
921 append(conf['include_dirs'], value)
928 append(conf['define_macros'], macro)
930 append(conf['undef_macros'], value)
932 append(conf['libraries'], value)
934 append(conf['library_dirs'], value)
936 append(conf['runtime_library_dirs'], value)
939 append_dict(conf, flaglist(linkopts[1:]))
941 append_next_word = conf['runtime_library_dirs']
943 append_next_word = conf['extra_link_args']
947 return conf